/* --- VARIABLE & RESET --- */
:root {
    --bg-dark: #120202;
    --bg-card: #1a0505;
    --primary-red: #e74c3c;
    --accent-yellow: #f1c40f;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --discord-blue: #5865F2;
    --wa-green: #25D366;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
}

html {
    scroll-behavior: smooth;
}

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- NAVBAR --- */
header {
    background: rgba(18, 2, 2, 0.95);
    padding: 15px 5%;
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000;
    border-bottom: 1px solid #300;
    backdrop-filter: blur(10px);
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.logo-container { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

/* Ukuran Logo Proporsional */
.logo-icon {
    height: 32px; 
    width: auto; 
    object-fit: contain;
    vertical-align: middle;
}

/* Efek Teks Glow Berdenyut */
.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: glow-pulse 3s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(231, 76, 60, 0.4), 0 0 10px rgba(231, 76, 60, 0.2);
    }
    50% {
        text-shadow: 0 0 15px rgba(231, 76, 60, 0.8), 0 0 25px rgba(231, 76, 60, 0.5);
    }
}

.nav-menu-container { 
    display: flex; 
    align-items: center; 
    background: rgba(255,255,255,0.05); 
    padding: 5px; 
    border-radius: 50px; 
}

.nav-links { display: flex; gap: 5px; }

.nav-links a { 
    padding: 8px 15px; 
    border-radius: 50px; 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    font-weight: 500;
}

.nav-links a.active, .nav-links a:hover { 
    background: var(--primary-red); 
    color: #fff; 
}

.btn-shop { 
    background: var(--primary-red); 
    padding: 8px 20px; 
    border-radius: 50px; 
    margin-left: 10px; 
    font-weight: 600; 
    font-size: 0.9rem;
}

/* --- HERO SECTION --- */
section { padding: 100px 10% 60px; text-align: center; }

.hero { 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: radial-gradient(circle, #300 0%, #120202 100%); 
}

.hero-title { 
    font-size: 4rem; 
    letter-spacing: 5px; 
    font-weight: 800;
    margin-bottom: 10px;
}

.highlight { color: var(--accent-yellow); }

.hero-buttons { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    margin-top: 40px; 
}

.btn-play { background: var(--primary-red); padding: 15px 35px; border-radius: 10px; font-weight: 700; }
.btn-discord { background: #2c2f33; padding: 15px 35px; border-radius: 10px; font-weight: 700; }

.btn-play:hover, .btn-discord:hover { transform: translateY(-3px); }

/* --- STATS & COMMON CARDS --- */
.section-title { font-size: 2.5rem; margin-bottom: 10px; font-weight: 700; }
.section-desc { color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

.stats-container, .connect-grid, .team-grid { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
}

.stat-card, .connect-card, .team-card, .update-card { 
    background: var(--bg-card); 
    padding: 30px; 
    border-radius: 15px; 
    border: 1px solid #300; 
    transition: 0.3s;
}

.stat-card i { color: var(--accent-yellow); font-size: 2rem; margin-bottom: 15px; }

/* --- THE TEAM (PNG Support) --- */
.avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.3) 0%, rgba(231, 76, 60, 0) 70%);
    border-radius: 50%;
}

.team-card img {
    width: 100px;
    height: 100px;
    object-fit: contain; /* Penting untuk gambar PNG agar tidak terpotong */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5)); /* Bayangan mengikuti bentuk karakter */
}

.role { color: var(--primary-red); font-size: 0.9rem; font-weight: 600; margin-top: 10px; }

