/* ===== CSS Variables ===== */
:root {
    --silver-100: #f8f9fa;
    --silver-200: #e9ecef;
    --silver-300: #dee2e6;
    --silver-400: #ced4da;
    --silver-500: #adb5bd;
    --silver-600: #868e96;
    --silver-700: #495057;
    --silver-800: #343a40;
    --silver-900: #212529;

    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;

    --accent-silver: #c0c0c0;
    --accent-platinum: #e5e4e2;
    --accent-gold: #ffd700;

    --gradient-silver: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #c0c0c0 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #e5e4e2 100%);
    --gradient-shine: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cinzel', serif;

    --shadow-glow: 0 0 60px rgba(192, 192, 192, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--silver-200);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Animated Background ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.silver-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(192, 192, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(229, 228, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(102, 126, 234, 0.02) 0%, transparent 40%);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--silver-100);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--silver-400);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--silver-100);
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(192, 192, 192, 0.1));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    color: var(--silver-100);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.2));
    border-color: rgba(192, 192, 192, 0.5);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--silver-300);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.title-gradient {
    display: block;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.title-ticker {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--silver-500);
    font-weight: 400;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--silver-400);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--silver-100);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--silver-500);
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #c0c0c0 0%, #a8a8a8 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--silver-200);
    border: 2px solid rgba(192, 192, 192, 0.3);
}

.btn-secondary:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.5);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(192, 192, 192, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
}

.contract-label {
    color: var(--silver-500);
}

.contract-code {
    color: var(--silver-300);
    font-family: 'Fira Code', monospace;
}

.copy-btn {
    background: transparent;
    border: none;
    color: var(--silver-500);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition-fast);
}

.copy-btn:hover {
    color: var(--silver-200);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-coin {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite, rotate 20s linear infinite;
    filter: drop-shadow(0 0 40px rgba(192, 192, 192, 0.4));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg) translateY(0);
    }

    25% {
        transform: rotate(90deg) translateY(-10px);
    }

    50% {
        transform: rotate(180deg) translateY(0);
    }

    75% {
        transform: rotate(270deg) translateY(-10px);
    }

    to {
        transform: rotate(360deg) translateY(0);
    }
}

.coin-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.2) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--silver-400);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--silver-100);
    line-height: 1.2;
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--silver-500);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 26, 0.5) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.about-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(192, 192, 192, 0.2);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 1.25rem;
    color: var(--silver-100);
    margin-bottom: 12px;
}

.about-card p {
    color: var(--silver-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Tokenomics Section ===== */
.tokenomics {
    background: var(--bg-dark);
}

.tokenomics-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.token-visual {
    position: relative;
    width: 280px;
    height: 280px;
}

.token-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            #c0c0c0 0%,
            #e5e4e2 25%,
            #a8a8a8 50%,
            #c0c0c0 75%,
            #c0c0c0 100%);
    padding: 20px;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.token-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.token-percent {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--silver-100);
}

.token-label {
    font-size: 1rem;
    color: var(--silver-500);
}

.token-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.detail-item {
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--silver-500);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver-100);
}

/* ===== Roadmap Section ===== */
.roadmap {
    background: linear-gradient(180deg, rgba(18, 18, 26, 0.5) 0%, var(--bg-dark) 100%);
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.timeline-item:hover {
    border-color: rgba(192, 192, 192, 0.2);
    transform: translateX(8px);
}

.timeline-item.active {
    border-color: rgba(192, 192, 192, 0.3);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), transparent);
}

.timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

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

.timeline-content {
    flex: 1;
}

.timeline-phase {
    font-size: 0.8rem;
    color: var(--silver-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--silver-100);
    margin: 8px 0 12px;
}

.timeline-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timeline-content li {
    font-size: 0.95rem;
    color: var(--silver-400);
}

/* ===== Community Section ===== */
.community {
    background: var(--bg-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: all var(--transition-medium);
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(192, 192, 192, 0.3);
}

.social-card.twitter:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.1), transparent);
    border-color: rgba(29, 161, 242, 0.3);
}

.social-card.telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), transparent);
    border-color: rgba(0, 136, 204, 0.3);
}

