/* Custom Variables and Global Settings */
:root {
    /* Pure Black & Gold Theme Palette */
    --bg-dark-primary: #000000;
    --bg-dark-secondary: #0c0b0a;
    --bg-dark-tertiary: #161513;
    --text-primary: #ffffff;
    --text-secondary: #dcd7cc;
    --text-muted: #8c8578;
    
    /* Gold & Warm Accents */
    --color-gold-light: #ffe57f;
    --color-gold-mid: #ffc107;
    --color-gold-dark: #ff8f00;
    --color-gold-accent: #ffb300;
    --color-gold-hover: #ffa000;
    --color-cyan: #ffc107; /* Map to Gold */
    --color-green: #2ecc71;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #ffe066 0%, #ffc107 50%, #ff8f00 100%);
    --gradient-gold-dark: linear-gradient(135deg, #ffc107 0%, #ff8f00 50%, #ff6f00 100%);
    --gradient-orange-red: linear-gradient(90deg, #ff4500, #ff8c00);
    --gradient-orange-red-hover: linear-gradient(90deg, #ff3300, #ff7700);
    --gradient-magenta: linear-gradient(135deg, #ffe066 0%, #ffc107 50%, #ff8f00 100%); /* Gold Fallback for primary btn */
    --gradient-cyan: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    --gradient-dark: linear-gradient(180deg, #0c0b0a 0%, #000000 100%);
    --gradient-hero: radial-gradient(circle at 80% 20%, #2f2510 0%, #000000 70%);
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-speed: 0.3s;
    --shadow-glow-gold: 0 0 20px rgba(255, 193, 7, 0.4);
    --shadow-glow-orange: 0 0 20px rgba(255, 69, 0, 0.5);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Prompt', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Prompt', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

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

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

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

.text-green {
    color: var(--color-green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    background: var(--gradient-gold-dark);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-gold-mid);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: var(--color-gold-mid);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: var(--border-radius-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    left: -100%;
}

.btn-glow:hover::after {
    left: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 46px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.2));
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-mid);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-gold-mid);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    transition: left 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-container {
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: var(--bg-dark-secondary);
    border-left: 1px solid rgba(255, 193, 7, 0.1);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.close-menu {
    background: transparent;
    border: none;
    color: var(--color-gold-mid);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--color-gold-mid);
    padding-left: 8px;
    border-bottom-color: var(--color-gold-mid);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

/* Announcement Scrolling Ticker */
.announcement-ticker {
    width: 100%;
    background: #110f0c;
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
    color: var(--color-gold-light);
    padding: 10px 0;
    font-size: 0.85rem;
    overflow: hidden;
    margin-top: 80px; /* Sits right under header */
    display: flex;
    align-items: center;
    z-index: 99;
    position: relative;
}

.ticker-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.ticker-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.35);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    white-space: nowrap;
    font-size: 0.8rem;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.1);
}

.ticker-icon {
    width: 14px;
    height: 14px;
    color: var(--color-gold-mid);
}

.ticker-text-wrapper {
    flex: 1; /* Occupy remaining space, prevents layout overflow */
    overflow: hidden;
    position: relative;
    display: flex;
}

.ticker-text {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 40px; /* Reduced since Ticker has push margin */
    padding-bottom: 80px;
    background: var(--gradient-hero);
    overflow: hidden;
    width: 100%;
}

.hero-background-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-new-arrival {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-mid);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold-mid);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold-mid);
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.icon-arrow {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform var(--transition-speed) ease;
}

.btn-primary .icon-arrow {
    stroke: #000000;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--color-gold-mid);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-main-img {
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
    animation: floating 6s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px var(--color-gold-mid);
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.animate-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Live Stats Bar */
.stats-bar {
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(255, 193, 7, 0.08);
    border-bottom: 1px solid rgba(255, 193, 7, 0.08);
    padding: 30px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 193, 7, 0.05);
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-speed) ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 193, 7, 0.03);
    border-color: rgba(255, 193, 7, 0.15);
    box-shadow: var(--shadow-glow-gold);
}

.stat-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 193, 7, 0.05);
    color: var(--color-gold-mid);
    border: 1px solid rgba(255, 193, 7, 0.1);
}

.stat-icon {
    width: 26px;
    height: 26px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Sections Global Styling */
section {
    padding: 100px 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Game Showcase Section */
.games-section {
    background: var(--bg-dark-primary);
}

.tab-filters {
    display: inline-flex;
    gap: 12px;
    background: rgba(255, 193, 7, 0.02);
    padding: 6px;
    border-radius: var(--border-radius-md);
    margin-top: 30px;
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.tab-btn {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.tab-btn:hover {
    color: var(--color-gold-mid);
}

.tab-btn.active {
    background: var(--gradient-gold);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 193, 7, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 193, 7, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-glow-gold);
}

.game-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #000;
    border-bottom: 1px solid rgba(255, 193, 7, 0.05);
}

.game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    z-index: 3;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--color-gold-mid);
    margin-bottom: 12px;
}

.game-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.game-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 16px;
    font-weight: 500;
}

.game-rtp {
    color: var(--color-green);
    font-weight: 700;
}

