* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* --- Gembok Layar (Fix Bug Geser Kanan di Mobile) --- */
html, body {
    overflow-x: hidden !important; 
    width: 100%;
    max-width: 100vw;
    position: relative;
}
/* --- UPDATE BODY: ATMOSPHERIC DEEP VOID (NO GRID) --- */
body {
    background-color: #010101; 
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 240, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(255, 0, 193, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(0, 240, 255, 0.06) 0%, transparent 60%);
    background-attachment: fixed; 
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
}

/* --- OBAT GRADIENT PECAH (NOISE OVERLAY) --- */
body::after {
    content: "";
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04; 
    pointer-events: none; 
    z-index: 9999; 
}

/* Pastikan semua section tembus pandang biar background body kelihatan */
.about, .tokenomics, .how-to-buy, .roadmap, .cyber-footer {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Kunci ukuran Canvas biar gak offside */
#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Biar layar tetep gampang di-scroll/klik */
}

/* --- Teks Hero Statis (No Animasi) --- */
.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #00F0FF;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* Kecilin dikit pas di HP */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
}

.container {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 20px;
}

.hero-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00F0FF);
}

/* Glitch Effect (Smooth Horizontal RGB Split, No Bouncing) */
.glitch {
    font-size: 4rem;
    font-weight: bold;
    color: #00F0FF;
    position: relative;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    animation: glitch-x 3s infinite ease-in-out alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    animation: glitch-x-2 2s infinite ease-in-out alternate-reverse;
}

/* Cuma geser kiri kanan tipis, gak ada loncat vertikal */
@keyframes glitch-x {
    0%, 100% { transform: translateX(0); }
    33% { transform: translateX(-2px); }
    66% { transform: translateX(2px); }
}

@keyframes glitch-x-2 {
    0%, 100% { transform: translateX(0); }
    33% { transform: translateX(2px); }
    66% { transform: translateX(-2px); }
}

/* Buttons */
.button-group {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    margin: 5px;
}

.btn-buy {
    background: #00F0FF;
    color: #000;
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.btn-buy:hover {
    box-shadow: 0 0 20px #00F0FF;
    transform: scale(1.05);
}

.btn-social {
    border: 1px solid #00F0FF;
    color: #00F0FF;
}

.btn-social:hover {
    background: rgba(0, 240, 255, 0.1);
}

/* CA Box */
.ca-container {
    margin-top: 40px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
}

.ca-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border: 1px dashed #00F0FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 400px;
    margin: 10px auto;
}

#copyBtn {
    background: #00F0FF;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Orbitron';
    font-size: 0.7rem;
}

/* --- ABOUT SECTION --- */
.about {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.05) 0%, #000 70%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.character-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 1);
}

.character-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.character-frame:hover .character-img {
    transform: scale(1.05);
}

.glow-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
}

.section-title {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 25px;
}

.highlight {
    color: #00F0FF;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #00F0FF;
    padding: 40px;
    border-radius: 0 20px 20px 0;
}

.intro-text {
    color: #00F0FF;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Roboto Mono', monospace;
}

.glass-card p {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
    font-family: 'Roboto Mono', monospace;
}

.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    flex: 1;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00F0FF;
}

.stat-desc {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    z-index: 0;
}
.orb-1 { width: 300px; height: 300px; top: -50px; right: -50px; }
.orb-2 { width: 200px; height: 200px; bottom: 50px; left: -50px; }

/* Responsive Tablet untuk About */
@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2.2rem; text-align: center; }
    .glass-card { border-radius: 20px; border-left: 1px solid rgba(0, 240, 255, 0.3); border-top: 4px solid #00F0FF; }
}

/* --- GLOBAL UTILITIES --- */
.text-center { text-align: center; }
.section-subtitle {
    color: #00F0FF;
    font-family: 'Roboto Mono', monospace;
    margin-bottom: 40px;
    opacity: 0.8;
}

.tokenomics, .how-to-buy, .roadmap {
    padding: 100px 20px;
    position: relative;
    background: transparent;
}

/* --- TOKENOMICS --- */
.token-grid {
    margin-top: 40px;
}

.cyber-card {
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
}

.featured-card {
    border: 1px solid #00F0FF;
    box-shadow: inset 0 0 15px rgba(0, 240, 255, 0.2);
}

.cyber-line {
    width: 60px;
    height: 3px;
    background: #00F0FF;
    margin: 15px auto 0;
    box-shadow: 0 0 10px #00F0FF;
}

.cyber-line.burned {
    background: #00F0FF;
    box-shadow: 0 0 10px #00F0FF;
}

/* --- HOW TO BUY --- */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(0, 240, 255, 0.3);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    border-style: solid;
    border-color: #00F0FF;
    background: rgba(0, 240, 255, 0.05);
}

.step-num {
    font-size: 3rem;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px #00F0FF;
    opacity: 0.5;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: 'Orbitron', sans-serif;
}

.step-card h3 {
    color: #00F0FF;
    margin-bottom: 15px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: #ccc;
    position: relative;
    z-index: 2;
}

/* --- ROADMAP TIMELINE --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(0, 240, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    right: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #00F0FF;
    border-radius: 50%;
    box-shadow: 0 0 15px #00F0FF;
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -8px;
}

.timeline-content h3 {
    color: #00F0FF;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
    font-family: 'Roboto Mono', monospace;
    color: #ccc;
}

.timeline-content ul li {
    margin-bottom: 10px;
}

/* --- FOOTER --- */
.cyber-footer {
    margin-top: 80px;
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px dashed rgba(0, 240, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.footer-links { margin: 30px 0; }

.footer-links a {
    color: #00F0FF;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    transition: 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-shadow: 0 0 15px #00F0FF;
}

.footer-disclaimer {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.7rem;
    color: #666;
    line-height: 1.6;
}
.footer-disclaimer p { margin-bottom: 10px; }
/* =========================================
   MOBILE RESPONSIVE ALL FIXES (MAX 768PX)
   ========================================= */
@media (max-width: 768px) {
    /* Hero Fixes */
    .glitch { font-size: 2.2rem; }
    .hero-logo { width: 100px; }
    
    /* FIX BUG: Teks CA Kepanjangan Bikin Layar Geser */
    .ca-box { 
        flex-direction: column; 
        gap: 15px; 
        word-break: break-all; /* Ini yg bikin CA panjang otomatis turun ke bawah */
        text-align: center;
        padding: 15px;
    }

    /* FIX BUG: Kotak About Stats Gepeng */
    .stats-grid {
        flex-direction: column;
        gap: 15px;
    }

    /* Tokenomics Fixes (Biar gak sempit) */
    .stats-grid.token-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .cyber-card {
        width: 100%;
        padding: 40px 20px; 
        box-sizing: border-box;
    }
    
    .stat-num {
        font-size: 1.6rem; 
    }
    
    .cyber-line {
        width: 80px;
        margin-top: 25px;
    }

    /* Roadmap Fixes */
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }
    .timeline-item:nth-child(even) {
        padding-left: 50px;
    }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}