/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #06d6a0;
    --accent: #f72585;
    --neon-blue: #00f5ff;
    --neon-pink: #ff006e;
    --dark: #0a0a1a;
    --dark-light: #12122a;
    --text: #e8e8f0;
    --text-muted: #9898b8;
    --card-bg: #16162e;
    --border: #2a2a50;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 1000;
    list-style: none;
    margin-top: 0;
    padding-top: 15px;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu.show {
    display: block;
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nav-dropdown-menu a:hover {
    color: var(--accent);
    background: rgba(247, 37, 133, 0.05);
}

.nav-badge-new {
    background: var(--secondary);
    color: #0a0a1a;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: top;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-mascot {
    margin-bottom: 30px;
}

.mascot-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 0 40px rgba(247, 37, 133, 0.4), 0 0 80px rgba(139, 92, 246, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--primary), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.4rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.launch-banner {
    margin-bottom: 40px;
}

.launch-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--neon-pink));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    animation: glow 2s ease-in-out infinite alternate;
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(247, 37, 133, 0.5); }
    100% { box-shadow: 0 0 40px rgba(247, 37, 133, 0.8), 0 0 60px rgba(139, 92, 246, 0.3); }
}

.launch-platform {
    margin-top: 12px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.launch-platform strong {
    color: var(--neon-blue);
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    box-shadow: 0 5px 20px rgba(247, 37, 133, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(247, 37, 133, 0.5);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(6, 214, 160, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(247, 37, 133, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(0, 245, 255, 0.05) 0%, transparent 40%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* About */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-intro strong {
    color: var(--neon-blue);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(247, 37, 133, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.inline-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    display: inline-block;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.about-card p {
    color: var(--text-muted);
}

/* AI Feature Section */
.ai-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.ai-step {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    max-width: 220px;
    transition: all 0.3s;
}

.ai-step:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.ai-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    margin: 0 auto 15px;
}

.ai-step-content h3 {
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
}

.ai-step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ai-connector {
    font-size: 1.5rem;
    color: var(--neon-blue);
    font-weight: 700;
}

.ai-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 245, 255, 0.1));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.ai-highlight p {
    color: var(--text-muted);
    font-size: 1rem;
}

.ai-highlight strong {
    color: var(--neon-blue);
}

/* Contract Section */
.contract-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.contract-network {
    margin-bottom: 20px;
}

.network-badge {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contract-address code {
    font-size: 0.85rem;
    color: var(--neon-blue);
    word-break: break-all;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.contract-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 15px 0;
}

.audit-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background: rgba(6, 214, 160, 0.1);
    border: 1px solid rgba(6, 214, 160, 0.3);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Tokenomics */
.tokenomics-grid {
    max-width: 700px;
    margin: 0 auto 50px;
}

.tokenomics-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.detail-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.detail-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(6, 214, 160, 0.15);
}

.detail-card h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.detail-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.token-percent {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 50px;
}

.token-label {
    min-width: 200px;
    font-weight: 500;
}

.token-bar {
    flex: 1;
    height: 12px;
    background: var(--dark);
    border-radius: 10px;
    overflow: hidden;
}

.token-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--neon-blue));
    border-radius: 10px;
    transition: width 1s ease;
}

.tax-info {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.tax-info h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.tax-breakdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tax-item {
    font-weight: 500;
}

/* Roadmap */
.roadmap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--primary), var(--neon-blue));
    border-radius: 3px;
}

.roadmap-item {
    position: relative;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.roadmap-item:hover {
    border-color: var(--accent);
}

.roadmap-item.completed {
    border-color: rgba(6, 214, 160, 0.3);
}

.roadmap-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(247, 37, 133, 0.2);
}

.roadmap-marker {
    position: absolute;
    left: -48px;
    top: 30px;
    font-size: 1.2rem;
    background: var(--dark);
    padding: 5px;
    border-radius: 50%;
}

.roadmap-content h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.roadmap-content ul {
    list-style: none;
    padding: 0;
}

.roadmap-content li {
    padding: 5px 0;
    color: var(--text-muted);
}

/* How to Buy */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: white;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.buy-links {
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Community */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.community-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.community-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(247, 37, 133, 0.2);
}

.community-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.community-card h3 {
    color: white;
    margin-bottom: 8px;
}

