/* Cyberpunk High-Tech Theme variables (Inherited from solana1/WEB1) */
:root {
    --bg-dark: #03050c;
    --bg-surface: #0a0f1d;
    --neon-cyan: #00f0ff;
    --neon-blue: #0044ff;
    --text-main: #ffffff;
    --text-muted: #8a9bb5;
    --border-color: rgba(0, 240, 255, 0.2);

    /* New specific colors for the dashboard */
    --card-bg: rgba(10, 15, 29, 0.6);
    --up-green: #39ff14;
    --danger-red: #ff3333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    width: 100%;
    /* Will be overridden by JS for desktop */
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.btn,
.nav-links a,
.title,
.ticker,
.stat-value,
.donut-value {
    font-family: 'Orbitron', sans-serif;
}

/* Fluid Media & General Layout Locking */
img,
iframe,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Background Effects (From WEB1) */

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}

/* --- NIGHT SKY UNIVERSE --- */
.star-universe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}

/* Tiny Background Stars */
.star-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer-1 {
    background-image:
        radial-gradient(1.5px 1.5px at 10% 15%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 25% 40%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1px 1px at 45% 5%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 60% 70%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 80% 25%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 90% 85%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(1.5px 1.5px at 30% 90%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 75% 60%, rgba(255, 255, 255, 0.8), transparent);
    background-size: 250px 250px;
    animation: twinkleStar 4s infinite alternate ease-in-out;
}

.layer-2 {
    background-image:
        radial-gradient(2px 2px at 5% 50%, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 35% 20%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 65% 80%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2.5px 2.5px at 85% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1.5px 1.5px at 95% 65%, rgba(0, 255, 255, 0.7), transparent);
    background-size: 350px 350px;
    animation: twinkleStar 6s infinite alternate-reverse ease-in-out;
}

@keyframes twinkleStar {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Shiny Multi-Pointed Stars (Segi-banyak) */
.shiny-star {
    position: absolute;
    width: 35px;
    height: 35px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C50 40 60 50 100 50 C60 50 50 60 50 100 C50 60 40 50 0 50 C40 50 50 40 50 0 Z" fill="rgba(255, 255, 255, 0.9)" filter="drop-shadow(0 0 5px rgba(0,255,255,0.8))"/></svg>') center/contain no-repeat;
    animation: shinyPulse 3s infinite alternate ease-in-out;
}

@keyframes shinyPulse {
    0% {
        transform: scale(0.6) rotate(0deg);
        opacity: 0.4;
        filter: brightness(0.8);
    }

    100% {
        transform: scale(1.3) rotate(15deg);
        opacity: 1;
        filter: brightness(1.5);
    }
}

/* Meteor (Hujan Meteor) */
.meteor {
    position: absolute;
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, 1) 80%, rgba(255, 255, 255, 1) 100%);
    border-radius: 50%;
    transform: rotate(-45deg);
    opacity: 0;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.m-1 {
    top: -150px;
    left: 30%;
    animation: meteorFall 10s infinite linear;
    animation-delay: 2s;
}

.m-2 {
    top: -150px;
    left: 70%;
    animation: meteorFall 18s infinite linear;
    animation-delay: 8s;
}

@keyframes meteorFall {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }

    2% {
        opacity: 1;
    }

    15% {
        transform: rotate(-45deg) translate(0, 1800px);
        opacity: 0;
    }

    100% {
        transform: rotate(-45deg) translate(0, 1800px);
        opacity: 0;
    }
}

/* --- PARTICLES --- */
#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: -100px;
    left: -100px;
    animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--neon-blue);
    bottom: -200px;
    right: -100px;
    animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Utilities */
.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
}

.up {
    color: var(--up-green);
}

.text-white {
    color: #fff;
}

.white {
    color: #fff;
    font-weight: bold;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    text-align: center;
}

.btn-primary {
    background-color: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    border: none;
}

.btn-primary .dynamic-symbol {
    color: #000;
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.8);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-outline:hover {
    background-color: rgba(0, 240, 255, 0.1);
}

.btn-nav {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    margin-top: 15px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(10, 15, 29, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.dynamic-symbol {
    font-weight: 900;
    color: var(--neon-cyan);
}

.tagline {
    font-size: 0.6rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-cyan);
}

/* Ticker Bar */
.ticker-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
    white-space: nowrap;
}

.ticker-move {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    animation: tickerScroll 25s linear infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.separator {
    opacity: 0.3;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-main);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 20px;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    width: 100%;
    margin-top: -60px;
}

