:root {
    --bg-dark: #07080d;
    --card-bg: rgba(14, 18, 36, 0.4);
    --border-glass: rgba(255, 255, 255, 0.06);
    --accent-solana-purple: #9945FF;
    --accent-solana-green: #14F195;
    --accent-cyan: #00f2fe;
    --text-main: #f0f2f5;
    --text-muted: #8492a6;
    --font-stack: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
    border-color: rgba(20, 241, 149, 0.25);
    box-shadow: 0 12px 40px rgba(153, 69, 255, 0.15);
    transform: translateY(-4px);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 13, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: 1240px; margin: 0 auto; height: 80px;
    display: flex; align-items: center; justify-content: space-between; padding: 0 24px;
}

.logo { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: var(--accent-solana-green); }

.nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; margin-left: 28px; transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.btn-nav {
    background: linear-gradient(135deg, var(--accent-solana-purple), var(--accent-solana-green));
    padding: 10px 20px; border-radius: 30px; color: #000 !important; font-weight: 600 !important;
}

/* MOBILE TOGGLE SYSTEM */
.mobile-menu-toggle {
    display: none; position: fixed; top: 18px; right: 24px; width: 45px; height: 45px;
    background: rgba(20, 241, 149, 0.1); border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 12px; align-items: center; justify-content: center; font-size: 20px;
    color: var(--accent-solana-green); cursor: pointer; z-index: 2001; backdrop-filter: blur(10px);
}

/* HERO */
.hero-section {
    position: relative; padding-top: 180px; padding-bottom: 120px; text-align: center;
    background: radial-gradient(circle at 50% 20%, rgba(153, 69, 255, 0.12), transparent 60%);
}
.badge-container { margin-bottom: 24px; }
.badge { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px 18px; border-radius: 50px; font-size: 13px; color: var(--accent-solana-green); font-weight: 600; }
.hero-section h1 { font-size: 56px; font-weight: 800; line-height: 1.15; max-width: 900px; margin: 0 auto 24px; letter-spacing: -1.5px; }
.gradient-text { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-solana-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); max-width: 680px; margin: 0 auto 40px; }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn { padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s; }
.btn-primary { background: #fff; color: #000; }
.btn-secondary { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-glass); color: #fff; }
.btn-outline { border: 1px solid var(--accent-solana-green); color: var(--accent-solana-green); }

/* GRID SYSTEMS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { padding: 40px 32px; text-align: left; }
.stat-icon { font-size: 24px; color: var(--accent-solana-purple); margin-bottom: 20px; }
.stat-card h3 { font-size: 38px; font-weight: 800; color: #fff; }
.stat-card p { font-size: 14px; color: var(--text-muted); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { font-size: 12px; text-transform: uppercase; font-weight: 700; color: var(--accent-solana-purple); letter-spacing: 1.5px; display: block; margin-bottom: 12px; }
.section-header h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { padding: 40px 30px; }
.card-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 24px; }
.red-glow { background: rgba(255, 75, 75, 0.1); color: #ff4b4b; }
.green-glow { background: rgba(20, 241, 149, 0.1); color: var(--accent-solana-green); }

/* NEW IMAGE DEMO GALLERY */
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.demo-item { padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.demo-img-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: 12px; overflow: hidden; cursor: pointer; background: #090d1a; }
.demo-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.demo-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(153, 69, 255, 0.4); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; opacity: 0; transition: opacity 0.3s ease; }
.demo-item:hover .demo-img-wrapper img { transform: scale(1.06); }
.demo-item:hover .demo-overlay { opacity: 1; }
.demo-item h4 { font-size: 16px; font-weight: 600; text-align: center; color: #fff; }

/* TEAM STYLING */
.team-card { padding: 34px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.team-avatar-wrapper { width: 110px; height: 110px; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, var(--accent-solana-purple), var(--accent-cyan)); margin-bottom: 20px; }
.team-avatar-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; background: var(--bg-dark); }
.team-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--accent-solana-green); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px; text-transform: uppercase; }
.team-socials { display: flex; gap: 12px; }
.team-social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid var(--border-glass); color: var(--text-main); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.3s ease; }
.team-social-btn:hover { background: #fff; color: #000; transform: translateY(-2px); }

/* ROADMAP TIMELINE */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; width: 2px; height: 100%; background: var(--border-glass); top: 0; transform: translateX(-50%); }
.timeline-container { display: flex; flex-direction: column; gap: 40px; }
.timeline-node { width: 45%; padding: 30px; position: relative; }
.timeline-node.left { align-self: flex-start; }
.timeline-node.right { align-self: flex-end; }
.timeline-date { font-size: 20px; font-weight: 800; color: var(--accent-solana-purple); margin-bottom: 8px; }

