/* ============================================
   $VODKA - Premium Meme Token
   Elegant Ice Cold Design
   ============================================ */

:root {
    /* Premium Color Palette */
    --bg-dark: #050a14;
    --bg-card: #0a1628;
    --bg-card-hover: #0f1f3a;
    
    --frost-white: #f0f4f8;
    --frost-light: #c8d4e3;
    --frost-medium: #8ba3c4;
    
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #a68a2a;
    
    --ice-blue: #4a9eff;
    --ice-cyan: #00d4ff;
    
    --silver: #c0c0c0;
    --platinum: #e5e4e2;
    
    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 120px 5%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--frost-white);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
}

/* ============================================
   Ambient Effects
   ============================================ */

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

.frost-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 212, 227, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(74, 158, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 212, 227, 0.1);
}

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

.nav-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    animation: nav-coin-spin 5s ease-in-out infinite;
}

@keyframes nav-coin-spin {
    0%, 20% {
        transform: rotateY(0deg);
    }
    40%, 60% {
        transform: rotateY(360deg);
    }
    80%, 100% {
        transform: rotateY(720deg);
    }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links a:hover {
    color: var(--gold-primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 12px 28px !important;
    border-radius: 6px;
    color: var(--bg-dark) !important;
    font-weight: 600 !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.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(--frost-white);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 80px;
    position: relative;
    gap: 60px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--ice-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.frost-icon {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--frost-white), var(--frost-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    line-height: 1.1;
}

.title-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-primary);
    letter-spacing: 4px;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--frost-medium);
    margin-bottom: 40px;
    line-height: 1.8;
}

.highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 30px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(200, 212, 227, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat {
    text-align: center;
}

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

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

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--frost-medium), transparent);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-frost {
    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 ease;
}

.btn-primary:hover .btn-frost {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--frost-white);
    border: 1px solid rgba(200, 212, 227, 0.3);
}

.btn-secondary:hover {
    background: rgba(200, 212, 227, 0.1);
    border-color: var(--frost-white);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid rgba(200, 212, 227, 0.15);
    border-radius: 10px;
}

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

.ca-value {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--ice-cyan);
    background: none;
}

.copy-btn {
    background: rgba(200, 212, 227, 0.1);
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--frost-light);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bottle-display {
    position: relative;
    width: 400px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.bottle-ring {
    position: absolute;
    border: 1px solid rgba(200, 212, 227, 0.1);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.ring-1 {
    width: 350px;
    height: 350px;
}

.ring-2 {
    width: 420px;
    height: 420px;
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes ring-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-bottle {
    width: 320px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.4));
    animation: coin-spin 6s ease-in-out infinite, coin-float 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes coin-spin {
    0%, 15% {
        transform: rotateY(0deg);
    }
    35%, 65% {
        transform: rotateY(360deg);
    }
    85%, 100% {
        transform: rotateY(720deg);
    }
}

@keyframes coin-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.bottle-display {
    perspective: 1000px;
}

/* ============================================
   BingX Countdown Section
   ============================================ */

.countdown-section {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), transparent, rgba(212, 175, 55, 0.05));
    padding: 80px 5%;
}

.countdown-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid var(--gold-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--font-display);
}

.exchange-icon {
    font-size: 1.3rem;
}

.countdown-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--frost-white);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.bingx-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.countdown-subtitle {
    font-size: 1.2rem;
    color: var(--frost-medium);
    margin-bottom: 50px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(15, 31, 58, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 25px 35px;
    min-width: 120px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--frost-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold-primary);
    font-weight: 700;
    padding-bottom: 30px;
}

