/* ==========================================================================
   PLAYHUBID — Cosmic Galaxy & Luxury Gold Apple Design (Multi-Page System)
   ========================================================================== */

:root {
    /* Cosmic Dark Color System */
    --bg-cosmic-black: #030306;
    --bg-cosmic-surface: #0a0912;
    --bg-glass-card: rgba(16, 14, 26, 0.94);
    --bg-glass-card-hover: rgba(24, 20, 38, 0.98);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-gold-subtle: rgba(212, 175, 55, 0.3);
    --border-gold-bright: rgba(255, 223, 115, 0.7);

    /* Luxury Gold Gradient Palette */
    --gold-primary: #D4AF37;
    --gold-bright: #FFDF73;
    --gold-deep: #A87920;
    --gold-gradient: linear-gradient(135deg, #FFF0A5 0%, #D4AF37 50%, #8C6512 100%);
    --gold-glow-gradient: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0) 70%);

    /* Apple Titanium / Silver Palette */
    --apple-gray: #86868b;
    --apple-dark-gray: #1d1d1f;
    --apple-light-text: #f5f5f7;
    --apple-dim-text: #a1a1a6;

    /* Spacing & Radii (Apple-esque Curvature) */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-full: 9999px;

    /* Transitions & Physics */
    --apple-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --spring-ease: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Base Reset & Natural Smooth Page Scroll */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-cosmic-black);
    color: var(--apple-light-text);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
    background-color: var(--bg-cosmic-black);
    color: var(--apple-light-text);
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--gold-primary);
    color: var(--bg-cosmic-black);
}

/* Page Layout Container with Natural Scroll */
.page-single-screen {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    position: relative;
}

.page-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 85px;   /* Proporsi pas & presisi */
    padding-bottom: 110px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================================================
   Cosmic Canvas & Glow Background Elements
   ========================================================================== */
#galaxy-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

#cosmic-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, rgba(138, 77, 255, 0.04) 40%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.nebula-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.nebula-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: floatingOrb 18s ease-in-out infinite alternate;
}

.gold-nebula-1 {
    top: 10%;
    left: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
}

.gold-nebula-2 {
    bottom: 20%;
    right: 10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, #a87920 0%, transparent 70%);
    animation-delay: -5s;
}

.violet-nebula {
    top: 45%;
    left: 50%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #5e2ca5 0%, transparent 70%);
    animation-delay: -9s;
    opacity: 0.2;
}

@keyframes floatingOrb {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.1); }
    100% { transform: translateY(30px) scale(0.95); }
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.gold-text {
    color: var(--gold-primary);
}

.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-bright);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-tag i {
    width: 13px;
    height: 13px;
}

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

.section-heading {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

/* Apple Frosted Glass Card */
.glass-card {
    background: var(--bg-glass-card);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--apple-ease);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    border-color: var(--border-gold-subtle);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   Header (Apple Glass Nav Bar)
   ========================================================================== */
.glass-header {
    position: fixed;
    top: 8px;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
}

.header-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    background: rgba(14, 12, 22, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
}

.brand-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}

.header-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--apple-dim-text);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 6px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-discord-mini {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-discord-mini:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.5);
    color: #5865F2;
}

.btn-apple-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--gold-gradient);
    color: #0d0c08;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s var(--apple-ease);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-apple-gold:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-apple-gold i {
    width: 12px;
    height: 12px;
}

/* ==========================================================================
   Social Glass Sidebar
   ========================================================================== */
.social-glass-dock {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 5px;
    background: rgba(14, 12, 22, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    z-index: 90;
}

.social-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--apple-dim-text);
    border-radius: 50%;
    transition: all 0.3s var(--spring-ease);
    text-decoration: none;
}

.social-item:hover {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.15) translateX(3px);
}

.social-item i {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   PAGE: BERANDA (HERO)
   ========================================================================== */
.hero-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-big-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.65));
    animation: gentleFloat 4s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    from { transform: translateY(0px); }
    to { transform: translateY(-7px); }
}

