* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0e0e0e;
    color: #ffffff;
}

/* =========================
VARIABEL GLOBAL (Untuk Konsistensi)
========================= */
:root {
    --primary-green: #79ce18;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0e0e0e;
    --bg-light: #f4f4f4;
    --shadow: rgba(0, 0, 0, 0.35);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    gap: 70px;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left:10px;
}

.logo img {
    height: 90px;
    width: auto;
}
.logo-text {
    color: var(--text-light);
    font-size: 17px;
    font-weight: 700;
    margin-left: 10px;
    align-items: center;
    display: flex;
    
}
.navbar a
{
color: white;
text-decoration: none;
font-weight: 700;
font-size: 19px;
}
/* ===== DROPDOWN ===== */
.navbar nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.navbar-logo {
    height: 30px;           /* tinggi navbar tetap */
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;      /* biar logo bisa keluar */
}

/* GAMBAR LOGO */
.navbar-logo img {
    height: 60px;           /* BESARIN LOGO */
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.navbar-logo img {
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

/* HERO */
.hero
{
position: relative;
width: 100%;
height: 700px;
margin: 61px auto 0;
border-radius: 20px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
padding: 5;
background: #ffffff;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(251, 251, 251, 0.6),
        rgba(255,255,255,1)
    );
    z-index: 5;
    pointer-events: none;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.slide.active img {
    animation: zoom 8s ease forwards;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2));
}

/* HERO CONTENT */
.hero-content {
    position: absolute;
    bottom: 30%;
    left: 10%;
    max-width: 500px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.primary {
    background: #79ce18;
    color: white;
}

/* NAV BUTTON */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    font-size: 28px;
    padding: 15px;
    cursor: pointer;
    z-index: 5;
}

.prev { left: 20px; }
.next { right: 20px; }

/* CONTENT */
.content-game
{
padding: 120px 8%;
background: linear-gradient(180deg,#ffffff,#f7f9fc);
}

.content-title
{
text-align: center;
margin-bottom: 70px;
}

.content-title h1
{
font-size: 42px;
color: #111;
margin-bottom: 12px;
}

.content-title p
{
font-size: 17px;
color: #666;
}

.content-container
{
max-width: 1200px;
margin: auto;
}

.content-card
{
background: white;
padding: 60px;
border-radius: 24px;
box-shadow: 0 25px 50px rgba(0,0,0,0.08);
border: 1px solid #ececec;
line-height: 1.8;
font-size: 16px;
color: #333;
}

.content-card p
{
margin-bottom: 20px;
}

.content-card .accent
{
background: #f4f6fb;
padding: 20px;
border-radius: 12px;
font-weight: 500;
}

.content-action
{
margin-top: 35px;
}

.see-more
{
display: inline-block;
padding: 12px 26px;
background: #111;
color: white;
text-decoration: none;
border-radius: 10px;
font-size: 14px;
transition: 0.3s;
}

.see-more:hover
{
background: #333;
}

.desc {
max-width: 900px;
margin: 30px auto 50px;
text-align: center;
font-size: 22px;
line-height: 1.9;
}
/*SPEK*/
.spek-game
{
padding: 120px 8%;
background: linear-gradient(180deg,#ffffff,#f7f9fc);
}

.spek-title
{
text-align: center;
margin-bottom: 70px;
}

.spek-title h1
{
font-size: 42px;
color: #111;
margin-bottom: 12px;
}

.spek-title p
{
font-size: 17px;
color: #666;
}

.spek-container
{
max-width: 1200px;
margin: auto;
}

.spek-card
{
background: white;
padding: 60px;
border-radius: 24px;
box-shadow: 0 25px 50px rgba(0,0,0,0.08);
border: 1px solid #ececec;
line-height: 1.8;
font-size: 16px;
color: #333;
}

.spek-card p
{
margin-bottom: 20px;
}

/* GARIS PEMBATAS */
.divider {
    width: 1px;
    background: #000000;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .specs {
        flex-direction: column;
    }

    .divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
        background: #ccc;
    }
    .logo {
        position: absolute !important;
        top: 20px !important;
        left: 20px !important;
        transform: translateY(-50%);
    }
    .logo img {
        height: 35px !important;
    }
    header.navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        padding: 15px 20px !important;
        z-index: 1000 !important;
        background: rgba(0,0,0,0.4) !important;
        display: flex !important;
        margin: 0 !important;
        padding: 20px !important;
        justify-content: flex-end !important;
        gap: 20px !important;
    }
    .hero {
        height: 500px !important; /* Pendekin dikit biar pas di layar HP */
    }
    .hero-content h1 {
        left: 5% !important;
        width: 90% !important;
        text-align: center;
    }
    .gallery-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .gallery-preview {
        height: 400px !important; /* Ukuran HP pas */
        width: 100% !important;
    }
    .gallery-thumbs {
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
        width: 100% !important;
    }
    .thumb {
        width: 80px !important;
        height: 55px !important;
    }
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
}

