.text-overlay {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.text-overlay h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 140px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 80px;
    line-height: 1;
    background: linear-gradient(
        45deg,
        #00ff9d 0%,
        #00ffee 25%,
        #00f0ff 50%,
        #00ccff 75%,
        #00eeff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 20px rgba(0, 255, 200, 0.5),
        0 0 40px rgba(0, 255, 200, 0.3),
        0 0 60px rgba(0, 255, 200, 0.2),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: 
        titleGradient 8s linear infinite,
        titleSway 6s ease-in-out infinite,
        titleGlitch 4s linear infinite;
}

.text-overlay p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 120px;
    margin-top: 40px;
    background: linear-gradient(
        45deg,
        #00ff9d 0%,
        #00ffee 25%,
        #00f0ff 50%,
        #00ccff 75%,
        #00eeff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 15px rgba(0, 255, 200, 0.4),
        0 0 30px rgba(0, 255, 200, 0.2);
    animation: 
        descriptionGradient 8s linear infinite,
        descriptionBreath 4s ease-in-out infinite;
    opacity: 0.9;
    transform-origin: center center;
}

@keyframes titleGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes titleSway {
    0%, 100% {
        transform: rotate(-1deg);
    }
    50% {
        transform: rotate(1deg);
    }
}

@keyframes descriptionBreath {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
        letter-spacing: normal;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
        letter-spacing: 0.02em;
    }
}

@keyframes descriptionGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes titleGlitch {
    0%, 91%, 94%, 100% {
        transform: none;
        opacity: 1;
    }
    92% {
        transform: skew(2deg, 1deg);
        opacity: 0.95;
    }
    93% {
        transform: skew(-1deg, -2deg);
        opacity: 0.9;
    }
}

/* 添加伪元素制造故障效果 */
.text-overlay h1::before,
.text-overlay h1::after {
    content: 'GYROSCOPE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.text-overlay h1::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    animation: glitchText 2s infinite linear alternate-reverse;
}

.text-overlay h1::after {
    left: -2px;
    text-shadow: 2px 0 #00ffff;
    animation: glitchText 3s infinite linear alternate-reverse;
}

@keyframes glitchText {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-1px, 1px);
    }
    40% {
        transform: translate(-1px, -1px);
    }
    60% {
        transform: translate(1px, 1px);
    }
    80% {
        transform: translate(1px, -1px);
    }
    100% {
        transform: translate(0);
    }
}

@media (max-width: 768px) {
    .text-overlay {
        top: 30%;
    }
    
    .text-overlay h1 {
        font-size: 70px;
        letter-spacing: 0.1em;
        margin-bottom: 50px;
    }
    
    .text-overlay p {
        font-size: 20px;
        padding: 0 20px;
        margin-bottom: 80px;
        margin-top: 30px;
    }
    
    .social-links {
        margin-top: 140px;
    }
    
    @keyframes descriptionBreath {
        0%, 100% {
            transform: scale(1);
            opacity: 0.9;
            letter-spacing: normal;
        }
        50% {
            transform: scale(1.02);  /* 移动端缩小动画幅度 */
            opacity: 1;
            letter-spacing: 0.01em;
        }
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 200px;
    position: relative;
    z-index: 10;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.social-link img.pump-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    filter: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.2),
        0 0 20px rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .social-links {
        margin-top: 140px;
        flex-wrap: wrap;
        padding: 0 20px;
    }
    
    .social-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}

.supply-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-supply {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.supply-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, 
        #00ffff 0%,
        #88ffff 25%,
        #ffffff 50%,
        #88ffff 75%,
        #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 0 10px rgba(0, 255, 255, 0.2);
    animation: colorShift 8s linear infinite;
}

.supply-title, .amount {
    background: linear-gradient(135deg, 
        #00ffff 0%,
        #88ffff 25%,
        #ffffff 50%,
        #88ffff 75%,
        #00ffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 0 10px rgba(0, 255, 255, 0.2);
    animation: colorShift 8s linear infinite;
}

@keyframes colorShift {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.supply-distribution {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.distribution-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.percentage {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.category {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.amount {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .supply-distribution {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .distribution-item {
        flex: 1 1 45%;
        min-width: 150px;
    }
    
    .supply-title {
        font-size: 20px;
    }
    
    .percentage {
        font-size: 20px;
    }
    
    .category {
        font-size: 14px;
    }
    
    .amount {
        font-size: 12px;
    }
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

.address {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    background: linear-gradient(135deg, 
        #00ffff 0%,
        #88ffff 25%,
        #ffffff 50%,
        #88ffff 75%,
        #00ffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: colorShift 8s linear infinite;
}

.copy-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.copy-button:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .supply-title {
        font-size: 20px;
    }
    
    .contract-address {
        flex-direction: column;
        padding: 12px 20px;
        text-align: center;
    }
} 