.welcome-txt {
    display: block;
    font-size: clamp(0.9rem, 1.4vw, 1.15rem);
    font-weight: 500;
    color: var(--apple-dim-text);
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-title-group {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-title {
    margin-bottom: 14px;
}

.brand-main {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.brand-dot {
    color: var(--gold-bright);
}

.brand-alt {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-desc {
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    color: var(--apple-dim-text);
    max-width: 620px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

/* Gold Button Primary */
.btn-gold-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold-gradient);
    color: #0b0a08;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s var(--apple-ease);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.55);
}

.btn-gold-primary i {
    width: 15px;
    height: 15px;
}

.btn-gold-primary.full-width {
    width: 100%;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    25% { left: 200%; }
    100% { left: 200%; }
}

/* Live Season & Status Pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    font-size: 0.76rem;
    backdrop-filter: blur(16px);
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
    70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.badge-tag-gold {
    font-weight: 800;
    color: var(--gold-bright);
    letter-spacing: 1px;
}

.badge-separator {
    color: var(--apple-dim-text);
}

.badge-sub {
    color: #a1a1a6;
    font-weight: 500;
}

.logo-ambient-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
    filter: blur(25px);
    pointer-events: none;
}

.hero-motto {
    color: #ffffff;
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Discord Hero Button */
.btn-discord-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: rgba(88, 101, 242, 0.15);
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: var(--radius-full);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s var(--apple-ease);
}

.btn-discord-hero:hover {
    background: rgba(88, 101, 242, 0.3);
    border-color: #5865F2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

/* Hero Feature Trio (Interactive Cards) */
.hero-feature-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    width: 100%;
    margin-bottom: 24px;
}

.feature-trio-card {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    text-align: left;
    background: rgba(14, 12, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.35s var(--apple-ease);
}

.feature-trio-card:hover {
    border-color: var(--border-gold-subtle);
    transform: translateY(-4px);
    background: rgba(22, 18, 35, 0.9);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.trio-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trio-icon-wrap i {
    width: 20px;
    height: 20px;
}

.gold-glow-icon {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-bright);
    border: 1px solid var(--border-gold-subtle);
}

.violet-glow-icon {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.cyan-glow-icon {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.trio-text h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.trio-text p {
    font-size: 0.73rem;
    color: var(--apple-dim-text);
    line-height: 1.3;
}

/* ==========================================================================
   PAGE: HOME EXTENDED INTERACTIVE SECTIONS
   ========================================================================== */
.home-scroll-section {
    width: 100%;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-section-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin: 6px 0 8px;
}

.home-section-subtitle {
    font-size: 0.88rem;
    color: var(--apple-dim-text);
    margin-bottom: 24px;
    max-width: 600px;
}

/* Factions Hub Grid (4 Kolom) */
.factions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}

.faction-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    min-height: 230px;
    background: rgba(14, 12, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faction-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.faction-icon-badge i {
    width: 24px;
    height: 24px;
}

.police-badge { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.ems-badge { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.gang-badge { background: rgba(249, 115, 22, 0.15); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.3); }
.biz-badge { background: rgba(212, 175, 55, 0.15); color: var(--gold-bright); border: 1px solid var(--border-gold-subtle); }

.faction-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.faction-card p {
    font-size: 0.76rem;
    color: var(--apple-dim-text);
    line-height: 1.4;
    margin-bottom: 14px;
}

.faction-perk-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--apple-light-text);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
}

/* Interactive Mini-Game Box */
.minigame-container {
    width: 100%;
    max-width: 860px;
    padding: 36px 32px;
    background: rgba(14, 12, 22, 0.92);
    border: 1px solid var(--border-gold-subtle);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

.minigame-header {
    margin-bottom: 24px;
}

.minigame-header h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 8px 0 4px;
}

.minigame-header p {
    font-size: 0.85rem;
    color: var(--apple-dim-text);
}

.quiz-question {
    font-size: 1.05rem;
    color: #ffd866;
    margin-bottom: 18px;
    font-weight: 700;
}

.quiz-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quiz-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #f5f5f7;
    font-size: 0.82rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s var(--apple-ease);
}

.opt-letter {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-bright);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quiz-option-btn:hover {
    border-color: var(--border-gold-bright);
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* Quiz Result Card */
.quiz-result-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold-bright);
    animation: fadeIn 0.4s ease;
}

.result-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.result-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.result-desc {
    font-size: 0.88rem;
    color: #e2e2e8;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 20px;
}

.result-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-quiz-retry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-quiz-retry:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-quiz-retry i {
    width: 15px;
    height: 15px;
}

/* FAQ Accordion List */
.faq-accordion-list {
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.faq-item {
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    background: rgba(14, 12, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--apple-ease);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.faq-arrow {
    width: 18px;
    height: 18px;
    color: var(--gold-bright);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-answer p {
    font-size: 0.82rem;
    color: var(--apple-dim-text);
    line-height: 1.5;
}

.faq-item.active {
    border-color: var(--border-gold-subtle);
    background: rgba(22, 18, 36, 0.9);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Bottom Closing CTA */
.home-footer-cta {
    width: 100%;
    margin-top: 60px;
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(10, 8, 18, 0.9) 100%);
    border: 1px solid var(--border-gold-subtle);
    text-align: center;
}

.closing-title {
    font-size: clamp(1.4rem, 2.3vw, 1.9rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.home-footer-cta p {
    font-size: 0.86rem;
    color: var(--apple-dim-text);
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .factions-grid {
        grid-template-columns: 1fr 1fr;
    }
    .quiz-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .factions-grid {
        grid-template-columns: 1fr;
    }
}

.copy-ip-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed var(--border-gold-subtle);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-ip-box:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
}

.ip-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--apple-dim-text);
}

.ip-address {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gold-bright);
}

.copy-icon {
    width: 14px;
    height: 14px;
    color: var(--apple-dim-text);
}

/* Quick Server Info Box */
.quick-server-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 10px 24px;
    background: rgba(14, 12, 22, 0.6);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
}

.info-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-num {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--gold-bright);
}

.metric-label {
    font-size: 0.65rem;
    color: var(--apple-dim-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   PAGE: TENTANG (BENTO GRID)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.bento-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card-lg {
    grid-column: span 1;
}

.bento-card-md {
    grid-column: span 1;
}

.bento-bg-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.15;
}

.gold-spotlight {
    background: radial-gradient(circle, var(--gold-primary), transparent 70%);
}

.gold-spotlight-subtle {
    background: radial-gradient(circle, #ffe699, transparent 70%);
}

.bento-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.bento-icon i {
    width: 18px;
    height: 18px;
}

.bento-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.bento-content p {
    font-size: 0.82rem;
    color: var(--apple-dim-text);
    line-height: 1.4;
    margin-bottom: 12px;
}

.bento-pill-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bento-pill {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--apple-light-text);
}

.career-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.career-tags span {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-bright);
}

/* ==========================================================================
   PAGE: GALERI (CINEMA DISPLAY)
   ========================================================================== */
.gallery-grid {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.cinema-display-wrapper {
    padding: 8px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
}

.display-inner-screen {
    width: 100%;
    height: 340px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 14, 25, 0.6) 0%, rgba(8, 7, 14, 0.95) 100%),
                radial-gradient(circle at center, rgba(212, 175, 55, 0.18), transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.screen-overlay {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.play-button-ambient {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0c0a06;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s var(--spring-ease);
    margin-bottom: 4px;
}

.play-button-ambient:hover {
    transform: scale(1.12);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.85);
}

.play-button-ambient i {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.screen-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--gold-bright);
}

.screen-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.screen-overlay p {
    font-size: 0.85rem;
    color: var(--apple-dim-text);
}

/* ==========================================================================
   PAGE: MEMBERSHIP BROCHURE CATALOG BY CATEGORY
   ========================================================================== */
.membership-catalog-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.catalog-container {
    max-width: 1040px;
    width: 100%;
    margin-top: 0;
}

.catalog-top-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-bottom: 16px;
    text-align: center;
}