/* Features Section */
.features-section {
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(255, 193, 7, 0.08);
    border-bottom: 1px solid rgba(255, 193, 7, 0.08);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 193, 7, 0.05);
    padding: 36px 30px;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 193, 7, 0.02);
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: var(--shadow-glow-gold);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.box-gold {
    background: rgba(255, 193, 7, 0.08);
    color: var(--color-gold-mid);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Promotions Section */
.promotions-section {
    background: var(--bg-dark-primary);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 193, 7, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: var(--shadow-glow-gold);
}

.promo-header {
    padding: 36px 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.bg-gold-gradient {
    background: var(--gradient-gold);
    color: #000000;
}

.promo-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
    margin-bottom: 14px;
}

.promo-header h3 {
    font-size: 1.6rem;
    line-height: 1.25;
}

.promo-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.promo-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
}

.promo-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.promo-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.promo-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold-mid);
    font-weight: 700;
}

/* How to Join Section */
.how-to-section {
    background: var(--bg-dark-secondary);
    position: relative;
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-bottom: 50px;
}

.steps-flow::before {
    content: '';
    position: absolute;
    top: 130px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: var(--gradient-gold);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark-primary);
    border: 3px solid var(--color-gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold-mid);
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow-gold);
}

.step-card {
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 193, 7, 0.05);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.step-item:hover .step-card {
    transform: translateY(-5px);
    background: rgba(255, 193, 7, 0.02);
    border-color: rgba(255, 193, 7, 0.2);
}

.step-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    color: var(--color-gold-mid);
}

.step-icon {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-btn-wrapper {
    margin-top: 60px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-dark-primary);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 193, 7, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.faq-item:hover {
    border-color: rgba(255, 193, 7, 0.15);
    background: rgba(255, 255, 255, 0.01);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-toggle-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform var(--transition-speed) ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

/* Active FAQ Item state */
.faq-item.active {
    border-color: rgba(255, 193, 7, 0.3);
}

.faq-item.active .faq-question {
    color: var(--color-gold-mid);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
    color: var(--color-gold-mid);
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    border-top-color: rgba(255, 255, 255, 0.02);
}

/* CTA Banner Section */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('kiki55_04.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.cta-banner-container {
    max-width: 900px;
}

.cta-banner-content {
    text-align: center;
    background: rgba(12, 11, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-banner-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer Section */
.footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 193, 7, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 20px 0 30px;
    max-width: 480px;
}

.footer-warning {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 193, 7, 0.03);
    border: 1px solid rgba(255, 193, 7, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.warning-badge {
    font-weight: 800;
    color: #ffc107;
    border: 1.5px solid #ffc107;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--color-gold-mid);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Dual Floating Live Chat Buttons (LINE & Telegram) */
.floating-chats-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-chat-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 193, 7, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.floating-chat-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 193, 7, 0.5);
}

.telegram-btn {
    background-color: #0088cc;
}

.line-btn {
    background-color: #06c755;
}

.chat-icon {
    width: 28px;
    height: 28px;
}

/* Tooltip style */
.tooltip-text {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.floating-chat-btn:hover .tooltip-text {
    opacity: 1;
}

.pulse-line-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffffff;
    position: absolute;
    top: 2px;
    right: 2px;
    animation: pulse 1.5s infinite;
}

/* Mobile Fixed Bottom Navigation Bar ("Nav footer") */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(12, 11, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    display: none; /* hidden on desktop */
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    z-index: 998;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

.btn-bottom-register {
    flex: 1;
    margin-right: 8px;
    background: var(--gradient-orange-red);
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important; /* Forces uniform size on small viewports */
    white-space: nowrap;
    padding: 12px 6px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-glow-orange);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-bottom-register:hover {
    background: var(--gradient-orange-red-hover);
    transform: translateY(-1px);
}

.btn-bottom-login {
    flex: 1;
    background: rgba(255, 193, 7, 0.05);
    color: var(--color-gold-mid) !important;
    border: 1px solid rgba(255, 193, 7, 0.4);
    font-weight: 700 !important;
    font-size: 0.92rem !important; /* Forces uniform size on small viewports */
    white-space: nowrap;
    padding: 12px 6px;
    border-radius: var(--border-radius-sm);
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-bottom-login:hover {
    background: rgba(255, 193, 7, 0.15);
    border-color: var(--color-gold-mid);
    transform: translateY(-1px);
}

/* Scroll Trigger Entry Animations */
.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.fade-in {
    animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .stat-card {
        padding: 16px 20px;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .promo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .steps-flow::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-actions {
        display: none;
    }
    .nav-menu {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .steps-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 70px; /* offset for bottom nav so content is not clipped */
    }
    .floating-chats-container {
        bottom: 85px; /* Lift buttons above bottom mobile nav bar */
        right: 20px;
    }
}

@media (max-width: 480px) {
    .announcement-ticker {
        margin-top: 70px; /* Tighter margin for small headers */
    }
    .hero-section {
        padding-top: 25px;
        padding-bottom: 50px;
    }
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    .hero-ctas .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .trust-item {
        font-size: 0.85rem;
    }
    .hero-main-img {
        max-width: 85%;
        margin: 0 auto;
    }
    .games-grid {
        grid-template-columns: 1fr; /* Prevents 320px column overflow on mobile */
    }
    .features-grid {
        grid-template-columns: 1fr; /* Prevents column overflow on mobile */
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .cta-banner-content {
        padding: 30px 20px;
    }
    .cta-banner-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    .floating-chats-container {
        bottom: 85px;
        right: 15px;
        gap: 10px;
    }
    .floating-chat-btn {
        width: 48px;
        height: 48px;
    }
    .chat-icon {
        width: 24px;
        height: 24px;
    }
}
