/* ============================================
   NUSANTARA88 - Premium Dark Theme
   CSS Variables & Reset
   ============================================ */

:root {
    /* Color Palette */
    --bg-primary: #0f0a07;
    --bg-secondary: #1a0f0a;
    --bg-tertiary: #2d1810;
    --bg-card: #1a1a1a;
    --bg-card-hover: #2a2a2a;

    --nav-bg: #8B4513;
    --nav-hover: #A0522D;

    --accent-gold: #D4AF37;
    --accent-gold-light: #FFD700;
    --accent-gold-dark: #B8860B;
    --accent-orange: #FF8C00;

    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;

    --border-subtle: rgba(212, 175, 55, 0.2);
    --border-gold: rgba(212, 175, 55, 0.4);

    /* Typography */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 40px 0;

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent-gold);
    color: #000;
    padding: 10px 20px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold text effect */
.gold-text {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: bold;
}

/* ============================================
   TOP HEADER
   ============================================ */
.top-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    height: 50px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 15px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 18px;
    color: var(--text-primary);
}

.brand-logo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.brand-name {
    color: var(--text-primary);
    letter-spacing: 1px;
}

.brand-accent {
    color: var(--accent-gold);
}

.welcome-text {
    font-size: 12px;
    color: var(--text-secondary);
    display: none;
}

@media (min-width: 1024px) {
    .welcome-text {
        display: block;
    }
}

.header-center {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.icon-sm {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
}

.location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.icon-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
    color: var(--text-secondary);
}

.icon-btn svg {
    width: 18px;
    height: 18px;
}

.icon-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
}

.btn {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-login:hover {
    background: var(--accent-gold);
    color: #000;
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-orange), #FF4500);
    color: #fff;
    border: 1px solid transparent;
}

.btn-register:hover {
    background: linear-gradient(135deg, #FF4500, var(--accent-orange));
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.close-btn {
    display: none;
}

@media (min-width: 768px) {
    .close-btn {
        display: flex;
    }
}

/* ============================================
   CATEGORY NAVIGATION
   ============================================ */
.category-nav {
    background: linear-gradient(180deg, var(--nav-bg) 0%, #6B3410 100%);
    border-bottom: 2px solid var(--accent-gold-dark);
    position: sticky;
    top: 50px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--bg-secondary);
    padding: 0 5px;
}

.nav-list::-webkit-scrollbar {
    height: 4px;
}

.nav-list::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.nav-list::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 2px;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.2);
    color: var(--accent-gold-light);
}

.nav-item.active .nav-link {
    background: rgba(0, 0, 0, 0.3);
    color: var(--accent-gold-light);
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px 2px 0 0;
}

.nav-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold-light);
}

.badge-hot {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #FF0000;
    color: #fff;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-primary);
}

@media (min-width: 768px) {
    .hero-section {
        height: 380px;
    }
}

@media (min-width: 1200px) {
    .hero-section {
        height: 420px;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-artwork {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.9;
    pointer-events: none;
}

.hero-mascot {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-coins {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coin {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFD700, #B8860B);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: coinFloat 4s ease-in-out infinite;
}

.coin::before {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #8B4513;
    font-size: 20px;
    font-weight: bold;
}

.coin-1 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    bottom: 40%;
    left: 50%;
    width: 30px;
    height: 30px;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 10%;
    left: 70%;
    width: 50px;
    height: 50px;
    animation-delay: 2s;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 68px;
    }
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 500px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 18px;
    }
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #000;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    transition: all var(--transition-normal);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: #000;
}

.slider-prev {
    left: 15px;
}

.slider-next {
    right: 15px;
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.indicator.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold-light);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--accent-gold);
}

/* ============================================
   PROGRESSIVE JACKPOT
   ============================================ */
.jackpot-section {
    padding: 30px 0;
    background: var(--bg-primary);
}

.jackpot-panel {
    background: linear-gradient(135deg, #2d1810 0%, #1a0f0a 50%, #2d1810 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.jackpot-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-light), transparent);
}

.jackpot-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold-light), transparent);
}

.jackpot-artwork-left,
.jackpot-artwork-right {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.jackpot-artwork-left svg,
.jackpot-artwork-right svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.jackpot-content {
    flex: 1;
    text-align: center;
}

.jackpot-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@media (min-width: 768px) {
    .jackpot-title {
        font-size: 36px;
    }
}

.jackpot-amount {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-gold-light);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .jackpot-amount {
        font-size: 44px;
    }
}