.catalog-title-group .section-tag {
    margin-bottom: 6px;
}

.catalog-title-group .section-heading {
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    margin-bottom: 10px;
}

/* Category Pill Chips */
.category-pill-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(14, 12, 22, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    color: var(--apple-dim-text);
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s var(--apple-ease);
}

.cat-pill i {
    width: 13px;
    height: 13px;
}

.cat-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.cat-pill.active {
    color: #0c0a06;
    background: var(--gold-gradient);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.35);
}

/* Category Panels */
.category-panel {
    display: none;
    animation: fadeInCat 0.35s ease;
}

.category-panel.active {
    display: block;
}

@keyframes fadeInCat {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Brochure Showcase Card */
.brochure-showcase {
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(14, 12, 22, 0.75);
}

/* Banner Visual Brosur */
.brochure-banner {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.banner-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-gold-subtle);
    color: var(--gold-bright);
}

.brochure-banner h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.brochure-banner p {
    font-size: 0.82rem;
    color: var(--apple-dim-text);
    max-width: 650px;
    line-height: 1.4;
}

/* Banner Gradients Per Category (Brosur Vibe) */
.banner-playhub {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(30, 20, 60, 0.8) 100%),
                radial-gradient(circle at top right, rgba(212, 175, 55, 0.35), transparent 70%);
}

