/* ====================================================== */
/* CSS BARU DENGAN TEMA "CYBER-TEAL FUSION"     */
/* ====================================================== */

/* ================================= 
   1. GLOBAL & ROOT VARIABLES 
   ================================= */

:root {
    /* [UBAHAN CYBER] Palet warna baru: Teal neon yang futuristik */
    --primary-color: #00F5C4;      /* Teal Neon */
    --secondary-color: #02AAB0;    /* Teal lebih gelap untuk gradasi */
    --dark-bg: #0D0D0D;            /* Latar belakang utama (hitam pekat) */
    --light-bg: #1A1A1A;           /* Latar belakang kartu/elemen */
    --text-primary: #EAEAEA;       /* Teks utama (putih terang) */
    --text-secondary: #A0A0A0;     /* Teks sekunder (abu-abu netral) */
    --border-color: #2D2D2D;       /* Warna border yang sangat gelap */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* [UBAHAN CYBER] Gradasi latar belakang disesuaikan dengan tema baru */
    background: var(--dark-bg); /* Latar belakang solid agar lebih fokus */
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    text-align: center;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 0px 0;
    background-color: transparent;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--primary-color); /* [UBAHAN CYBER] Efek glow pada link */
    text-decoration: none;
}


/* ================================= 
   2. TYPOGRAPHY 
   ================================= */

h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-weight: 800;
    margin: 20px 0 15px 0;
    /* [UBAHAN CYBER] Efek shadow glow neon pada teks */
    text-shadow: 0 0 15px rgba(0, 245, 196, 0.5);
}

h2 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary-color); /* [UBAHAN CYBER] Judul sub-seksi diberi warna primer */
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================== */
/* 2. HEADER & NAVIGASI (MOBILE-FRIENDLY) */
/* ====================================================== */
header {
    padding: 15px 0;
    background-color: rgba(13, 13, 13, 0.85); /* [UBAHAN CYBER] Warna disesuaikan */
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* [UBAHAN CYBER] Border bawah seperti HUD */
    border-bottom: 1px solid var(--primary-color);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo a { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-primary); text-decoration: none; transition: 0.3s; }
.nav-logo a:hover { color: var(--primary-color); text-shadow: 0 0 10px var(--primary-color); }
.nav-menu { display: none; }
@media (min-width: 992px) { .nav-menu { display: flex; } }
.nav-menu a { color: var(--text-primary); margin-left: 25px; font-weight: 600; }
.hamburger-menu { display: block; cursor: pointer; z-index: 1001; width: 30px; height: 30px; }
@media (min-width: 992px) { .hamburger-menu { display: none; } }
.mobile-nav-overlay { height: 100%; width: 0; position: fixed; z-index: 1002; top: 0; left: 0; background-color: rgba(13, 13, 13, 0.98); overflow-x: hidden; transition: 0.3s ease-in-out; backdrop-filter: blur(10px); }
.mobile-nav-content { position: relative; top: 2%; width: 100%; text-align: center; margin-top: 10px; }
.mobile-nav-content a { padding: 15px; text-decoration: none; font-size: 1.6rem; color: var(--text-secondary); display: block; transition: 0.3s; }
.mobile-nav-content a:hover, .mobile-nav-content a:focus { color: var(--primary-color); }
.mobile-nav-overlay .close-btn { position: absolute; top: 20px; right: 45px; font-size: 3rem; color: #fff; text-decoration: none !important; }

/* Tombol Menu Utama & Kategori di Mobile Nav disesuaikan */
.main-menu-item, .category-menu-item { border-radius: 8px; /* [UBAHAN CYBER] Sudut lebih tajam */ }
.main-menu-item:hover, .category-menu-item:hover { background-color: var(--primary-color); color: #000; }
.category-menu-item:hover i, .category-menu-item:hover span { color: #000; }


/* ================================= 
   4. HERO SECTION & ANIMATION 
   ================================= */
#hero { padding: 40px 20px 80px 20px; }
.animated-hero-svg { width: 180px; height: auto; margin-bottom: -20px; animation: floatAnimation 4s ease-in-out infinite; }
@keyframes floatAnimation { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.text-logo {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color); /* [UBAHAN CYBER] Warna solid untuk efek neon */
    text-shadow: 0 0 8px var(--primary-color);
}


/* ================================= 
   5. BUTTONS & FORMS 
   ================================= */
#search-container { margin-top: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
#search-input {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 25px;
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--light-bg);
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 245, 196, 0.4);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color); /* [UBAHAN CYBER] Warna solid, tanpa gradasi */
    color: #0D0D0D; /* Teks gelap agar kontras */
    padding: 12px 28px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 10px; /* [UBAHAN CYBER] Sudut lebih tajam */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
}
.cta-button:hover, .cta-button:focus {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 245, 196, 0.45);
    text-decoration: none;
    color: #0D0D0D;
}
.cta-button-secondary { display: inline-block; background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); padding: 16px 35px; text-decoration: none; font-size: 1.1rem; font-weight: 600; border-radius: 10px; transition: all 0.3s ease; margin-top: 25px; }
.cta-button-secondary:hover { background-color: var(--primary-color); color: #0D0D0D; text-decoration: none; }


/* ====================================================== */
/* 3. GRID & KARTU KONSISTEN (UNTUK SEMUA HALAMAN) */
/* ====================================================== */
.card-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .card-grid { grid-template-columns: repeat(4, 1fr); gap: 25px; } }