.jackpot-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   RESULTS SECTION
   ============================================ */
.results-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: bold;
    color: var(--text-primary);
    letter-spacing: 1px;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--accent-gold);
    border-radius: 2px;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 15px;
    transition: transform var(--transition-normal);
    will-change: transform;
}

.result-card {
    flex-shrink: 0;
    width: 140px;
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.result-label {
    padding: 12px 10px 8px;
    font-size: 11px;
    font-weight: bold;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-align: center;
}

.result-number {
    padding: 5px 10px 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-gold-light);
    text-align: center;
    font-family: 'Georgia', serif;
}

.result-date {
    background: var(--accent-orange);
    color: #fff;
    padding: 6px 10px;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   GAMES SECTIONS
   ============================================ */
.games-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.games-new {
    background: var(--bg-secondary);
}

.game-card {
    flex-shrink: 0;
    width: 180px;
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.game-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.game-image svg {
    width: 60%;
    height: 60%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-normal);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.game-card:hover .game-image svg,
.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 12px 10px;
}

.game-title {
    font-size: 13px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 10px;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(139, 69, 19, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-view {
    background: #000;
    color: var(--accent-gold-light);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* ============================================
   INFO SECTION (3 Columns)
   ============================================ */
.info-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-column {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 25px;
    border: 1px solid var(--border-subtle);
}

.info-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

/* Dashboard Card */
.dashboard-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dashboard-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.dashboard-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.dashboard-value {
    font-size: 14px;
    font-weight: bold;
    color: var(--accent-gold-light);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 3px;
    transition: width 1s ease;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.stat-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.stat-value {
    font-size: 14px;
    font-weight: bold;
    color: var(--text-primary);
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.info-item:last-child {
    border-bottom: none;
}

.info-text {
    font-size: 13px;
    color: var(--text-primary);
}

.btn-more {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-more:hover {
    background: var(--accent-gold);
    color: #000;
}

/* Member Service Panel */
.member-service-panel {
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 15px;
    min-height: 200px;
}

.service-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.service-link svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.service-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.payment-section {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.payment-col {
    background: var(--bg-card);
    border-radius: 6px;
    padding: 20px;
    border: 1px solid var(--border-subtle);
}

.payment-title {
    font-size: 13px;
    font-weight: bold;
    color: var(--text-secondary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.payment-method svg {
    width: 40px;
    height: 40px;
}

.payment-method span {
    font-size: 11px;
    color: var(--text-secondary);
}

.payment-method:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.browsers {
    display: flex;
    gap: 15px;
}

.browser-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.browser-icon svg {
    width: 24px;
    height: 24px;
}

.browser-icon:hover {
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.payment-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    padding: 10px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #000000;
    padding: 50px 0 20px;
    border-top: 3px solid var(--accent-gold-dark);
}

.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-brand-name {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-subtle);
}

.social-icons a svg {
    width: 18px;
    height: 18px;
}

.social-icons a:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col-title {
    font-size: 13px;
    font-weight: bold;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.footer-small {
    font-size: 11px !important;
    font-style: italic;
}

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-normal);
    letter-spacing: 0.5px;
}

.floating-contact svg {
    width: 18px;
    height: 18px;
}

.floating-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

@media (max-width: 480px) {
    .floating-contact span {
        display: none;
    }
    .floating-contact {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .jackpot-panel {
        padding: 25px 20px;
    }

    .jackpot-artwork-left,
    .jackpot-artwork-right {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 30px 0;
    }

    .top-header {
        height: auto;
        padding: 8px 0;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .header-center {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-nav {
        top: auto;
        position: relative;
    }

    .hero-section {
        height: 280px;
    }

    .hero-artwork {
        opacity: 0.3;
        right: -10%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .jackpot-panel {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .jackpot-amount {
        font-size: 26px;
    }

    .result-card {
        width: 120px;
    }

    .result-number {
        font-size: 22px;
    }

    .game-card {
        width: 150px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 240px;
    }

    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 18px;
    }

    .jackpot-amount {
        font-size: 22px;
    }

    .jackpot-title {
        font-size: 22px;
    }

    .game-card {
        width: 140px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: var(--accent-gold);
    color: #000;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}