.banner-house {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(20, 30, 65, 0.8) 100%),
                radial-gradient(circle at top right, rgba(56, 189, 248, 0.35), transparent 70%);
}

.banner-vehicle {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(50, 15, 30, 0.8) 100%),
                radial-gradient(circle at top right, rgba(239, 68, 68, 0.35), transparent 70%);
}

.banner-limited {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(35, 10, 50, 0.8) 100%),
                radial-gradient(circle at top right, rgba(212, 175, 55, 0.4), transparent 70%);
}

/* Tier Catalog Grid */
.tier-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.tier-card-clean {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.tier-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.tier-name {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 4px;
    color: var(--apple-light-text);
}

.tier-price {
    font-size: 1.55rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

.tier-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--apple-dim-text);
}

.tier-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    min-height: 110px;
}

.tier-perks li {
    font-size: 0.76rem;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: var(--apple-light-text);
    line-height: 1.35;
}

.tier-perks li i {
    width: 13px;
    height: 13px;
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-tier-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    transition: all 0.3s ease;
}

.btn-tier-action:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-tier-action i {
    width: 13px;
    height: 13px;
}

/* Responsive */
@media (max-width: 900px) {
    .category-pill-bar {
        border-radius: var(--radius-md);
    }
    .tier-catalog-grid {
        grid-template-columns: 1fr;
    }
    .tier-perks {
        min-height: auto;
    }
}

/* ==========================================================================
   CARA CLAIM & RULES ENHANCED STYLING (Apple Step Flow)
   ========================================================================== */
.claim-hero-banner {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(20, 16, 35, 0.8) 100%);
    border: 1px solid var(--border-gold-subtle);
}

.claim-hero-banner h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.claim-hero-banner p {
    font-size: 0.8rem;
    color: var(--apple-dim-text);
}

/* 6-Step Visual Flow Grid */
.steps-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.step-flow-card {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: var(--radius-md);
    background: rgba(18, 15, 28, 0.7);
    border: 1px solid var(--border-glass);
    transition: all 0.3s var(--apple-ease);
}

.step-flow-card:hover {
    border-color: var(--border-gold-subtle);
    transform: translateY(-2px);
    background: rgba(26, 22, 40, 0.85);
}

.step-flow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.step-circle-badge {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--gold-gradient);
    color: #0c0a06;
    font-size: 0.7rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 15px;
    height: 15px;
    color: var(--gold-bright);
}

.step-flow-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.step-flow-card p {
    font-size: 0.73rem;
    color: var(--apple-dim-text);
    line-height: 1.35;
}