/* --- HELP & SHOP --- */
.help-main-card {
    background: linear-gradient(145deg, #2a0505, #1a0202);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #400;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.help-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.btn-help {
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

.btn-help.discord { background: var(--discord-blue); }
.btn-help.shop { background: var(--primary-red); }
.btn-help.wa { background: var(--wa-green); }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 0 auto; text-align: left; }

.faq-item {
    background: #1a0505;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #300;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid #300;
    padding-top: 15px;
    display: none; /* Disembunyikan, tampilkan via JS toggle */
}

.faq-item.active .faq-answer { display: block; }

/* --- FOOTER --- */
footer { background: #0a0101; padding: 60px 10% 20px; border-top: 1px solid #200; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-links { display: flex; gap: 60px; }
.footer-links h4 { color: var(--accent-yellow); margin-bottom: 20px; }
.footer-links li { color: var(--text-muted); margin-bottom: 10px; font-size: 0.9rem; }
.copyright { text-align: center; font-size: 0.8rem; color: #444; border-top: 1px solid #1a1a1a; padding-top: 30px; margin-top: 30px; }

/* --- UTILS --- */
.floating-cube {
    position: absolute;
    right: 5%;
    font-size: 4rem;
    color: #8e44ad;
    opacity: 0.3;
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- FIXED MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Navbar Base */
    header {
        padding: 10px 5%;
    }

    /* Tampilkan Hamburger */
    .menu-toggle {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
        order: 2;
    }

    .logo-container {
        order: 1;
    }

    /* Container Menu (Slide Down) */
    .nav-menu-container {
        position: fixed;
        top: -100vh; /* Sembunyi di atas layar */
        left: 0;
        width: 100%;
        height: auto;
        background: var(--bg-card);
        flex-direction: column !important;
        padding: 80px 25px 40px !important;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-radius: 0 0 25px 25px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.9);
        display: flex !important; /* Pastikan flex agar isi terlihat */
    }

    /* Trigger Aktif dari JS */
    .nav-menu-container.active {
        top: 0;
    }

    /* Tombol Close */
    .menu-close {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
    }

    /* Links Alignment */
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }

    .nav-links li { 
        width: 100%; 
    }

    .nav-links a {
        display: flex !important;
        align-items: center;
        padding: 15px 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 12px !important;
        color: white !important;
        font-size: 1rem !important;
        width: 100%;
    }

    .nav-links a i {
        margin-right: 15px;
        color: var(--accent-yellow);
        width: 20px;
        text-align: center;
    }

    /* Button Shop di Mobile */
    .btn-shop {
        display: block !important;
        width: 100% !important;
        margin: 10px 0 0 0 !important;
        padding: 15px !important;
        text-align: center;
        background: var(--primary-red) !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
    }

    /* Section Adjustments (Agar Tidak Berantakan) */
    .hero-title { font-size: 2.5rem; letter-spacing: 2px; }
    .hero-buttons { flex-direction: column; gap: 15px; padding: 0 10%; }
    .help-buttons-grid { grid-template-columns: 1fr; }
    .footer-links { gap: 30px; flex-direction: column; }
    .stats-container { gap: 10px; }
    .stat-card { width: 100%; }
}

/* Sembunyikan elemen mobile di Desktop */
@media (min-width: 769px) {
    .menu-toggle, .menu-close { display: none !important; }
}

/* --- FINAL MOBILE RESPONSIVE WITH EFFECTS --- */
@media (max-width: 768px) {
    /* ... (kode header, menu-toggle, & container tetap sama) ... */

    .nav-menu-container {
        position: fixed;
        top: -110vh;
        left: 0;
        width: 100%;
        background: rgba(26, 5, 5, 0.98); /* Sedikit transparan */
        backdrop-filter: blur(15px);
        flex-direction: column !important;
        padding: 80px 25px 40px !important;
        transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        border-radius: 0 0 30px 30px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        border-bottom: 2px solid var(--primary-red);
        display: flex !important;
    }

    .nav-menu-container.active { top: 0; }

    /* EFEK PADA LINKS (TOMBOL MENU) */
    .nav-links a {
        display: flex !important;
        align-items: center;
        padding: 18px 20px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border-radius: 15px !important;
        color: white !important;
        font-size: 1rem !important;
        border: 1px solid rgba(255,255,255,0.05);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    /* Efek Glow & Geser saat diklik/hover */
    .nav-links a:active, .nav-links a.active {
        background: linear-gradient(90deg, rgba(231, 76, 60, 0.2), transparent) !important;
        border-left: 4px solid var(--primary-red) !important;
        padding-left: 25px !important; /* Geser teks sedikit ke kanan */
        color: var(--primary-red) !important;
    }

    /* Efek Ripple Sederhana */
    .nav-links a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .nav-links a:active::after {
        width: 300px;
        height: 300px;
        opacity: 0;
    }

    /* EFEK PADA TOMBOL SHOP (PRIMARY) */
    .btn-shop {
        display: block !important;
        width: 100% !important;
        margin-top: 15px !important;
        padding: 18px !important;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-red), #c0392b) !important;
        border-radius: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3) !important;
        transition: all 0.3s ease !important;
        border: none !important;
    }

    .btn-shop:active {
        transform: scale(0.96); /* Efek membal saat ditekan */
        box-shadow: 0 5px 10px rgba(231, 76, 60, 0.2) !important;
    }

    /* TOMBOL CLOSE (X) DENGAN ROTASI */
    .menu-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 25px;
        width: 45px;
        height: 45px;
        background: rgba(231, 76, 60, 0.1);
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        color: var(--primary-red);
        border: 1px solid rgba(231, 76, 60, 0.3);
        transition: 0.3s;
    }

    .menu-close:active {
        transform: scale(0.8) rotate(90deg);
        background: var(--primary-red);
        color: white;
    }
}

