/* Google Fonts & Base Variables */
:root {
    --bg-dark: #080d26;
    --bg-dark-secondary: #0d153b;
    --bg-light: #ffffff;
    --bg-light-secondary: #f3f6fc;

    --color-primary: #007bff;
    --color-primary-dark: #1e2866;
    --color-primary-light: #0088ff;
    --color-accent: #ffd000;
    --color-accent-hover: #e6b800;
    --color-border-light: #e5e7eb;
    --color-border-dark: rgba(255, 255, 255, 0.08);

    --text-light: #ffffff;
    --text-muted-light: rgba(255, 255, 255, 0.7);
    --text-dark: #111827;
    --text-muted-dark: #6b7280;

    --font-family: 'Outfit', sans-serif;
    --font-display: 'Russo One', sans-serif;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
}

/* CSS Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: #ffffff;
    background-image: url('bg.webp');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar-blur {
    background: var(--color-primary-dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 2px 20px rgba(8, 13, 38, 0.35);
    padding: 16px 0;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 91.666667%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    flex-shrink: 0;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: lowercase;
    font-family: var(--font-display);
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Mobile Toggle */
.mobile-menu-trigger {
    display: none;
}

.mobile-menu-trigger button {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Mobile Slide Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #1A2357;
    z-index: 200;
    padding: 96px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    transition: left var(--transition-normal);
}

.mobile-drawer.open {
    left: 0;
}

.drawer-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

.drawer-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: transparent;
    padding-top: 0;
    padding-bottom: 48px;
    color: #ffffff;
}

@media (min-width: 1200px) {
    .hero-visual {
        display: none;
    }
}

/* Grid lines pattern for Hero */
.hero-bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-overlay {
    width: 100%;
    height: 100%;
}

.hero-container {
    max-width: 1280px;
    width: 91.666667%;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 5;
}

.hero-flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 136px 0 100px;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-light);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-family: var(--font-display);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text-muted-light);
    max-width: 520px;
    line-height: 1.4;
}

.hero-platforms {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
}

/* Semua badge platform di-render dengan tinggi seragam, width auto
   supaya rapi tanpa peduli aspect ratio source image. */
.platform-logo-img,
.platform-logo-img-nintendo,
.platform-logo-img-dark,
.platform-logo-img-dark-nintendo {
    height: 38px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    transition: transform .15s ease, filter .15s ease;
}

.platform-logo-img:hover,
.platform-logo-img-nintendo:hover,
.platform-logo-img-dark:hover,
.platform-logo-img-dark-nintendo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 10px rgba(0, 136, 255, 0.4));
}

.hero-visual {
    z-index: 5;
    position: relative;
}

.hero-character-img {
    max-width: 525px;
    width: 100%;
    object-fit: contain;
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Hero Card — foto jadi background card, teks di atas */
.hero-card {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    min-height: 660px;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    clip-path: polygon(0 calc(100% - 7px), 100% calc(80% - 7px), 100% 80%, 0 100%);
    background: var(--color-primary);
    z-index: 4;
    pointer-events: none;
}

.hero-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.hero-card-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8,13,38,0.82) 25%, rgba(8,13,38,0.18) 75%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    z-index: 1;
    pointer-events: none;
}

/* Booking Bar — inside hero, below hero content */
.booking-section-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    z-index: 20;
    margin-top: -200px;
}

.booking-inner-container {
    width: 100%;
    max-width: 900px;
}

.booking-tab-header {
    background-color: var(--color-primary-dark);
    border-top: 4px solid var(--color-primary-light);
    border-left: 4px solid var(--color-primary-light);
    border-right: 4px solid var(--color-primary-light);
    color: var(--text-light);
    text-align: center;
    font-weight: 800;
    font-size: 1.15rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    margin: 0 auto -1px;
    position: relative;
    z-index: 10;
}

.triangle-icon {
    font-size: 0.9rem;
    opacity: 0.8;
}

.booking-card-body {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.35);
}

.booking-form-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
}