/* Prominent Warning Banner */
.alert-prominent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon-wrap i {
    width: 16px;
    height: 16px;
}

.alert-content strong {
    display: block;
    font-size: 0.76rem;
    color: #fca5a5;
    letter-spacing: 1px;
    margin-bottom: 1px;
}

.alert-content p {
    font-size: 0.72rem;
    color: #fecaca;
    line-height: 1.3;
    margin: 0;
}

/* Bottom Row: Ketentuan & Thank You */
.guide-bottom-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 12px;
}

.rules-clean-box, .thankyou-clean-box {
    padding: 16px 18px;
    border-radius: var(--radius-md);
}

.box-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-bright);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.box-title i {
    width: 15px;
    height: 15px;
}

.rules-list-stylish {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rules-list-stylish li {
    font-size: 0.74rem;
    color: var(--apple-dim-text);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.3;
}

.rules-list-stylish li span {
    color: var(--gold-bright);
    font-weight: 800;
}

.thankyou-clean-box p {
    font-size: 0.74rem;
    color: var(--apple-dim-text);
    line-height: 1.35;
    margin-bottom: 10px;
}

.motto-chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold-subtle);
    border-radius: var(--radius-sm);
}

.motto-chip strong {
    font-size: 0.76rem;
    color: var(--gold-bright);
}

.motto-chip small {
    font-size: 0.7rem;
    color: var(--apple-light-text);
    font-style: italic;
}

/* ==========================================================================
   PAGE: DEDICATED DETAIL MEMBERSHIP (Stand-alone Modal Layout)
   ========================================================================== */
.modal-detail-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #05040a;
    color: var(--apple-light-text);
    overflow-x: hidden;
}

/* Minimal Top Bar Detail */
.detail-top-nav {
    width: 100%;
    padding: 16px 24px;
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(14, 12, 22, 0.85);
    backdrop-filter: blur(20px);
}

.detail-nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.25s var(--apple-ease);
}

.btn-detail-back:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--border-gold-bright);
    color: var(--gold-bright);
    transform: translateX(-3px);
}

.btn-detail-back i {
    width: 15px;
    height: 15px;
}

.detail-brand-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.detail-brand-minimal img {
    height: 28px;
    width: auto;
}

.btn-detail-help {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--apple-dim-text);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.btn-detail-help:hover {
    color: var(--gold-bright);
}

.btn-detail-help i {
    width: 16px;
    height: 16px;
}

/* Main Detail Content */
.detail-page-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.detail-showcase-box {
    max-width: 1060px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
}

/* Left Card (Visual Showcase) */
.detail-left-card {
    background: #0d0b17; /* 100% Solid Dark */
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.detail-image-stage {
    padding: 20px 0;
}

.detail-img-main {
    height: 170px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    animation: gentleFloat 4s ease-in-out infinite alternate;
}

.detail-badge-pill {
    padding: 6px 18px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-gold-bright);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-bright);
    margin-bottom: 20px;
}

.detail-thumb-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.thumb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    background: #151224;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s ease;
    cursor: pointer;
}

.thumb-card img {
    height: 26px;
    width: auto;
}

.thumb-card span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--apple-dim-text);
}

.thumb-card.active, .thumb-card:hover {
    border-color: var(--border-gold-bright);
    background: rgba(212, 175, 55, 0.15);
}

.thumb-card.active span {
    color: var(--gold-bright);
}