/* --- FINAL MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Navbar Base */
    header { padding: 10px 5%; }

    /* Tombol Hamburger */
    .menu-toggle {
        display: block !important;
        font-size: 1.6rem;
        cursor: pointer;
        color: white;
        order: 2; /* Agar berada di kanan */
    }

    .logo-container { order: 1; }

    /* Container Menu Mobile */
    .nav-menu-container {
        position: fixed;
        top: -110vh; /* Sembunyi jauh di atas */
        left: 0;
        width: 100%;
        height: auto;
        background: #1a0505; /* Warna bg-card kamu */
        flex-direction: column !important;
        padding: 80px 25px 40px !important;
        transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        border-radius: 0 0 30px 30px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.9);
        border: 1px solid #400 !important;
        display: flex !important;
    }

    /* Trigger Aktif via JS */
    .nav-menu-container.active {
        top: 0;
    }

    /* TOMBOL CLOSE (X) - Desain Baru */
    .menu-close {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 25px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--primary-red); /* Warna merah kontras */
        cursor: pointer;
        transition: 0.3s;
        border: 1px solid rgba(231, 76, 60, 0.2);
    }

    .menu-close:hover {
        background: var(--primary-red);
        color: white;
        transform: rotate(90deg);
    }

    /* Pengaturan Link Menu di Mobile */
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        margin-bottom: 25px !important;
    }

    .nav-links li { width: 100%; }

   /* --- EFFECT BUTTON TETAP (MOBILE) --- */
@media (max-width: 768px) {
    /* Style dasar semua link di mobile */
    .nav-links a {
        display: flex !important;
        align-items: center;
        padding: 16px 20px !important;
        background: rgba(255, 255, 255, 0.05) !important; /* Warna default redup */
        border-radius: 12px !important;
        color: var(--text-muted) !important;
        font-size: 1rem !important;
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.05);
    }

    /* Efek saat link memiliki class .active (Sama seperti Home) */
    .nav-links a.active {
        background: var(--primary-red) !important; /* Merah solid */
        color: white !important; /* Teks jadi putih terang */
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        transform: translateY(-2px);
        border-color: rgba(255,255,255,0.2);
    }

    /* Efek Icon saat aktif */
    .nav-links a.active i {
        color: white !important; /* Icon ikut jadi putih */
    }
}

    .nav-links a i {
        margin-right: 15px;
        color: var(--accent-yellow);
        width: 20px;
        text-align: center;
    }

    /* Tombol Shop Merah Full Width */
    .btn-shop {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 18px !important;
        text-align: center;
        background: var(--primary-red) !important;
        border-radius: 12px !important;
        font-size: 1.1rem !important;
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    }

    /* Penyesuaian Konten Lain */
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .help-buttons-grid { grid-template-columns: 1fr; }
}

/* Matikan elemen mobile di Desktop */
@media (min-width: 769px) {
    .menu-toggle, .menu-close { display: none !important; }
}

/* Pastikan transisi halus saat warna berubah */
.nav-links a {
    transition: all 0.3s ease;
}

/* Efek Menu Aktif saat Scroll (Desktop) */
@media (min-width: 769px) {
    .nav-links a.active {
        background: var(--primary-red);
        color: #fff !important;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    }
}

/* Scroll Up Button (Opsional, agar navigasi lebih enak) */
.scroll-up {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    z-index: 999;
}

.scroll-up.show {
    opacity: 1;
}

/* State Awal: Elemen tidak terlihat dan sedikit di bawah posisi aslinya */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* State Akhir: Elemen muncul sempurna */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Container Ikon */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Gaya Ikon Satuan */
.social-icons i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05); /* Kotak transparan gelap */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Sudut agak bulat (Rounded) */
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