.community-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: var(--accent);
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#techCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tokenomics-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-dropdown {
        position: static;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown-toggle {
        pointer-events: none;
    }

    .nav-dropdown-menu {
        position: static;
        display: block !important;
        background: none;
        border: none;
        box-shadow: none;
        padding: 5px 0 0 20px;
        min-width: auto;
        margin-top: 0;
        border-radius: 0;
    }

    .nav-dropdown-menu a {
        padding: 8px 0;
        font-size: 0.95rem;
        color: var(--text);
    }

    .nav-dropdown-menu a:hover {
        color: var(--accent);
        background: none;
    }

    .hero {
        padding: 100px 15px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .launch-badge {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .mascot-img {
        width: 140px;
        height: 140px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-card {
        padding: 25px;
    }

    .about-intro {
        font-size: 1rem;
        padding: 0 10px;
    }

    .ai-flow {
        flex-direction: column;
        gap: 15px;
    }

    .ai-connector {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }

    .ai-step {
        max-width: 100%;
        width: 100%;
    }

    .ai-highlight {
        padding: 20px;
    }

    .ai-highlight p {
        font-size: 0.9rem;
    }

    .contract-box {
        padding: 25px 15px;
    }

    .contract-address {
        padding: 12px 15px;
    }

    .contract-address code {
        font-size: 0.75rem;
    }

    .token-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .token-label {
        min-width: auto;
    }

    .token-bar {
        width: 100%;
    }

    .tokenomics-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .detail-card {
        padding: 20px;
    }

    .tax-info {
        padding: 20px;
    }

    .tax-breakdown {
        flex-direction: column;
        gap: 15px;
    }

    .roadmap {
        padding-left: 30px;
    }

    .roadmap::before {
        left: 10px;
    }

    .roadmap-marker {
        left: -38px;
        font-size: 1rem;
    }

    .roadmap-item {
        padding: 20px;
        margin-bottom: 25px;
    }

    .roadmap-content h3 {
        font-size: 1rem;
    }

    .roadmap-content li {
        font-size: 0.9rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 25px;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .community-card {
        padding: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .buy-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 15px;
    }

    .animated-bg {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .mascot-img {
        width: 120px;
        height: 120px;
    }

    .launch-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .nav-links {
        padding: 15px;
    }

    .audit-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Promo Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: #12122a;
    border: 2px solid var(--accent);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(247, 37, 133, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-overlay.active .popup-box {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(247, 37, 133, 0.5);
}

.popup-iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.popup-btn {
    display: block;
    width: 85%;
    text-align: center;
    padding: 12px 20px;
    margin: 14px auto;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 37, 133, 0.5);
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 15px;
    }
    .popup-box {
        max-width: 320px;
    }
    .popup-iframe {
        height: 330px;
    }
    .popup-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin: 10px auto;
    }
}

@media (max-width: 360px) {
    .popup-box {
        max-width: 280px;
    }
    .popup-iframe {
        height: 300px;
    }
}

/* Countdown Timer */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.countdown-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Blog/News */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.1);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.blog-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .countdown-wrapper {
        gap: 10px;
    }
    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }
    .countdown-value {
        font-size: 1.8rem;
    }
    .countdown-separator {
        font-size: 1.8rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Live Price Display */
.live-price-display {
    margin-bottom: 30px;
}

.live-price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.live-price-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    line-height: 1.2;
}

.live-price-change {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
}

.live-price-change.up {
    background: rgba(6, 214, 160, 0.15);
    color: #06d6a0;
}

.live-price-change.down {
    background: rgba(247, 37, 133, 0.15);
    color: #f72585;
}

@media (max-width: 768px) {
    .live-price-big {
        font-size: 2.2rem;
    }
}

/* Supported Wallets */
.wallets-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.wallet-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    min-width: 130px;
}

.wallet-logo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
}

.wallet-logo-card img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
}

.wallet-logo-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Top Holders Table */
.holders-table-wrap {
    max-width: 700px;
    margin: 0 auto;
    overflow-x: auto;
}

.holders-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.holders-table thead {
    background: var(--dark-light);
}

.holders-table th {
    padding: 14px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.holders-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.holders-table tbody tr:last-child td {
    border-bottom: none;
}

.holders-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.05);
}

.holders-table .rank {
    font-weight: 700;
    color: var(--accent);
    width: 40px;
}

.holders-table .wallet-addr {
    font-family: monospace;
    color: var(--neon-blue);
    font-size: 0.8rem;
}

.holders-table .balance-val {
    font-weight: 600;
    color: var(--secondary);
}

.holders-table .pct-val {
    font-weight: 600;
    color: var(--text-muted);
}

.holders-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 15px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .holders-table th,
    .holders-table td {
        padding: 10px 10px;
        font-size: 0.75rem;
    }
    .holders-table .wallet-addr {
        font-size: 0.7rem;
    }
}
