/* ====================================================== */
/* 8. LAYOUT ADMIN DENGAN SIDEBAR */
/* ====================================================== */
.admin-body { background: var(--dark-bg); }
.admin-sidebar {
    width: 260px;
    background-color: var(--light-bg);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0;
    border-right: 1px solid var(--border-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}
.admin-sidebar .sidebar-logo { padding: 0 25px 25px 25px; text-align: center; border-bottom: 1px solid var(--border-color); }
.admin-sidebar .sidebar-logo a { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--text-primary); text-decoration: none; }
.admin-sidebar .sidebar-nav { list-style: none; padding: 0; margin: 20px 0; flex-grow: 1; }
.admin-sidebar .sidebar-nav a {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.admin-sidebar .sidebar-nav a:hover, .admin-sidebar .sidebar-nav a.active {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    border-left: 4px solid var(--primary-color);
}
.admin-sidebar .sidebar-nav a i { margin-right: 15px; width: 25px; text-align: center; font-size: 1.1rem; }
.admin-sidebar .sidebar-footer { padding: 20px 0; border-top: 1px solid var(--border-color); }
.admin-sidebar .sidebar-footer a { display: block; text-align: center; padding: 10px 0; color: var(--text-secondary); }
.admin-content {
    padding: 30px;
    margin-left: 60px; /* Lebar sidebar */
}
/* Tampilan mobile untuk admin */
@media (max-width: 992px) {
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .admin-sidebar.active { transform: translateX(0); }
    .admin-content { margin-left: 0; }
    /* Nanti kita tambahkan tombol hamburger khusus untuk admin di sini */
}

/* =================================
   1. GLOBAL & ROOT VARIABLES
   ================================= */

:root {
    --primary-color: #00aef3;
    --secondary-color: #0b2e4f;
    --dark-bg: #121218;
    --light-bg: #1c1c24;
    --text-primary: #ffffff;
    --text-secondary: #c0c0e0;
    --border-color: #333344;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(160deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    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;
}

a:hover {
    text-decoration: underline;
}


/* =================================
   2. TYPOGRAPHY
   ================================= */

h1 {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-weight: 800;
    margin: 20px 0 15px 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    margin-bottom: 50px;
    font-weight: 700;
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px; /* Using the larger value from the provided styles */
    margin-left: auto;
    margin-right: auto;
}
/* ====================================================== */
/* 2. HEADER & NAVIGASI (MOBILE-FRIENDLY) */
/* ====================================================== */
header { padding: 15px 0; background-color: rgba(18, 18, 24, 0.85); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; }
.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; }
.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(18, 18, 24, 0.98); overflow-x: hidden; transition: 0.3s ease-in-out; backdrop-filter: blur(10px); }
.mobile-nav-content { position: relative; top: 25%; width: 100%; text-align: center; margin-top: 30px; }
.mobile-nav-content a { padding: 15px; text-decoration: none; font-size: 2rem; 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; }



/* =================================
   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;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* =================================
   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);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    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 25px rgba(0, 174, 243, 0.4);
    text-decoration: none;
    color: white;
}

.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: 50px;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}


/* =================================
   6. CATEGORY GRID
   ================================= */

#game-showcase {
    padding-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 kolom */
    gap: 20px;
    margin-top: 40px;
}

.category-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;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.category-card .thumbnail-container {
    width: 100%;
    padding-top: 75%; /* Aspect ratio 4:3 */
    position: relative;
    background-color: #333;
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-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%);
}

.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);
}

@media (min-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* ====================================================== */
/* 3. GRID & KARTU KONSISTEN (UNTUK SEMUA HALAMAN) */
/* ====================================================== */
.card-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 kolom */
}
@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: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    display: flex;
    flex-direction: column;
}
.game-card:hover, .category-card:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.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.3s ease; }
.game-card:hover img, .category-card:hover img { transform: scale(1.1); }
.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%); }
.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, 174, 243, 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: #fff; 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);
}