/* ========================================
   ZHYRINOVSKI COIN - LANDING PAGE STYLES
   Cyberpunk Meme Aesthetic
   ======================================== */

/* CSS Variables - Gold Theme inspired by the Zhyrinovski Coin */
:root {
    --bg-dark: #1a1209;
    --bg-darker: #0f0a05;
    --bg-card: #231a0d;
    --bg-card-hover: #2d2211;
    --primary: #d4af37;
    --primary-light: #f4d03f;
    --primary-dark: #b8860b;
    --secondary: #8b6914;
    --accent: #ffd700;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --bronze: #cd7f32;
    --cream: #f5e6c8;
    --text: #f5e6c8;
    --text-muted: #c9a962;
    --text-dim: #8b7340;
    --gradient-primary: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8860b 100%);
    --gradient-accent: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    --gradient-gold: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8860b 100%);
    --gradient-dark-gold: linear-gradient(145deg, #2d2211 0%, #1a1209 100%);
    --glow-primary: 0 0 30px rgba(212, 175, 55, 0.5);
    --glow-secondary: 0 0 30px rgba(184, 134, 11, 0.5);
    --glow-gold: 0 0 40px rgba(212, 175, 55, 0.6);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background - Gold Theme */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(139, 105, 20, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.coin {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.coin-1 { top: 10%; left: 5%; animation-delay: 0s; }
.coin-2 { top: 30%; left: 85%; animation-delay: -3s; }
.coin-3 { top: 60%; left: 10%; animation-delay: -6s; }
.coin-4 { top: 80%; left: 75%; animation-delay: -9s; }
.coin-5 { top: 45%; left: 90%; animation-delay: -12s; }
.coin-6 { top: 20%; left: 50%; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(10deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(30px) rotate(-10deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 10, 5, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: navCoinFlip 4s ease-in-out infinite;
    border: none;
}

@keyframes navCoinFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(360deg); }
}

.logo-icon {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.btn-nav {
    background: var(--gradient-gold);
    color: var(--bg-darker) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.875rem !important;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.btn-nav:hover {
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.title-accent {
    display: block;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.highlight {
    color: var(--gold-light);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--text-dim), transparent);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-darker);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    box-shadow: var(--glow-gold);
    transform: translateY(-3px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--gold-dark);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: var(--glow-gold);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.ca-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ca-value {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--gold-light);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background: rgba(212, 175, 55, 0.2);
    border: none;
    color: var(--gold);
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--gold);
    color: var(--bg-darker);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.5s backwards;
}

.coin-display {
    position: relative;
    width: 400px;
    height: 400px;
}

.coin-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(212, 175, 55, 0.15);
    animation: spin 20s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(212, 175, 55, 0.25);
    animation: spin 15s linear infinite reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(212, 175, 55, 0.35);
    animation: spin 10s linear infinite;
}

.ring-1::before, .ring-2::before, .ring-3::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--glow-gold);
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.main-coin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        var(--glow-primary),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
    animation: coinFloat 4s ease-in-out infinite;
}

.main-coin.logo-coin {
    width: 280px;
    height: 280px;
    background: transparent;
    box-shadow: none;
    animation: coinFlip3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.coin-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.6),
        0 0 100px rgba(212, 175, 55, 0.3);
    border: none;
}

/* 3D Flip Animation */
@keyframes coinFlip3D {
    0%, 100% { 
        transform: translate(-50%, -50%) translateY(0) rotateY(0deg);
    }
    25% { 
        transform: translate(-50%, -50%) translateY(-15px) rotateY(180deg);
    }
    50% { 
        transform: translate(-50%, -50%) translateY(0) rotateY(360deg);
    }
    75% { 
        transform: translate(-50%, -50%) translateY(-15px) rotateY(540deg);
    }
}

.coin-symbol {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: var(--bg-dark);
}

@keyframes coinFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

/* Sections Common */
.section {
    padding: 6rem 5rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--cream);
}

.accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Countdown Section */
.countdown-section {
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 134, 11, 0.2) 100%);
    border: 2px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 2rem;
    box-shadow: var(--glow-gold);
    animation: pulseGold 3s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.7); }
}

.birthday-icon {
    font-size: 1.5rem;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.countdown-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.countdown-item {
    background: linear-gradient(145deg, #1a1a25 0%, #12121a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-5px);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.countdown-message {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 2rem;
}

.highlight-gold {
    color: var(--gold-light);
    font-weight: 700;
}

.countdown-coin-display {
    margin-top: 2rem;
}

.countdown-coin-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.5),
        0 0 100px rgba(212, 175, 55, 0.3);
    animation: coinFlipSlow 8s ease-in-out infinite, coinGlow 3s ease-in-out infinite;
    border: none;
}

@keyframes coinFlipSlow {
    0%, 100% { 
        transform: rotateY(0deg) scale(1);
    }
    25% { 
        transform: rotateY(180deg) scale(1.05);
    }
    50% { 
        transform: rotateY(360deg) scale(1);
    }
    75% { 
        transform: rotateY(540deg) scale(1.05);
    }
}