.title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.ca-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 100%;
    width: 500px;
}

.ca-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.ca-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

#ca-text {
    font-family: monospace;
    font-size: clamp(0.7rem, 2.5vw, 0.9rem);
    color: var(--text-main);
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.copy-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}

.copy-btn:hover {
    color: var(--neon-cyan);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-placeholder-box {
    width: 100%;
    max-width: 600px;
    min-height: 450px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    position: relative;
}

.hero-placeholder-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.floating-mascot {
    font-size: 10rem;
    animation: floatImg 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    top: 30px;
    left: 65%;
    background: rgba(10, 15, 29, 0.9);
    border: 1px solid var(--neon-cyan);
    padding: 15px;
    color: var(--neon-cyan);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    transform: translateX(-50%) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 10;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-between;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--neon-cyan);
}

.stat-data {
    display: flex;
    flex-direction: column;
}

.stat-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
}

.stat-value {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    gap: 20px;
    margin-bottom: 20px;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.card-header h2 {
    font-size: 1rem;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-header h2::before,
.card-header h2::after {
    content: '—';
    opacity: 0.3;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body.no-pad {
    padding: 0;
}

.card-footer {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Live Chart Placeholder */
.chart-placeholder {
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 450px;
    border-radius: 8px;
}

.chart-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 65px);
    /* Hide footer */
    border: none;
}

@media (max-width: 768px) {
    .chart-placeholder {
        height: 400px;
        /* Adjusted to fit mobile screens better */
    }
}

/* Left Col: Tokenomics */
.donut-chart-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--neon-cyan);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.donut-chart-placeholder::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: #0b1120;
    border-radius: 50%;
    z-index: 1;
}

.donut-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.donut-title {
    display: block;
    font-size: 0.5rem;
    color: var(--text-muted);
}

.donut-value {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
}

.donut-ticker {
    display: block;
    font-size: 0.6rem;
    color: var(--neon-cyan);
}

.tokenomics-list {
    list-style: none;
    font-size: 0.8rem;
}

.tokenomics-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.dot-liq {
    background: var(--neon-cyan);
}

.dot-mkt {
    background: #555;
}

.dot-com {
    background: #777;
}

.dot-brn {
    background: #ff3333;
}

.dot-tm {
    background: #999;
}

.percent {
    color: var(--text-main);
    font-weight: 600;
}

/* Left Col: Roadmap */
.roadmap-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Increased gap for better timeline feel */
    position: relative;
}

/* Connecting Line */
.roadmap-body::before {
    content: '';
    position: absolute;
    top: 25px;
    /* Start slightly higher */
    bottom: 25px;
    /* End slightly lower */
    left: 31px;
    /* 20px padding + 12px half-icon - 1px half-line */
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-cyan) 0%, rgba(0, 240, 255, 0.1) 100%);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    z-index: 1;
}

.roadmap-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    /* Sit above the line */
}

.rd-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: var(--card-bg);
    /* Opaque background to hide line behind it */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #000;
    flex-shrink: 0;
}

.roadmap-item.active .rd-icon {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: #000;
    /* For the checkmark */
}

.roadmap-item.current .rd-icon {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    background: var(--card-bg);
}

.roadmap-item.current .rd-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
}

.rd-content {
    display: flex;
    flex-direction: column;
}

.rd-phase {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: bold;
    letter-spacing: 1px;
}

.rd-desc {
    color: #eee;
}

.roadmap-item.active .rd-phase,
.roadmap-item.current .rd-phase {
    color: var(--neon-cyan);
}

/* Center Col: Chart */
.chart-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.chart-pair {
    font-weight: 600;
}



.fake-chart-bars {
    width: 100%;
    height: 150px;
    background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(57, 255, 20, 0.2) 10px, rgba(57, 255, 20, 0.2) 15px);
}

.chart-watermark {
    position: absolute;
    bottom: 10px;
    font-size: 0.7rem;
    color: #555;
}

/* Center Col: Meme Hub */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
}

.meme-item {
    background: transparent;
    border: none;
    border-radius: 8px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.meme-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

/* Right Col: Buy & News */
.subtitle-small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.dex-list {
    display: flex;
    flex-direction: column;
}

.dex-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: var(--text-main);
    transition: 0.3s;
}

.dex-btn:hover {
    background: rgba(0, 240, 255, 0.05);
}

.dex-icon {
    font-size: 1.5rem;
}