.field-group {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.field-label i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.field-label h3 {
    font-size: 0.9rem;
    font-weight: 600;
}

.field-input {
    width: 100%;
    background-color: var(--bg-light);
    color: #1f2937;
    border: none;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    outline: none;
    transition: var(--transition-fast);
}

.field-input:focus {
    box-shadow: 0 0 0 2px var(--color-accent);
}

.booking-submit-btn {
    background-color: var(--color-accent);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color var(--transition-fast);
    flex: 0 0 auto;
}

.booking-submit-btn:hover {
    background-color: var(--color-accent-hover);
}

/* White contrast background */
.white-sections-container {
    background-color: transparent;
    color: var(--text-dark);
    padding-top: 40px;
    position: relative;
    z-index: 5;
}

/* Steps section */
.step-indicator-wrapper {
    max-width: 864px;
    margin: 0 auto;
    padding: 20px;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 12px;
}

.step-connector {
    flex: 0 1 80px;
    height: 2px;
    background-image: linear-gradient(to right, #00447f 50%, transparent 50%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    margin-top: 24px;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

.step-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.step-column-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Games Section */
.games-ticker-strip {
    margin-top: 48px;
    padding: 16px 0 0;
}

.games-ticker-strip .poster-title {
    display: none;
}

.games-ticker-strip .game-poster-card img {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.games-marquee-section {
    margin-top: 80px;
    padding: 40px 0;
    background-color: transparent;
}

.section-heading-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.heading-gamepad-icon {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.7);
}

.heading-dark-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.heading-dark-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted-dark);
    margin-top: 6px;
    text-align: center;
}

/* Marquee core */
.marquee-wrapper {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    width: 100%;
    padding: 16px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-wrapper::-webkit-scrollbar {
    display: none !important;
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    overflow: hidden !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.marquee-track::-webkit-scrollbar {
    display: none !important;
}

.marquee-track:hover {
    --ticker-paused: 1;
}

.game-poster-card {
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.game-poster-card img {
    width: 100px;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform var(--transition-fast);
}

.game-poster-card:hover img {
    transform: scale(1.05);
}

.poster-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    color: var(--text-dark);
}

.marquee-platforms-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.dark-platform-badge {
    background-color: #e5e7eb;
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 30px;
}

/* Rooms section */
.rooms-section {
    max-width: 1280px;
    width: 91.666667%;
    margin: 32px auto 0;
    padding-bottom: 40px;
}

.filters-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-pills {
    display: flex;
    gap: 12px;
}

.filter-pill {
    background-color: #e5e7eb;
    color: #4b5563;
    border: none;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition-fast);
}

.filter-pill.active {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.search-bar-wrapper {
    position: relative;
    max-width: 250px;
    width: 100%;
}

.search-input {
    width: 100%;
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--color-border-light);
    color: var(--text-dark);
    padding: 10px 40px 10px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none;
    font-family: var(--font-family);
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--color-primary);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--text-muted-dark);
}

/* Room Cards Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.room-card-v2 {
    background-color: var(--bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.room-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.room-card-img-box {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #000;
}

.room-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.room-card-v2:hover .room-card-img-box img {
    transform: scale(1.04);
}

.room-card-body-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.room-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

/* Add-on chips — Free Netflix, Mini Karaoke, Full AC, dll. */
.room-addons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.addon-chip {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-light, #f3f4f6);
    color: var(--color-primary);
    border: 1px solid rgba(0, 136, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Smoking policy variants */
.addon-chip.chip-nosmoking {
    background-color: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.30);
}

.addon-chip.chip-smoking {
    background-color: rgba(245, 158, 11, 0.10);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.30);
}

/* Spec rows — label kiri, value kanan, plain text */
.room-specs {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 6px 14px;
    margin: 0 0 20px;
    flex-grow: 1;
    align-items: baseline;
}

.room-specs dt {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 2px;
}

.room-specs dd {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.45;
}

.room-card-select-btn {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-family);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.room-card-select-btn:hover {
    opacity: 0.9;
}

/* Branch Section */
.branch-section {
    max-width: 1280px;
    width: 91.666667%;
    margin: 80px auto 0;
    padding-bottom: 120px;
}