/* Efek Hover (Saat kursor di atas ikon) */
.social-icons i:hover {
    background: var(--primary-red); /* Berubah jadi merah saat di-hover */
    color: #fff;
    transform: translateY(-5px); /* Efek melompat ke atas sedikit */
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.5);
}

/* Warna spesifik saat hover (Optional - mengikuti brand) */
.social-icons .fa-discord:hover { background: #5865F2; }
.social-icons .fa-youtube:hover { background: #FF0000; }
.social-icons .fa-instagram:hover { background: #E1306C; }

/* --- FAQ STYLE UPGRADE --- */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Jarak antar kotak FAQ */
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}

.q-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.q-text i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.q-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon Panah Animasi */
.toggle-icon {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.4s ease;
}

/* --- STATE SAAT FAQ TERBUKA (ACTIVE) --- */
.faq-item.active {
    background: rgba(231, 76, 60, 0.03); /* Background kemerahan tipis */
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.faq-item.active .faq-question {
    color: #fff;
}

/* Bagian Jawaban */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ukuran maksimal saat terbuka */
}

.answer-content {
    padding: 0 28px 25px 63px; /* Padding kiri lebih besar agar teks lurus dengan judul */
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Badge Kecil */
.badge-gold-small {
    background: var(--accent-yellow);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* --- TEAM SECTION UPGRADE --- */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    width: 280px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(231, 76, 60, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Avatar Glow Effect */
.avatar-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
}

.avatar-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: pulse-glow 3s infinite;
}

.coder-bg {
    background: radial-gradient(circle, rgba(52, 152, 219, 0.4) 0%, transparent 70%);
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.role-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.role {
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 600;
    background: rgba(231, 76, 60, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Team Social Icons - Box Style */
.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.team-social a:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    transform: scale(1.1);
}

/* Container Utama Team */
.team-container {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Jarak antara baris atas dan bawah */
    margin-top: 50px;
    align-items: center;
}

/* Pengaturan Umum untuk setiap baris */
.team-row {
    display: flex;
    justify-content: center;
    gap: 25px; /* Jarak antar kartu dalam satu baris */
    width: 100%;
    flex-wrap: wrap; /* Agar tetap rapi di HP */
}

/* Lebar kartu agar seragam */
.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    width: 280px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

/* Responsif untuk HP agar baris 2 & 3 tetap terlihat bagus */
@media (max-width: 768px) {
    .team-row {
        gap: 15px;
    }
}

/* --- HELP SECTION UPGRADE --- */
.help-container {
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
    display: flex;
    align-items: center;
}

.help-main-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 50px;
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.help-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.header-text h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.badge-moon {
    background: #f1c40f;
    color: #000;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.help-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Tombol Bantuan */
.help-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.btn-help {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: 0.3s all ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.btn-icon {
    font-size: 1.4rem;
    color: #fff;
}

.btn-text span {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.btn-text small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Warna Hover Tombol */
.btn-help.discord:hover { background: #5865F2; border-color: #5865F2; }
.btn-help.shop:hover { background: #e67e22; border-color: #e67e22; }
.btn-help.wa:hover { background: #25D366; border-color: #25D366; }

.btn-help:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Dekorasi Ikon Melayang */
.floating-decoration {
    position: absolute;
    right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.floating-cube {
    font-size: 180px;
    color: rgba(255, 255, 255, 0.02);
    transform: rotate(-15deg);
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .help-main-card { padding: 30px; }
    .floating-decoration { display: none; }
}

.connect-grid {
    display: grid;
    /* Membuat 2 kolom sejajar jika layar lebar */
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.connect-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.connect-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(231, 76, 60, 0.4);
    transform: translateY(-5px);
}

/* Pengaturan khusus untuk Mobile agar jadi 1 kolom saja */
@media (max-width: 850px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

.card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.25rem;
    font-weight: 700;
}

.card-head i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.step-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.step-num {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-red);
    min-width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.code-box {
    background: #0d0d0d;
    color: #2ecc71;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.85rem;
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow-x: auto;
}

.code-box.multi-line {
    display: block;
    white-space: pre-wrap; /* Menjaga baris baru tetap ada */
    line-height: 1.6;      /* Memberi jarak antar baris agar mudah dibaca */
    padding: 15px;
    background: #0d0d0d;
    color: #2ecc71;        /* Warna hijau khas coding */
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.step-content p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.code-desc {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}