.dex-info {
    flex: 1;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.dex-buy {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.dex-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.arrow {
    color: var(--text-muted);
}

.ca-container-small {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    min-width: 0;
}

.ca-text-small {
    font-family: monospace;
    font-size: clamp(0.6rem, 2vw, 0.7rem);
    color: var(--text-muted);
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
    min-width: 0;
}

.copy-btn-small {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.copy-btn-small:hover {
    color: var(--neon-cyan);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.news-img {
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid #333;
}

.news-info h4 {
    font-size: 0.8rem;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
}

.news-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Top Holders List */
.holders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Custom transparent scrollbar for holders list */
.holders-list {
    scrollbar-width: none;
    /* Firefox */
}

.holders-list::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    /* Chrome/Safari/Webkit */
}

.holder-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(0, 240, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.holder-item:last-child {
    margin-bottom: 0;
}

.holder-item:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateX(-3px);
    /* Slide slightly left since roadmap slides right */
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.05);
}

.holder-rank {
    width: 28px;
    height: 28px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 15px;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.holder-item:hover .holder-rank {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    transform: scale(1.1);
}

.holder-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.holder-address {
    font-size: 0.85rem;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.holder-amount {
    font-size: 0.75rem;
    color: #ccc;
    margin-top: 3px;
}

.holder-percent {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--up-green);
    text-shadow: 0 0 8px rgba(0, 255, 170, 0.4);
}

/* Main Footer Wrapper */
.main-footer {
    width: 100%;
    background: rgba(10, 15, 29, 0.95);
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    padding-top: 40px;
    position: relative;
    z-index: 10;
}

/* Footer Banner Redesign */
.footer-banner {
    padding: 0;
    margin: 0 auto 20px;
    position: relative;
    width: 100%;
}

.footer-banner-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
    /* Reduced from 15px */
    position: relative;
    margin: 0;
}

.footer-pepe {
    position: absolute;
    left: 20px;
    bottom: -10px;
    height: 140px;
    /* Reduced from 180px */
    z-index: 2;
}

.footer-pepe img {
    height: 100%;
    object-fit: contain;
}

.footer-text {
    margin-left: 200px;
    flex: 1;
    z-index: 2;
}

.footer-text h2 {
    font-size: 1.6rem;
    /* Reduced from 2.0rem */
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-text p {
    font-size: 1.0rem;
    /* Reduced from 1.1rem */
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 30px;
    z-index: 2;
    margin-left: 30px;
}

.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ccc;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-btn i,
.footer-btn img {
    width: 50px;
    /* Reduced from 60px */
    height: 50px;
    /* Reduced from 60px */
    border-radius: 50%;
    border: 2px solid rgba(0, 240, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    /* Reduced from 1.8rem */
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-btn img {
    object-fit: contain;
    padding: 12px;
}

.footer-btn:hover i,
.footer-btn:hover img {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
    background: rgba(0, 240, 255, 0.15);
    transform: translateY(-5px);
}

.footer-btn span {
    font-size: 0.85rem;
    font-family: 'Orbitron', sans-serif;
    color: #ccc;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-weight: bold;
}

.footer-btn:hover span {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 15px 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-logo-small {
    font-size: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-col ul a:hover {
    color: var(--neon-cyan);
}

.ca-container-footer {
    background: #111;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.ca-box {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.audit-info,
.network-info {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 0.8rem;
}

.network-badge {
    color: var(--neon-blue);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .hero-section {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
    }

    .hero-placeholder-box {
        min-height: 300px;
    }

    .floating-mascot {
        font-size: clamp(6rem, 20vw, 10rem);
    }

    .floating-badge {
        top: -10px;
        left: 50%;
        right: auto;
        padding: 10px;
        font-size: 0.8rem;
        transform: translateX(-50%) rotate(-5deg);
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .ca-container {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .ca-info {
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 12px 24px;
        font-size: clamp(0.8rem, 2.5vw, 1rem);
        width: 100%;
        max-width: 250px;
    }

    .stats-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 15px;
    }

    .stat-box {
        flex: 1 1 40%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .stat-icon {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 15px 5%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links {
        display: none;
    }

    .ticker-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px 5%;
    }

    .ticker-wrap {
        margin-right: 0;
        width: 100%;
        flex: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-banner {
        padding: 10px;
    }

    .footer-banner-content {
        flex-direction: column;
        padding: 20px 10px;
        text-align: center;
        gap: 20px;
    }

    .footer-text h2 {
        font-size: 1.5rem;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;

}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    /* Sized for landscape comic reading */
    background: #000;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--neon-cyan);
    padding: 10px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: var(--neon-cyan);
}

#video-modal-body iframe,
#video-modal-body img {
    width: 100%;
    max-height: 80vh;
    aspect-ratio: auto;
    /* Let image dictate aspect ratio */
    border-radius: 8px;
    border: none;
    display: block;
    object-fit: contain;
}

/* Meme Grid & Thumbnails */
.meme-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

@media (max-width: 768px) {
    .meme-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .meme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.meme-thumbnail {
    cursor: pointer;
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    /* Optimasi: Hanya animasikan yang berubah & gunakan Hardware Acceleration (GPU) */
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease;
    transform: translateZ(0);
    /* Paksa render di GPU agar tidak lag */
    will-change: transform;
    overflow: hidden;
}

.meme-thumbnail:hover {
    border-color: var(--neon-cyan);
    transform: scale(1.03) translateZ(0);
    z-index: 5;
}

.meme-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid #fff;
    transition: all 0.3s;
    z-index: 2;
}

.meme-thumbnail:hover .meme-play-btn {
    background: var(--neon-cyan);
    color: #000;
    border-color: var(--neon-cyan);
    transform: translate(-50%, -50%) scale(1.1);
}

/* --- ADVANCED HOLOGRAPHIC HERO RIGHT --- */
.hero-right {
    position: relative;
    width: 700px;
    height: 600px;
    /* Taller to accommodate symmetric cards */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    margin-top: -60px;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* HUD Holographic Rings Behind */
.hud-ring-container {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}

.hud-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--neon-cyan);
}

.outer-ring {
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-style: dashed;
    animation: spinSlow 30s linear infinite;
}

.inner-ring {
    width: 75%;
    height: 75%;
    border-width: 4px;
    border-style: dotted;
    animation: spinSlowReverse 20s linear infinite;
}

/* 3D Glowing Podium */
.platform-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) rotateX(75deg);
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-base {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #020813;
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 15px 0 #005a70, 0 20px 40px rgba(0, 255, 255, 0.5);
    transform: translateZ(-20px);
}

.podium-top {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, rgba(2, 8, 19, 0.9) 70%);
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 0 50px var(--neon-cyan), inset 0 0 30px var(--neon-cyan);
}

.platform-glow-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 60%);
    filter: blur(40px);
    opacity: 0.7;
    transform: translateZ(20px);
    animation: pulseGlow 4s infinite alternate;
}

/* Center Assets (Frog & Broom) */
.center-assets {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 200px;
    height: 200px;
    animation: float 4s ease-in-out infinite;
}

/* Fallback Emojis */
.center-assets .frog,
.center-assets .broom {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-assets .frog {
    font-size: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.center-assets .broom {
    font-size: 150px;
    left: -50px;
    top: 10px;
    transform: rotate(-25deg);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    z-index: 11;
}

/* Actual Images (When uncommented in HTML) */
.frog-img {
    position: absolute;
    width: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.5));
}

.broom-img {
    position: absolute;
    width: 170px;
    left: -40px;
    top: 10px;
    transform: rotate(-20deg);
    z-index: 11;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
}

/* HUD Cards - Horizontal Layout like Mockup */
.hud-card {
    position: absolute;
    width: 200px;
    padding: 12px 15px;
    background: rgba(0, 15, 25, 0.7);
    border: 1px solid var(--neon-cyan);
    color: #fff;

    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 0 10px rgba(0, 255, 255, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.hud-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.hud-text {
    text-align: left;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* Symmetrical Coordinates */
.hud-top-left {
    top: 80px;
    left: 20px;
}

.hud-top-right {
    top: 80px;
    right: 20px;
}

.hud-bottom-left {
    bottom: 55px;
    left: 20px;
}

.hud-bottom-right {
    bottom: 55px;
    right: 20px;
}

/* Advanced Animations */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinSlowReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 10px var(--neon-cyan);
        opacity: 0.6;
    }

    100% {
        box-shadow: 0 0 30px var(--neon-cyan), inset 0 0 30px var(--neon-cyan);
        opacity: 1;
    }
}

/* Responsiveness for new hero right */
@media (max-width: 1200px) {
    .hero-right {
        transform: scale(0.85);
        transform-origin: center;
    }
}

@media (max-width: 900px) {
    .hero-right {
        transform: scale(0.65);
        margin-top: -30px;
    }
}

.outer-ring {
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-style: dashed;
    animation: spinSlow 30s linear infinite;
}

.inner-ring {
    width: 75%;
    height: 75%;
    border-width: 4px;
    border-style: dotted;
    animation: spinSlowReverse 20s linear infinite;
}

/* 3D Glowing Podium */
.platform-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) rotateX(75deg);
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-base {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #020813;
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 15px 0 #005a70, 0 20px 40px rgba(0, 255, 255, 0.5);
    transform: translateZ(-20px);
}

.podium-top {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, rgba(2, 8, 19, 0.9) 70%);
    border: 4px solid var(--neon-cyan);
    box-shadow: 0 0 50px var(--neon-cyan), inset 0 0 30px var(--neon-cyan);
}

.platform-glow-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 60%);
    filter: blur(40px);
    opacity: 0.7;
    transform: translateZ(20px);
    animation: pulseGlow 4s infinite alternate;
}

/* Center Assets (Frog & Broom) */
.center-assets {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 200px;
    height: 200px;
    animation: float 4s ease-in-out infinite;
}

/* Fallback Emojis */
.center-assets .frog,
.center-assets .broom {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-assets .frog {
    font-size: 180px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.center-assets .broom {
    font-size: 150px;
    left: -50px;
    top: 10px;
    transform: rotate(-25deg);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    z-index: 11;
}

/* Actual Images (When uncommented in HTML) */
.frog-img {
    position: absolute;
    width: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.5));
}

.broom-img {
    position: absolute;
    width: 170px;
    left: -40px;
    top: 10px;
    transform: rotate(-20deg);
    z-index: 11;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
}

/* HUD Cards - Horizontal Layout like Mockup */
.hud-card {
    position: absolute;
    width: 200px;
    padding: 12px 15px;
    background: rgba(0, 15, 25, 0.7);
    border: 1px solid var(--neon-cyan);
    color: #fff;

    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), inset 0 0 10px rgba(0, 255, 255, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.hud-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.hud-text {
    text-align: left;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* Symmetrical Coordinates */
.hud-top-left {
    top: 80px;
    left: 20px;
}

.hud-top-right {
    top: 80px;
    right: 20px;
}

.hud-bottom-left {
    bottom: 55px;
    left: 20px;
}

.hud-bottom-right {
    bottom: 55px;
    right: 20px;
}

/* Advanced Animations */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinSlowReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 10px var(--neon-cyan);
        opacity: 0.6;
    }

    100% {
        box-shadow: 0 0 30px var(--neon-cyan), inset 0 0 30px var(--neon-cyan);
        opacity: 1;
    }
}

/* Responsiveness for new hero right */
@media (max-width: 1200px) {
    .hero-right {
        zoom: 0.85;
    }
}

@media (max-width: 900px) {
    .hero-right {
        zoom: 0.65;
        margin-top: -30px;
    }
}

@media (max-width: 600px) {
    .hero-right {
        zoom: 0.45;
        margin-top: -80px;
        margin-bottom: -100px;
    }
}

/* Our Journey & Our Values CSS */
.journey-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 10px;
    align-items: stretch;
}

.journey-step {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.journey-step:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.journey-img-box {
    width: 100%;
    height: auto;
    /* Let image dictate height naturally */
    background: transparent;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.placeholder-text {
    color: var(--neon-cyan);
    font-weight: bold;
    opacity: 0.5;
}

.journey-step h3 {
    font-size: 0.85rem;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.journey-step p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.journey-arrow {
    display: none;
    /* Hide arrows for grid layout */
}

.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 10px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.value-icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 3px;
}

.value-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Hide Webkit Scrollbars for Side Columns */
.roadmap-body::-webkit-scrollbar,
.no-pad::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 223, 255, 0.1);
    border: 1px solid rgba(0, 223, 255, 0.3);
    backdrop-filter: blur(5px);
    font-size: 24px;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 0 15px rgba(0, 223, 255, 0.2);
}
.modal-nav-btn:hover {
    background: rgba(0, 223, 255, 0.4);
    box-shadow: 0 0 25px rgba(0, 223, 255, 0.6);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}
.modal-nav-left {
    left: -30px;
}
.modal-nav-right {
    right: -30px;
}
@media (max-width: 768px) {
    .modal-nav-btn { width: 45px; height: 45px; font-size: 20px; }
    .modal-nav-left { left: -15px; }
    .modal-nav-right { right: -15px; }
}