.branch-cards-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.branch-card-v2 {
    position: relative;
    width: 100%;
    max-width: 426px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.branch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.branch-badge {
    position: absolute;
    bottom: 32px;
    left: 0;
    background-color: var(--bg-light);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    padding: 12px 24px 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.branch-badge i {
    font-size: 1.6rem;
    color: #1E1E77;
}

.branch-badge-text {
    display: flex;
    flex-direction: column;
}

.branch-badge-text .city {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e1e77;
    line-height: 1.1;
}

.branch-badge-text .loc {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e1e77;
}

/* Interactive Receipt Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--color-border-dark);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 32px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted-light);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-light);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.success-check-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-muted-light);
    font-size: 0.85rem;
}

/* Ticket Design */
.receipt-ticket {
    background-color: var(--bg-dark);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    overflow: hidden;
}

.ticket-top {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border-dark);
}

.ticket-brand {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-id {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.ticket-fields {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.lbl {
    color: var(--text-muted-light);
}

.val {
    color: var(--text-light);
    font-weight: 600;
}

.ticket-separator {
    position: relative;
    height: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.circle-cutout {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-dark-secondary);
    position: absolute;
    z-index: 2;
}

.left-cut {
    left: -10px;
    border-right: 1px solid var(--color-border-dark);
}

.right-cut {
    right: -10px;
    border-left: 1px solid var(--color-border-dark);
}

.dot-dash-line {
    width: 100%;
    border-bottom: 2px dashed var(--color-border-dark);
}

.ticket-bottom {
    padding: 20px;
}

.total-amount-row {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.final-total-price {
    color: var(--color-accent);
    font-weight: 800;
}

.ticket-barcode-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.barcode-lines {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(90deg, 
        rgba(255,255,255,0.3), 
        rgba(255,255,255,0.3) 2px, 
        transparent 2px, 
        transparent 5px,
        rgba(255,255,255,0.3) 5px,
        rgba(255,255,255,0.3) 8px,
        transparent 8px,
        transparent 10px
    );
}

.barcode-caption {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--text-muted-light);
}

.confirm-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 24px;
    transition: opacity var(--transition-fast);
}

.confirm-wa-btn:hover {
    opacity: 0.9;
}

.footer-section {
    background-color: #050715;
    background-image: radial-gradient(ellipse at top, rgba(0,136,255,0.15) 0%, transparent 60%);
    color: var(--text-light);
    border-top: 1px solid var(--color-border-dark);
    padding-top: 100px;
}

.footer-container {
    max-width: 1280px;
    width: 91.666667%;
    margin: 0 auto;
    padding-bottom: 60px;
}

.footer-grid-row {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-col-brand {
    width: 100%;
    max-width: 600px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-controller {
    font-size: 2.2rem;
    color: var(--color-primary-light);
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    box-shadow: 0 4px 12px -4px rgba(0, 136, 255, 0.4);
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: lowercase;
}

.footer-brand-body {
    margin-top: 24px;
}

.footer-welcome-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-text-justify {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted-light);
    text-align: justify;
}

.footer-platforms-badges-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.footer-col-links-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.footer-subcol {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    text-decoration: none;
    color: var(--text-muted-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--text-light);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.4rem;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--color-primary);
}

.footer-terms-link {
    color: var(--text-muted-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-terms-link:hover {
    color: var(--text-light);
}

.footer-location-btn {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition-fast);
    width: fit-content;
}

.footer-location-btn:hover {
    background-color: var(--text-light);
    color: #000;
}

.location-detail {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 8px;
}

.location-detail i {
    color: var(--text-light);
    margin-top: 4px;
}

.location-detail p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

/* Slogan outline */
.slogan-col {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.outlined-slogan {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-light);
    margin: 0;
}

.footer-bottom-bar {
    border-top: 1px solid var(--color-border-dark);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom-bar p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

/* Responsive Styling */
@media (min-width: 1024px) {
    .mobile-menu-trigger {
        display: none;
    }
    .footer-grid-row {
        flex-direction: row;
    }
    .footer-col-links-box {
        width: 50%;
    }
}

@media (max-width: 1023px) {
    .navbar-container {
        width: 95%;
    }
    .nav-links-desktop {
        display: none;
    }
    .mobile-menu-trigger {
        display: block;
    }
    .hero-card {
        border-radius: 0;
        min-height: 380px;
    }
    .hero-flex-row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 110px 0 80px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
        margin: 0 auto;
    }
    .hero-platforms {
        justify-content: center;
    }
    .hero-character-img {
        max-width: 280px;
        margin-top: 20px;
    }
    .step-label-title {
        font-size: 0.75rem;
    }
    .footer-container {
        width: 95%;
    }
}

@media (max-width: 767px) {
    /* Hero */
    .hero-section {
        padding-top: 0;
        padding-bottom: 12px;
    }
    .games-ticker-strip {
        margin-top: 20px;
    }
    .white-sections-container {
        padding-top: 16px;
    }
    .hero-card {
        border-radius: 0;
        min-height: 300px;
    }
    .hero-flex-row {
        padding: 96px 0 64px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 90%;
    }
    .hero-platforms {
        gap: 12px;
    }
    .platform-logo-img {
        max-width: 72px;
        max-height: 72px;
    }
    .platform-logo-img-nintendo {
        max-width: 32px;
        max-height: 32px;
    }
    .hero-visual {
        display: none;
    }
    /* Game catalog 3 kolom di mobile */
    .game-catalog-section {
        padding: 24px 12px 40px;
    }
    .game-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .game-catalog-card img,
    .game-card-no-cover {
        aspect-ratio: 2/3;
        width: 100%;
        height: auto;
    }

    /* Tipe ruangan — 2 kolom di mobile */
    .rooms-section {
        width: 100%;
        padding: 0 12px;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .room-card-img-box {
        aspect-ratio: 16/10;
    }
    .room-card-body-box {
        padding: 16px;
    }
    .room-card-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    .room-price-tag {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }
    .room-specs {
        grid-template-columns: 78px 1fr;
        gap: 5px 10px;
    }
    .room-specs dt {
        font-size: 0.66rem;
    }
    .room-specs dd {
        font-size: 0.85rem;
    }
    .addon-chip {
        font-size: 0.72rem;
        padding: 2px 8px;
    }

    /* Booking form stacks on mobile */
    .booking-section-wrapper {
        margin-top: -20px;
        padding: 0 12px;
    }
    .booking-card-body {
        padding: 16px 14px;
    }
    .booking-form-flex {
        gap: 10px;
    }
    .field-group {
        flex: 1 1 100%;
        min-width: 0;
    }
    .booking-submit-btn {
        width: 100%;
        text-align: center;
    }
    /* Steps */
    .step-connector {
        flex: 0 1 28px;
        margin-top: 20px;
    }
    .step-icon-img {
        width: 50px;
        height: 50px;
    }
    .step-column-title {
        font-size: 0.78rem;
    }
    .step-circle {
        width: 40px;
        height: 40px;
    }
    .step-number {
        font-size: 1.1rem;
    }
    .branch-card-v2 {
        height: 400px;
    }
}

/* ===== Dynamic Game Catalog ===== */
.game-catalog-section {
    padding: 16px 20px 60px;
    max-width: 1280px;
    width: 91.666667%;
    margin: 0 auto;
}

.catalog-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.catalog-tab {
    background-color: #e5e7eb;
    color: #4b5563;
    border: none;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-family);
    transition: var(--transition-fast);
}

.catalog-tab.active {
    background-color: var(--color-primary);
    color: #fff;
}

.game-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.catalog-show-more-row {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.catalog-show-more-btn {
    background-color: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.catalog-show-more-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-1px);
}

.catalog-show-more-btn i {
    font-size: 0.8rem;
}

.game-catalog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.13);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
}

.game-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.game-catalog-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
}

.game-card-no-cover {
    width: 100%;
    aspect-ratio: 2/3;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2.2rem;
}

.game-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
    padding: 28px 10px 10px;
}