.social-card.pumpfun:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), transparent);
    border-color: rgba(255, 193, 7, 0.3);
}

.social-card.axiom:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), transparent);
    border-color: rgba(168, 85, 247, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--silver-300);
    font-size: 2rem;
}

.social-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver-100);
    margin-bottom: 4px;
}

.social-handle {
    font-size: 0.9rem;
    color: var(--silver-500);
}

/* ===== CTA Section ===== */
.cta {
    padding: 80px 0;
}

.cta .container {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--silver-100);
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--silver-400);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-crown {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 6rem;
    opacity: 0.1;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--silver-100);
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 0.85rem;
    color: var(--silver-600);
    line-height: 1.6;
}

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

.footer-links a {
    color: var(--silver-400);
    text-decoration: none;
}

/* ===== Disclaimer Banner ===== */
.disclaimer-banner {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 24px;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.1));
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    text-align: center;
    font-size: 0.85rem;
    color: #fbbf24;
    backdrop-filter: blur(10px);
}

.disclaimer-banner a {
    color: #fcd34d;
    text-decoration: underline;
    margin-left: 8px;
}

.disclaimer-icon {
    margin-right: 8px;
}

/* ===== Hero Warning Box ===== */
.hero-warning {
    padding: 16px 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #fcd34d;
    line-height: 1.6;
}

/* ===== Silver Price Section ===== */
.silver-price-section {
    background: linear-gradient(180deg, rgba(18, 18, 26, 0.8) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
}

.price-dashboard {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.price-card {
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.price-card.main-price {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(192, 192, 192, 0.05));
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver-200);
}

.price-source {
    font-size: 0.75rem;
    color: var(--silver-600);
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.price-value .currency {
    font-size: 2rem;
    color: var(--silver-400);
    font-weight: 600;
}

.price-value .amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--silver-100);
    line-height: 1;
}

.price-value .unit {
    font-size: 1.25rem;
    color: var(--silver-500);
}

.price-change {
    margin-bottom: 16px;
}

.price-updated {
    font-size: 0.8rem;
    color: var(--silver-600);
}

.price-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 800px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
}

.info-icon {
    font-size: 1.5rem;
}

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

.info-label {
    font-size: 0.8rem;
    color: var(--silver-500);
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--silver-200);
}

.price-disclaimer {
    max-width: 700px;
    margin: 0 auto;
    padding: 16px 20px;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #fbbf24;
    text-align: center;
}

/* ===== Disclaimer Section ===== */
.disclaimer-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.disclaimer-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(239, 68, 68, 0.05));
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.disclaimer-header {
    padding: 20px 32px;
    background: rgba(251, 191, 36, 0.1);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.disclaimer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fbbf24;
}

.disclaimer-content {
    padding: 32px;
}

.disclaimer-content h3 {
    font-size: 1.1rem;
    color: var(--silver-100);
    margin-bottom: 16px;
    margin-top: 24px;
}

.disclaimer-content h3:first-child {
    margin-top: 0;
}

.disclaimer-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disclaimer-content li {
    font-size: 0.95rem;
    color: var(--silver-300);
    padding-left: 8px;
}

.risk-warning {
    margin-top: 32px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
}

.risk-warning strong {
    display: block;
    font-size: 1rem;
    color: #f87171;
    margin-bottom: 8px;
}

.risk-warning p {
    font-size: 0.9rem;
    color: var(--silver-400);
    line-height: 1.6;
}

/* ===== CTA Disclaimer ===== */
.cta-disclaimer {
    margin-top: 16px;
    font-size: 0.85rem !important;
    color: #fbbf24 !important;
}

/* ===== Hero padding - banner removed ===== */
.hero {
    padding-top: 120px;
}

.footer-links a:hover {
    color: var(--silver-100);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(192, 192, 192, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--silver-600);
}

/* ===== Responsive ===== */
@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-buttons {
        justify-content: center;
    }

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

    .hero-visual {
        margin-top: 40px;
    }

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

    .hero-coin {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tokenomics-content {
        gap: 40px;
    }

    .token-details {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-marker {
        margin: 0 auto;
    }

    .cta-crown {
        display: none;
    }

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

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .about-card,
    .social-card {
        padding: 24px;
    }
}