.game-card, .category-card {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px; /* [UBAHAN CYBER] Sudut lebih tajam */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    display: flex;
    flex-direction: column;
}
/* [UBAHAN CYBER] Efek baru: Neon glow yang lebih kuat */
.game-card:hover, .category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 245, 196, 0.3);
}
.game-card a, .category-card a { text-decoration: none; color: var(--text-primary); display: flex; flex-direction: column; height: 100%; }
.thumbnail-container { width: 100%; padding-top: 75%; position: relative; background-color: #333; }
.thumbnail-container img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; filter: saturate(1.1); }
.game-card:hover img, .category-card:hover img { transform: scale(1.1); filter: saturate(1.3); }
.thumbnail-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%); }
.category-card h3 { position: absolute; bottom: 15px; left: 15px; right: 15px; margin: 0; font-size: 1.2rem; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.game-card .details { position: absolute; bottom: 0; left: 0; right: 0; padding: 15px; text-align: left; }
.game-card h3 { margin: 0 0 5px 0; font-size: 1.1rem; text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
.game-card .category { font-size: 0.8rem; color: var(--text-secondary); font-weight: 400; }
.game-card .play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); width: 60px; height: 60px; background-color: rgba(0, 245, 196, 0.8); border-radius: 50%; display: flex; justify-content: center; align-items: center; opacity: 0; transition: all 0.3s ease; }
.game-card:hover .play-icon { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.game-card .play-icon svg { width: 30px; height: 30px; fill: #000; margin-left: 5px; }

/* ====================================================== */
/* 4. HALAMAN PERMAINAN (PLAY.PHP) & LAINNYA */
/* ====================================================== */
.play-area-container { max-width: 1280px; margin: 0 auto; }
.play-container { width: 100%; padding-top: 56.25%; position: relative; background-color: #000; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.play-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Ikon Fullscreen Baru di Dalam Frame */
#fullscreen-icon-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    background-color: rgba(28, 28, 36, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
#fullscreen-icon-btn:hover { background-color: var(--primary-color); border-color: var(--primary-color); }
#fullscreen-icon-btn svg { width: 20px; height: 20px; fill: #fff; }

/* Tombol Share di Bawah Frame */
.share-container { display: flex; gap: 10px; justify-content: center; margin: 30px 0; }
.share-button { background-color: var(--light-bg); border: 1px solid var(--border-color); color: var(--text-secondary); width: 45px; height: 45px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; display: inline-flex; justify-content: center; align-items: center; font-size: 1.1rem; text-decoration: none; }
.share-button:hover { background-color: var(--primary-color); border-color: var(--primary-color); color: white; transform: translateY(-3px); }

.game-details-grid { display: grid; grid-template-columns: 1fr; gap: 40px; text-align: left; }
@media (min-width: 768px) { .game-details-grid { grid-template-columns: 2fr 1fr; } }
.detail-box h3 { font-size: 1.5rem; color: var(--primary-color); margin-top: 0; border-bottom: 2px solid var(--border-color); padding-bottom: 10px; }
.detail-box p { max-width: 100%; margin-left: 0; font-size: 0.95rem; }

/* Sisa CSS lainnya... */
#hero { padding: 40px 20px 80px 20px; }
#search-container { margin-top: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
#search-input { width: 100%; box-sizing: border-box; padding: 15px 25px; font-size: 1.1rem; border: 1px solid var(--border-color); border-radius: 50px; background-color: var(--light-bg); color: var(--text-primary); }
.static-page { text-align: left; background-color: var(--light-bg); border-radius: 16px; padding: 40px; border: 1px solid var(--border-color); }
.static-page h1 { margin-top: 0; }
.footer { padding: 60px 20px 40px 20px; background-color: var(--dark-bg); }
.footer-nav { margin: 20px 0; }
.footer-nav a { margin: 0 15px; color: var(--text-secondary); }
#load-more-container { margin-top: 40px; }

/* =================================
   9. RELATED GAMES GRID
   ================================= */
   
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    background-color: var(--light-bg);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.related-card .thumbnail-container {
    width: 100%;
    padding-top: 75%;
    position: relative;
    background-color: #333;
}

.related-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover img {
    transform: scale(1.1);
}

.related-card .thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.related-card h3 {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    margin: 0;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* ====================================================== */
/* 8. HALAMAN IMPORTER (IMPORTER.PHP) */
/* ====================================================== */
.importer-step {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.importer-step h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
    table-layout: fixed;
}

.admin-table th, .admin-table td {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    text-align: left;
    vertical-align: middle;
    word-wrap: break-word;
}

.admin-table th {
    background-color: var(--dark-bg);
}

.admin-table img {
    max-width: 100px;
    border-radius: 8px;
    display: block;
}

/* =================================
   10. STATIC PAGE & FOOTER
   ================================= */

.static-page {
    text-align: left;
    background-color: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.static-page h1 {
    margin-top: 0;
}

.footer {
    padding: 60px 20px 40px 20px;
    background-color: var(--dark-bg);
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav a {
    margin: 0 15px;
    color: var(--text-secondary);
}