.game-platform-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

.game-catalog-card .game-platform-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.game-catalog-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.game-patch-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.72);
    font-weight: 600;
    margin-top: 3px;
}

.game-patch-info i { font-size: 0.62rem; }

.game-detail-icon {
    position: absolute;
    top: 8px; right: 8px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.82rem;
    transition: background 0.15s, border-color 0.15s;
    line-height: 1;
}

.game-detail-icon:hover,
.game-detail-icon:focus-visible {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Skeleton loading */
.game-catalog-skeleton {
    aspect-ratio: 3/4;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}



/* ===== Game Detail Modal ===== */
.game-detail-box {
    max-width: 640px;
    width: 95%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 0;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--color-border-dark);
    border-radius: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.game-detail-box .modal-close-btn {
    position: sticky;
    top: 0;
    float: right;
    margin: 16px 16px 0 0;
    z-index: 10;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    transition: background .15s;
}

.game-detail-box .modal-close-btn:hover {
    background: rgba(255,255,255,0.16);
}

.game-detail-content {
    padding: 20px 24px 28px;
    clear: both;
}

.game-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.game-detail-cover {
    width: 88px;
    height: 117px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.game-detail-cover-placeholder {
    width: 88px;
    height: 117px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.game-detail-meta { flex: 1; min-width: 180px; }

.game-detail-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    margin-top: 4px;
    line-height: 1.3;
}

.game-detail-desc {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 16px;
    white-space: pre-line;
}

.game-detail-desc.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-detail-expand-btn {
    background: none;
    border: none;
    color: var(--color-primary-light);
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.game-detail-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted-light);
    margin-bottom: 10px;
    opacity: 0.7;
}

.game-screenshots {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.game-screenshots img {
    height: 110px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: start;
    cursor: pointer;
    transition: opacity .15s;
    border: 1px solid rgba(255,255,255,0.08);
}

.game-screenshots img:hover { opacity: .85; }

.game-detail-video {
    width: 100%;
    border-radius: 10px;
    max-height: 260px;
    background: #000;
    margin-bottom: 8px;
}

.game-detail-loading {
    text-align: center;
    padding: 48px 0;
    color: var(--text-muted-light);
}

.game-detail-loading i {
    font-size: 2rem;
    animation: spin .8s linear infinite;
}

.game-detail-empty {
    text-align: center;
    padding: 32px 0;
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

/* ===== Floating WhatsApp Button ===== */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 20px 14px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}

.floating-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.floating-wa i {
    font-size: 1.4rem;
}

/* ===== Submit Button Loading State ===== */
.booking-submit-btn[data-loading="true"] {
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
}

.booking-submit-btn[data-loading="true"] .btn-spinner {
    display: inline-block;
}

.btn-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(0,0,0,0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== WhatsApp Confirm Button Pulse ===== */
@keyframes waPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.confirm-wa-btn {
    animation: waPulse 2s ease-in-out infinite;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
