:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #3b82f6 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-main {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pump-btn {
    background: var(--gradient-purple);
    color: white;
}

.chart-btn {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.follow-btn {
    background: var(--gradient-purple);
    color: white;
    padding: 10px 24px;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(168, 85, 247, 0.3);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: particleMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: left;
}

.hero-badge-meme {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gradient-purple);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title-meme {
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.title-glitch {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s infinite;
    text-shadow: 
        0 0 10px rgba(168, 85, 247, 0.5),
        0 0 20px rgba(236, 72, 153, 0.5),
        0 0 30px rgba(59, 130, 246, 0.5);
}

.title-glitch::before,
.title-glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.title-glitch::before {
    left: 2px;
    text-shadow: -2px 0 rgba(236, 72, 153, 0.8);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.title-glitch::after {
    left: -2px;
    text-shadow: 2px 0 rgba(59, 130, 246, 0.8);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(54px, 9999px, 66px, 0); }
    40% { clip: rect(28px, 9999px, 100px, 0); }
    60% { clip: rect(42px, 9999px, 78px, 0); }
    80% { clip: rect(15px, 9999px, 87px, 0); }
    100% { clip: rect(53px, 9999px, 68px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(41px, 9999px, 74px, 0); }
    40% { clip: rect(78px, 9999px, 85px, 0); }
    60% { clip: rect(25px, 9999px, 92px, 0); }
    80% { clip: rect(58px, 9999px, 69px, 0); }
    100% { clip: rect(33px, 9999px, 88px, 0); }
}

.hero-subtitle-meme {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.flip-text {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: flipColor 3s ease-in-out infinite;
    display: inline-block;
}

.stock-text {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes flipColor {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(90deg); }
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-description-meme {
    font-size: clamp(18px, 2vw, 24px);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.highlight-meme {
    color: var(--accent-purple);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.price-meme {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.2em;
    animation: priceFlash 2s ease-in-out infinite;
}

@keyframes priceFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-btn-meme {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-meme {
    background: var(--gradient-purple);
    color: white;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.4);
}

.secondary-meme {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(168, 85, 247, 0.5);
    backdrop-filter: blur(10px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-btn-meme:hover .btn-shine {
    left: 100%;
}

.cta-btn-meme:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.6);
}

.hero-video-wrapper {
    position: relative;
}

.hero-video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 0 60px rgba(168, 85, 247, 0.4),
        0 0 120px rgba(236, 72, 153, 0.2),
        inset 0 0 40px rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    animation: videoGlow 3s ease-in-out infinite;
}

@keyframes videoGlow {
    0%, 100% {
        box-shadow: 
            0 0 60px rgba(168, 85, 247, 0.4),
            0 0 120px rgba(236, 72, 153, 0.2),
            inset 0 0 40px rgba(59, 130, 246, 0.1);
    }
    50% {
        box-shadow: 
            0 0 80px rgba(168, 85, 247, 0.6),
            0 0 160px rgba(236, 72, 153, 0.4),
            inset 0 0 60px rgba(59, 130, 246, 0.2);
    }
}

.video-border-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.video-corner-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 3;
    border: 3px solid;
    border-radius: 8px;
}

.video-corner-decoration.top-left {
    top: 10px;
    left: 10px;
    border-color: var(--accent-purple);
    border-right: none;
    border-bottom: none;
    animation: cornerPulse 2s ease-in-out infinite;
}

.video-corner-decoration.top-right {
    top: 10px;
    right: 10px;
    border-color: var(--accent-pink);
    border-left: none;
    border-bottom: none;
    animation: cornerPulse 2s ease-in-out infinite 0.5s;
}

.video-corner-decoration.bottom-left {
    bottom: 10px;
    left: 10px;
    border-color: var(--accent-blue);
    border-right: none;
    border-top: none;
    animation: cornerPulse 2s ease-in-out infinite 1s;
}

.video-corner-decoration.bottom-right {
    bottom: 10px;
    right: 10px;
    border-color: var(--accent-purple);
    border-left: none;
    border-top: none;
    animation: cornerPulse 2s ease-in-out infinite 1.5s;
}

@keyframes cornerPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 21px;
}

.video-unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    border-radius: 21px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.video-unmute-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
}

.video-unmute-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.unmute-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
    animation: unmutePulse 2s ease-in-out infinite;
}

@keyframes unmutePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.unmute-text {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.video-play-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(236, 72, 153, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    z-index: 4;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.5);
    pointer-events: none;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

@media (max-width: 968px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title-meme {
        font-size: clamp(48px, 12vw, 80px);
    }
}

.hero-background-image {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: url('/images/download.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(60px) brightness(0.25) saturate(0.4) contrast(1.2);
    transform: scale(1.15);
    z-index: 0;
    will-change: transform;
    animation: subtleMove 20s ease-in-out infinite alternate;
}

.hero-background-image-secondary {
    position: absolute;
    top: -15%;
    right: -15%;
    width: 60%;
    height: 120%;
    background-image: url('/images/images.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(80px) brightness(0.15) saturate(0.3) contrast(1.1);
    transform: scale(1.1) rotate(5deg);
    z-index: 0;
    mix-blend-mode: overlay;
    opacity: 0.6;
    will-change: transform;
    animation: subtleMoveSecondary 25s ease-in-out infinite alternate;
}

@keyframes subtleMove {
    0% {
        transform: scale(1.15) translate(0, 0);
    }
    100% {
        transform: scale(1.2) translate(-2%, -2%);
    }
}

@keyframes subtleMoveSecondary {
    0% {
        transform: scale(1.1) rotate(5deg) translate(0, 0);
    }
    100% {
        transform: scale(1.15) rotate(-2deg) translate(3%, 3%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.7);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 70%),
                radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-purple);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 900;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-tagline .highlight {
    color: var(--text-primary);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--gradient-purple);
    color: white;
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.5);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.video-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.video-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--accent-purple);
    margin-bottom: 24px;
    font-weight: 600;
}

.video-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.3), 0 0 0 1px rgba(168, 85, 247, 0.3);
}

