/* ===== TOKEN PAGE STYLES ===== */

.token-page {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero */
.token-hero {
    padding: 24px 16px;
    text-align: center;
}

.hero-panel {
    padding: 40px 32px;
}

.hero-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    animation: hero-float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 16px var(--solana)) drop-shadow(0 0 32px var(--solana));
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: solana-spin 4s linear infinite;
}

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

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

.hero-panel h1 {
    font-size: clamp(24px, 6vw, 48px);
    color: var(--mc-green);
    text-shadow: 4px 4px 0 #003300, 0 0 20px rgba(85, 255, 85, 0.3);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: clamp(8px, 2vw, 14px);
    color: var(--solana);
    text-shadow: 2px 2px 0 #1a0033;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 8px;
    color: var(--mc-stone);
    line-height: 2;
    margin-bottom: 28px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Sections */
.token-section {
    padding: 0 16px 24px;
}

.token-section .mc-panel {
    padding: 28px;
}

/* About */
.token-about p {
    font-size: 8px;
    color: var(--mc-light);
    line-height: 2.2;
    margin-bottom: 14px;
}

.token-about p:last-child {
    margin-bottom: 0;
    color: var(--mc-green);
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.tokenomics-card {
    text-align: center;
    background: rgba(0,0,0,0.3);
    border: 2px solid var(--mc-border-dark);
    padding: 20px 12px;
}

.tk-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    image-rendering: pixelated;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 6px var(--mc-green));
}

.tk-icon {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--mc-green);
    filter: drop-shadow(0 0 6px var(--mc-green));
}

.tokenomics-card h3 {
    font-size: 8px;
    color: var(--mc-stone);
    margin-bottom: 12px;
}

.tk-value {
    font-size: clamp(12px, 3vw, 18px);
    color: var(--mc-white);
    text-shadow: 2px 2px 0 #000;
    margin-bottom: 6px;
}

.tk-label {
    font-size: 6px;
    color: var(--mc-green);
}

/* Roadmap */
.roadmap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.roadmap-phase {
    background: rgba(0,0,0,0.3);
    border: 2px solid var(--mc-border-dark);
    padding: 16px;
    transition: border-color 0.2s;
}

.roadmap-phase:hover {
    border-color: var(--mc-stone);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.phase-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.3));
}

.phase-icon {
    font-size: 20px;
    filter: drop-shadow(0 0 4px currentColor);
}

.phase-header h3 {
    font-size: 10px;
    color: var(--mc-white);
    text-shadow: 2px 2px 0 #000;
}

.roadmap-phase ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px;
}

.roadmap-phase li {
    font-size: 7px;
    color: var(--mc-stone);
    padding: 4px 0 4px 16px;
    position: relative;
}

.roadmap-phase li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--mc-green);
}

/* How to buy */
.how-to-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.how-to-step {
    background: rgba(0,0,0,0.3);
    border: 2px solid var(--mc-border-dark);
    padding: 20px 16px;
    text-align: center;
}

.step-number {
    font-size: 24px;
    color: var(--mc-green);
    text-shadow: 2px 2px 0 #003300;
    margin-bottom: 10px;
}

.how-to-step h3 {
    font-size: 9px;
    color: var(--mc-white);
    margin-bottom: 10px;
}

.how-to-step p {
    font-size: 7px;
    color: var(--mc-stone);
    line-height: 1.8;
}

/* Community */
.community-panel {
    text-align: center;
    padding: 32px !important;
}

.community-text {
    font-size: 8px;
    color: var(--mc-light);
    line-height: 2;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-panel {
        padding: 24px 16px;
    }

    .hero-logo {
        width: 72px;
        height: 72px;
    }

    .tokenomics-grid,
    .how-to-grid {
        grid-template-columns: 1fr;
    }

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

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