.countdown-info {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.countdown-info p {
    font-size: 1.2rem;
    color: var(--frost-light);
    margin: 0;
}

@media (max-width: 768px) {
    .countdown-item {
        padding: 20px 25px;
        min-width: 100px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px 20px;
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-separator {
        display: none;
    }
}

/* ============================================
   Sections Common
   ============================================ */

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--ice-blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

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

.accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   About Section
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.8), rgba(15, 31, 58, 0.6));
    border: 1px solid rgba(200, 212, 227, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

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

.manifesto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--frost-light);
    line-height: 2;
    padding: 40px;
    border-left: 3px solid var(--gold-primary);
    background: rgba(10, 22, 40, 0.5);
    border-radius: 0 16px 16px 0;
}

/* ============================================
   Tokenomics Section
   ============================================ */

.tokenomics-section {
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.5), transparent);
}

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

.vodka-meter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.meter-fill {
    position: relative;
    height: 80px;
    background: linear-gradient(90deg, rgba(74, 158, 255, 0.3), rgba(0, 212, 255, 0.5));
    border-radius: 12px;
    width: var(--fill);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(74, 158, 255, 0.5);
    animation: fill-in 1.5s ease-out;
}

.meter-fill.dev {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(244, 208, 63, 0.5));
    border-color: rgba(212, 175, 55, 0.5);
}

@keyframes fill-in {
    from {
        width: 0;
    }
}

.meter-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--frost-white);
    letter-spacing: 2px;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.token-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(10, 22, 40, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(200, 212, 227, 0.1);
}

.token-color {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    flex-shrink: 0;
}

.token-color.community {
    background: linear-gradient(135deg, var(--ice-blue), var(--ice-cyan));
}

.token-color.dev {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
}

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

.token-percent {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--frost-white);
}

.token-label {
    font-size: 1.1rem;
    color: var(--frost-light);
}

.token-desc {
    font-size: 0.9rem;
    color: var(--frost-medium);
}

.token-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--frost-light);
}

.feature-check {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* ============================================
   Roadmap Section
   ============================================ */

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-primary), var(--ice-blue), transparent);
}

.roadmap-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.roadmap-marker {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid rgba(200, 212, 227, 0.2);
    border-radius: 50%;
    z-index: 1;
}

.roadmap-item.active .roadmap-marker {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.marker-icon {
    font-size: 2.5rem;
}

.roadmap-content {
    flex: 1;
    padding: 30px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(200, 212, 227, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.phase {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--ice-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.roadmap-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    padding: 8px 0;
    color: var(--frost-medium);
    position: relative;
    padding-left: 20px;
}

.roadmap-content li::before {
    content: '❄';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* ============================================
   Buy Section
   ============================================ */

.buy-section {
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.5), transparent);
}

.buy-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.buy-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(200, 212, 227, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.buy-step:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--frost-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--frost-medium);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold-primary);
    align-self: center;
    padding-top: 30px;
}

.buy-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   Community Section
   ============================================ */

.community-text {
    text-align: center;
    font-size: 1.3rem;
    color: var(--frost-medium);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 50px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(200, 212, 227, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.social-icon.dexscreener {
    background: linear-gradient(135deg, var(--ice-blue), var(--ice-cyan));
    color: white;
}

.social-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--frost-white);
    letter-spacing: 1px;
}

.social-members {
    font-size: 0.9rem;
    color: var(--frost-medium);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    position: relative;
    padding: 80px 5% 40px;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.8));
    border-top: 1px solid rgba(200, 212, 227, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-disclaimer {
    font-size: 0.9rem;
    color: var(--frost-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(200, 212, 227, 0.5);
}

.footer-frost {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(74, 158, 255, 0.05), transparent);
    pointer-events: none;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .contract-address {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bottle-display {
        width: 300px;
        height: 400px;
    }
    
    .main-bottle {
        width: 250px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        display: none;
    }
    
    .roadmap-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .token-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 80px 5%;
    }
    
    .title-line {
        letter-spacing: 4px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .manifesto blockquote {
        font-size: 1.2rem;
        padding: 25px;
    }
    
    .buy-step {
        min-width: 100%;
    }
    
    .social-card {
        padding: 30px;
    }
}