/* TOKENOMICS Matrix */
.tokenomics-layout { display: flex; align-items: center; justify-content: center; gap: 80px; max-width: 800px; margin: 0 auto; }
.tokenomics-graphic-container { position: relative; width: 220px; height: 220px; flex-shrink: 0; }
.token-svg { width: 220px; height: 220px; transform: rotate(-90deg); }
.bg-circle { fill: none; stroke: rgba(255,255,255,0.02); stroke-width: 24; }
.segment { fill: none; stroke-width: 24; stroke-linecap: round; }
.segment-1 { stroke: var(--accent-solana-purple); stroke-dasharray: 502; stroke-dashoffset: 125; }
.segment-2 { stroke: var(--accent-solana-green); stroke-dasharray: 502; stroke-dashoffset: 250; }
.segment-3 { stroke: var(--accent-cyan); stroke-dasharray: 502; stroke-dashoffset: 375; }
.segment-4 { stroke: #ffb800; stroke-dasharray: 502; stroke-dashoffset: 450; }
.svg-inner-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 22px; font-weight: 800; color: #fff; }
.tokenomics-legend { display: flex; flex-direction: column; gap: 16px; }
.legend-item { font-size: 14px; display: flex; align-items: center; gap: 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.p1 { background: var(--accent-solana-purple); }
.dot.p2 { background: var(--accent-solana-green); }
.dot.p3 { background: var(--accent-cyan); }
.dot.p4 { background: #ffb800; }

/* FAQ */
.faq-container { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 24px; cursor: pointer; }
.faq-question { font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin-top 0.3s ease; color: var(--text-muted); font-size: 14px; }
.faq-item.active .faq-answer { max-height: 200px; margin-top: 14px; }
.faq-item.active i { transform: rotate(180deg); }

/* CONTACT */
.contact-wrapper { padding: 60px; text-align: center; }
.contact-wrapper h2 { font-size: 32px; margin-bottom: 14px; font-weight: 800; }
.contact-wrapper p { color: var(--text-muted); margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-link-card { padding: 30px; text-decoration: none; color: inherit; }
.contact-link-card i { font-size: 28px; color: var(--accent-solana-green); margin-bottom: 16px; }
.contact-link-card span { display: block; font-weight: 700; margin-bottom: 6px; }

/* LIGHTBOX FOR IMAGES */
.lightbox { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5,6,10,0.98); align-items: center; justify-content: center; padding: 20px; }
.lightbox-wrapper { max-width: 700px; width: 100%; text-align: center; background: #0e1224; padding: 24px; border-radius: 20px; border: 1px solid var(--border-glass); position: relative; }
.lightbox-img-render { width: 100%; max-height: 50vh; object-fit: contain; border-radius: 10px; margin-bottom: 18px; background: #07080d; }
.lightbox-wrapper h3 { font-size: 22px; margin-bottom: 10px; color: #fff; }
.lightbox-wrapper p { color: var(--text-muted); font-size: 14px; }
.lightbox-close { position: absolute; top: -50px; right: 0; font-size: 36px; cursor: pointer; color: #fff; }
.lightbox-arrow { background: rgba(255,255,255,0.02); border: 1px solid var(--border-glass); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10000; }
.btn-prev { left: -75px; } .btn-next { right: -75px; }

.footer { border-top: 1px solid var(--border-glass); padding: 40px 0; text-align: center; font-size: 13px; color: var(--text-muted); }

/* ===================================================
   🔥 NATIVE MOBILE AND ANDROID ULTRA RESPONSIVE RULES
   =================================================== */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .btn-prev { left: 15px; top: auto; bottom: -70px; transform: none; }
    .btn-next { right: 15px; top: auto; bottom: -70px; transform: none; }
    .lightbox-wrapper { margin-bottom: 60px; }
}

@media (max-width: 768px) {
    .section-padding { padding-top: 60px; padding-bottom: 60px; }
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: #090b11; border-left: 1px solid var(--border-glass);
        display: flex; flex-direction: column; padding: 100px 30px; gap: 24px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); align-items: flex-start;
    }
    .nav-links.active { right: 0; }
    .nav-links a { margin-left: 0; font-size: 16px; width: 100%; }
    .btn-nav { text-align: center; width: 100%; padding: 14px; }

    .hero-section { padding-top: 130px; padding-bottom: 70px; }
    .hero-section h1 { font-size: 32px; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .grid-3, .grid-4, .demo-grid, .contact-grid { grid-template-columns: 1fr; gap: 20px; }

    .timeline-line { left: 20px; transform: none; }
    .timeline-node { width: 100% !important; align-self: flex-start !important; padding-left: 45px; }

    .tokenomics-layout { flex-direction: column; gap: 34px; }
    .contact-wrapper { padding: 30px 20px; }
    .contact-wrapper h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { text-align: center; padding: 24px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}