* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #00D9FF;
    --blue-light: #4DE8FF;
    --blue-dark: #0099CC;
    --dark: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #2A2A2A;
    --text-light: #E5E5E5;
    --text-gray: #999;
    --green: #00C896;
    --red: #FF4757;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.7) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 1;
}

.sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sound-toggle:hover {
    border-color: rgba(0, 217, 255, 0.6);
    background: rgba(26, 26, 26, 0.9);
    transform: scale(1.1);
}

.sound-toggle.active {
    border-color: var(--blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.sound-icon {
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    zoom: 0.82;
    transform: scale(0.82);
    transform-origin: top center;
}

.logo-container {
    margin-bottom: 50px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--blue);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 217, 255, 0.5);
    animation: fadeInUp 1s ease-out;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-light);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.price-display {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.3);
    padding: 40px 60px;
    margin: 60px auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.price-display:hover {
    border-color: rgba(0, 217, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.price-value {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--blue);
    font-family: 'Inter', monospace;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.market-cap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    margin-top: 20px;
}

.price-main {
    margin-bottom: 0;
}

.market-cap-label {
    font-size: 0.8em;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.market-cap-value {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--blue);
    font-family: 'Inter', monospace;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.social-btn {
    background: transparent;
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--text-light);
    padding: 15px 35px;
    font-size: 0.9em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--blue);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-btn:hover::before {
    left: 0;
}

.social-btn:hover {
    color: var(--dark);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

.social-btn span {
    position: relative;
    z-index: 1;
}

.contract-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.8s both;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    zoom: 0.82;
    transform: scale(0.82);
    transform-origin: bottom center;
}

.contract-label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    margin-bottom: 5px;
    text-align: center;
    width: 100%;
}

.contract-address {
    font-family: 'Inter', monospace;
    font-size: 0.9em;
    color: var(--blue);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 15px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    text-align: center;
    word-break: break-all;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.contract-address:hover {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-2px);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
    margin-top: 10px;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .logo {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 15px;
    }
    
    .tagline {
        font-size: clamp(0.8rem, 3vw, 1rem);
        letter-spacing: 0.2em;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .price-display {
        padding: 25px 30px;
        margin: 40px auto;
        max-width: 90%;
    }
    
    .price-value {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    
    .price-change {
        font-size: 1em;
    }
    
    .market-cap-container {
        padding-top: 15px;
        margin-top: 15px;
    }
    
    .market-cap-value {
        font-size: 1em;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .social-btn {
        padding: 12px 25px;
        font-size: 0.85em;
        width: 100%;
        max-width: 250px;
    }
    
    .contract-indicator {
        bottom: 20px;
        padding: 0 15px;
    }
    
    .contract-label {
        font-size: 0.7em;
    }
    
    .contract-address {
        font-size: 0.75em;
        padding: 6px 12px;
        max-width: 100%;
    }
    
    .scroll-line {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 10px;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .price-display {
        padding: 20px 20px;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .social-btn {
        padding: 10px 20px;
        font-size: 0.8em;
    }
    
    .contract-address {
        font-size: 0.7em;
        padding: 5px 10px;
    }
}