@keyframes coinGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(212, 175, 55, 0.5), 0 0 100px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 80px rgba(212, 175, 55, 0.7), 0 0 120px rgba(212, 175, 55, 0.5); }
}

/* Responsive countdown */
@media (max-width: 768px) {
    .countdown-section {
        padding: 3rem 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        padding: 1rem 1.25rem;
        min-width: 70px;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    
    .countdown-coin-img {
        width: 150px;
        height: 150px;
    }
}

/* Biography Section */
.biography-section {
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.02), transparent);
}

.biography-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bio-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bio-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.bio-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    min-width: 80px;
    text-align: right;
}

.bio-text {
    flex: 1;
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.bio-text h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.bio-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.bio-text p strong {
    color: var(--gold-light);
}

.bio-item.death-item .bio-year {
    color: #888;
}

.bio-item.death-item .bio-text {
    border-left-color: rgba(136, 136, 136, 0.5);
}

.bio-item.death-item h3 {
    color: #999;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-family: var(--font-body);
}

.bio-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bio-stat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-5px);
}

.bio-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .biography-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bio-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .bio-stat-card {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .bio-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bio-year {
        text-align: left;
    }
    
    .bio-text {
        padding-left: 1rem;
    }
}

/* Quotes Section */
.quotes-section {
    text-align: center;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.quote-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-note {
    font-size: 0.875rem;
    color: var(--text-dim);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--glow-gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Tokenomics Section */
.tokenomics-section {
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.03), transparent);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.token-chart {
    display: flex;
    justify-content: center;
}

.chart-ring {
    position: relative;
    width: 280px;
    height: 280px;
}

.chart-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 30;
}

.chart-segment {
    fill: none;
    stroke-width: 30;
    stroke-linecap: round;
}

.segment-1 {
    stroke: var(--gold);
    stroke-dasharray: 426;
    stroke-dashoffset: 64;
    animation: chartDraw 1.5s ease forwards;
}

.segment-2 {
    stroke: var(--gold-dark);
    stroke-dasharray: 426;
    stroke-dashoffset: 383;
    animation: chartDraw2 1.5s ease 0.3s forwards;
}

@keyframes chartDraw {
    from { stroke-dashoffset: 502; }
    to { stroke-dashoffset: 64; }
}

@keyframes chartDraw2 {
    from { stroke-dashoffset: 426; }
    to { stroke-dashoffset: 383; }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-logo-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    box-shadow: var(--glow-gold);
    animation: coinFlipSlow 10s ease-in-out infinite;
    border: none;
}

.chart-symbol {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
}

.chart-text {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.token-color {
    width: 4px;
    height: 40px;
    background: var(--color);
    border-radius: 2px;
}

.token-info {
    display: flex;
    flex-direction: column;
}

.token-percent {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.token-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.token-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.feature-check {
    color: #00ff88;
    font-weight: 700;
}

/* Roadmap Section */
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-dark));
}

.roadmap-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

.roadmap-item:last-child {
    padding-bottom: 0;
}

.roadmap-marker {
    position: absolute;
    left: -0.75rem;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border: 2px solid var(--text-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.roadmap-item.active .roadmap-marker {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.marker-dot {
    width: 8px;
    height: 8px;
    background: var(--text-dim);
    border-radius: 50%;
}

.roadmap-item.active .marker-dot {
    background: var(--gold);
}

.roadmap-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(10px);
}

.phase {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.roadmap-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.roadmap-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.roadmap-content li {
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-left: 1rem;
    position: relative;
}

.roadmap-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Buy Section */
.buy-section {
    background: linear-gradient(to bottom, transparent, rgba(184, 134, 11, 0.03), transparent);
}

.buy-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.buy-step {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    max-width: 220px;
    text-align: center;
    transition: all 0.3s ease;
}

.buy-step:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-dim);
    align-self: center;
    padding-top: 2rem;
}

.buy-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Community Section */
.community-section {
    text-align: center;
}

.community-text {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    min-width: 180px;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
    color: white;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
}

.social-icon.discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289da 100%);
    color: white;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-card:hover .telegram {
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.4);
}

.social-card:hover .twitter {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.social-card:hover .discord {
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.social-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.social-members {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    position: relative;
    padding: 4rem 5rem 2rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: navCoinFlip 5s ease-in-out infinite;
    border: none;
}

.footer-brand .logo-icon {
    font-size: 2.5rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 0.875rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 7rem 3rem 4rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .contract-address {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 3rem;
    }

    .coin-display {
        width: 300px;
        height: 300px;
    }

    .main-coin {
        width: 140px;
        height: 140px;
    }

    .coin-symbol {
        font-size: 4.5rem;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

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

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

    .contract-address {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .buy-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .roadmap-content ul {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }
}

/* Scroll Animations */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}