/* =========================
GALLERY SHOWCASE (Diperbesar)
========================= */
.gallery-showcase {
    padding: 120px 10%;
    background: linear-gradient(to bottom, #f4f4f4, #ffffff);
    color: #333;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* PREVIEW (Diperbesar dari 520px ke 650px) */
.gallery-preview {
    position: relative;
    flex: 1;
    height: 650px; /* Diperbesar dari 520px */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
}

.gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
    color: white;
}

.preview-overlay h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.preview-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* DOWNLOAD */
.download-btn {
    padding: 14px 36px;
    background: #79ce18;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(40,167,69,.4);
}

/* THUMBNAILS (Diperbesar dari 140px x 90px ke 180px x 115px) */
.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumb {
    width: 180px; /* Diperbesar dari 140px */
    height: 115px; /* Diperbesar dari 90px */
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: all .3s ease;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* =========================
GALLERY NAV BUTTONS MINIMALIS
========================= */
.preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: transparent;
    border: none;
    padding: 0 12px;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0; /* Default tersembunyi */
}

.preview-nav.prev { left: 10px; }
.preview-nav.next { right: 10px; }

.preview-nav:hover {
    transform: translateY(-50%) scale(1.2);
    background: transparent;
}

.gallery-preview:hover .preview-nav {
    opacity: 1;
}




/* ================= SECTION TITLE (GLOBAL) ================= */
.section-title {
    padding: 80px;
    background: #ffffff;
    text-align: center;
}


.section-title h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

.section-title--merchandise {
    margin-top: -60px;
}
/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 8%;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left h4,
.footer-center h4,
.footer-right h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-line {
    width: 60px;
    height: 2px;
    background: #bbb;
    margin: 10px 0 20px;
}

.footer-left p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-left .privacy {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
}

.footer-left .privacy:hover {
    color: #fff;
}

/* CENTER */
.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li {
    margin-bottom: 8px;
}

.footer-center ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-center ul li a:hover {
    color: #fff;
}

/* RIGHT */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: #999696;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #79ce18;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #aaa;
}

/* LOGO */
.logo-img {
    width: 120px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-modern {
    background: #3c3f41;
    color: #ddd;
    padding-top: 60px;
}


/* ===== DROPDOWN ===== */
.navbar nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* CONTAINER */
.dropdown {
    position: relative;
}

/* BUTTON */
.dropbtn {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}
/* ARROW */
.dropbtn::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* ROTATE ARROW */
.dropdown:hover .dropbtn::after {
    transform: rotate(180deg);
}

/* DROPDOWN BOX */
.dropdown-content {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    pointer-events: none;

    background: rgba(20,20,20,0.85);
    backdrop-filter: blur(12px);
    min-width: 200px;
    border-radius: 12px;
    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.05);

    transition: all 0.35s ease;
    z-index: 999;
}

/* SHOW */
.dropdown-content.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}


/* ITEM */
.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* SEPARATOR */
.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* HOVER EFFECT */
.dropdown-content a:hover {
    background: linear-gradient(90deg, #79ce18);
    color: #000;
    padding-left: 26px;
}