/* Right Card (Information & Perks) */
.detail-right-card {
    background: #0d0b17; /* 100% Solid Dark */
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.detail-cat-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--gold-bright);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.detail-name {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.detail-pricing {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 14px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffd866;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.price-period {
    font-size: 0.9rem;
    color: #a1a1a6;
}

.detail-description-text {
    font-size: 0.9rem;
    color: #d1d1d6;
    line-height: 1.55;
    margin-bottom: 22px;
}

.perks-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.perks-heading i {
    width: 15px;
    height: 15px;
}

.detail-perks-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.detail-perks-checklist li {
    font-size: 0.86rem;
    color: #f5f5f7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.detail-perks-checklist li i {
    width: 16px;
    height: 16px;
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-claim-now {
    width: 100%;
    padding: 15px;
    font-size: 0.96rem;
    margin-bottom: 10px;
}

.detail-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.74rem;
    color: var(--apple-gray);
}

.detail-trust-badge i {
    width: 14px;
    height: 14px;
    color: #4ade80;
}

/* Minimal Footer Detail */
.detail-footer-minimal {
    padding: 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 8, 16, 0.6);
}

.detail-footer-minimal p {
    font-size: 0.75rem;
    color: var(--apple-gray);
}

@media (max-width: 900px) {
    .detail-showcase-box {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   APPLE FLOATING BOTTOM NAV DOCK (Persis Gaya Kampoeng RP)
   ========================================================================== */
.nav-dock-apple {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(14, 12, 22, 0.75);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.08);
    z-index: 100;
}

.nav-dock-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    color: var(--apple-dim-text);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.25s var(--apple-ease);
}

.nav-dock-item i {
    width: 16px;
    height: 16px;
}

.nav-dock-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-dock-item.active {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid var(--border-gold-subtle);
}

.nav-dock-highlight {
    background: var(--gold-gradient) !important;
    color: #0b0a08 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.nav-dock-highlight:hover {
    transform: scale(1.04);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(16, 14, 25, 0.92);
    border: 1px solid var(--border-gold-bright);
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px);
    color: #fff;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s var(--spring-ease);
    z-index: 999;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #4ade80;
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Smartphone, Tablet & Mobile Ready)
   ========================================================================== */
@media (max-width: 900px) {
    .social-glass-dock {
        display: none; /* Hide floating sidebar on mobile */
    }

    .page-content-wrapper {
        padding-top: 75px;
        padding-bottom: 100px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-container {
        padding: 6px 12px;
    }

    .brand-logo-img {
        height: 24px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .btn-apple-gold {
        padding: 6px 14px;
        font-size: 0.78rem;
    }

    .nav-dock-apple {
        bottom: 12px;
        padding: 6px 8px;
        gap: 4px;
        max-width: calc(100vw - 24px);
    }

    .nav-dock-item {
        padding: 8px 10px;
        gap: 3px;
    }

    .nav-dock-item span {
        font-size: 0.65rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .factions-grid {
        grid-template-columns: 1fr;
    }

    .hero-feature-trio {
        grid-template-columns: 1fr;
    }

    .tier-catalog-grid {
        grid-template-columns: 1fr;
    }

    .featured-gold-card {
        transform: scale(1);
    }

    .quiz-options-grid {
        grid-template-columns: 1fr;
    }

    .steps-flow-grid {
        grid-template-columns: 1fr;
    }

    .guide-bottom-row {
        grid-template-columns: 1fr;
    }

    .detail-showcase-box {
        grid-template-columns: 1fr;
    }

    .detail-top-nav {
        padding: 12px 16px;
    }

    .btn-detail-back {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .detail-right-card {
        padding: 24px 18px;
    }

    .detail-left-card {
        padding: 24px 18px;
    }

    .quick-server-box {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .metric-divider {
        display: none;
    }

    .info-metric {
        flex: 1 1 40%;
    }
}

@media (max-width: 480px) {
    .brand-main, .brand-alt {
        font-size: 2.2rem;
    }

    .hero-big-logo {
        height: 70px;
    }

    .hero-badge-pill {
        font-size: 0.68rem;
        padding: 5px 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-cta-main, .copy-ip-box, .btn-discord-hero {
        width: 100%;
        justify-content: center;
    }

    .category-pill-bar {
        gap: 6px;
        padding: 4px;
    }

    .cat-pill {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .cat-pill i {
        width: 13px;
        height: 13px;
    }

    .nav-dock-item span {
        display: none; /* Icon-only dock on very small screens */
    }

    .nav-dock-item {
        padding: 8px 12px;
    }
}