.video-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.video-container:hover .video-glow {
    opacity: 1;
}

.spx-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 24px;
}

.spx-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.7);
}

.spx-video::-webkit-media-controls-play-button {
    background: var(--accent-purple);
    border-radius: 50%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-play-indicator {
    width: 80px;
    height: 80px;
    background: rgba(168, 85, 247, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.video-footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.video-link-btn:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    color: var(--accent-purple);
}

.video-link-btn svg {
    width: 20px;
    height: 20px;
}

/* Contract Section */
.contract-section {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.contract-box {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.copy-contract-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    max-width: 100%;
}

.copy-contract-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
}

.contract-text {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.copy-text {
    color: var(--accent-purple);
    font-weight: 600;
    white-space: nowrap;
}

.chart-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.chart-link-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.chart-link-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Chart Section */
.chart-section {
    padding: 60px 0;
}

.chart-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.chart-iframe {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    border: none;
}

.chart-footer {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.external-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: var(--accent-purple);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.gallery-item:active {
    transform: scale(0.98);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Social Section */
.social-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.15);
}

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.social-card:hover .social-icon {
    color: var(--accent-purple);
    background: rgba(168, 85, 247, 0.1);
    transform: scale(1.05);
}

.social-content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.social-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.social-card:hover .social-title {
    color: var(--text-primary);
}

.social-desc {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
    transition: color 0.3s ease;
}

.social-card:hover .social-desc {
    color: var(--text-primary);
}

.social-arrow {
    color: var(--text-secondary);
    opacity: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transform: translateX(-4px);
}

.social-card:hover .social-arrow {
    opacity: 1;
    color: var(--accent-purple);
    transform: translateX(0);
}

/* Footer */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-purple);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-purple);
    transform: rotate(90deg);
}

.modal-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.modal-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(95vh - 120px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
}

.modal-footer {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
}

.modal-download {
    background: var(--gradient-purple);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.modal-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.5);
}

.modal-download svg {
    width: 20px;
    height: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.toast.show {
    display: flex;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

.toast-content svg {
    color: #10b981;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .top-nav .container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-left {
        width: 100%;
        justify-content: center;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-background-image {
        filter: blur(80px) brightness(0.2) saturate(0.3);
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .chart-iframe {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .chart-iframe {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
