/* ==========================================
   TAMPILE - Main Stylesheet
   Casino Online Landing Page
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

/* CSS Variables */
:root {
    --primary-dark: #0a1628;
    --primary-navy: #0d1f3c;
    --secondary-navy: #162a4a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-gold-dark: #b8960c;
    --text-white: #ffffff;
    --text-gold: #d4af37;
    --text-light: #a0aec0;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, #0a1628 0%, #162a4a 100%);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    background: var(--gradient-dark);
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gold Text Gradient */
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   HEADER STYLES
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: visible;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    font-weight: bold;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation - Desktop Only */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-actions-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn:hover {
    background: var(--accent-gold);
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--primary-dark);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hamburger Animation when Active */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-navy) 100%);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    overflow-x: hidden;
    border-left: 2px solid var(--accent-gold);
    box-shadow: -10px 0 40px rgba(212, 175, 55, 0.2);
    flex-direction: column;
    visibility: hidden;
}

.mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon-small {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-dark);
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close i {
    font-size: 18px;
    color: var(--text-light);
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(212, 175, 55, 0.2);
}

.mobile-nav-close:hover i {
    color: var(--accent-gold);
}

/* Mobile Nav Links */
.mobile-nav-links {
    padding: 20px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--accent-gold);
}

.mobile-nav-link i {
    width: 24px;
    font-size: 18px;
    text-align: center;
}

/* Mobile Nav Divider */
.mobile-nav-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 10px 25px;
}

/* Secondary Links */
.mobile-nav-links.secondary {
    padding: 10px 0;
}

.mobile-nav-links.secondary .mobile-nav-link {
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.mobile-nav-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Header Scrolled State */
.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    padding: 10px 20px;
    color: var(--text-light);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* ===================================
   PROMOTION BANNERS SECTION
   =================================== */
.promotion-banners {
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.8) 0%, rgba(13, 31, 60, 0.9) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.banners-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.banner-item {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
}

.banner-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .banners-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .promotion-banners {
        padding: 20px 0;
    }

    .banners-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .banner-item {
        border-radius: 12px;
    }
}

/* ===================================
   FREE SPIN BANNER SECTION
   =================================== */
.free-spin-banner {
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(13, 31, 60, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%);
}

.free-spin-item {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    max-width: 900px;
    margin: 0 auto;
}

.free-spin-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.free-spin-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 576px) {
    .free-spin-banner {
        padding: 20px 0;
    }

    .free-spin-item {
        border-radius: 12px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    display: block;
    font-size: 72px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.hero-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--accent-gold);
    font-size: 24px;
}

.hero-feature-text {
    font-size: 14px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Slot Machine Visual */
.hero-visual {
    position: relative;
}

.slot-machine {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 30px;
    padding: 40px;
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    position: relative;
}

.slot-screen {
    background: linear-gradient(180deg, #2d1f4e 0%, #1a1040 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.slot-symbols {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.slot-symbol {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-dark);
    animation: slotGlow 2s ease-in-out infinite;
}

.slot-symbol:nth-child(2) {
    animation-delay: 0.3s;
}

.slot-symbol:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slotGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
        transform: translateY(-5px);
    }
}

.jackpot-display {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
}

.jackpot-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jackpot-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 10s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--accent-gold);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   GAMES SECTION
   =================================== */
.categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 28px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

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

.game-card {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.game-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    color: rgba(255, 255, 255, 0.62);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.02)),
        var(--primary-navy);
}

.game-image-placeholder i {
    font-size: 38px;
    color: rgba(255, 255, 255, 0.42);
}

.game-image-placeholder span {
    max-width: 100%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.game-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.game-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.game-badge.hot {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
}

.game-badge.new {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.game-info {
    padding: 25px;
}

.game-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.game-provider {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-rtp {
    font-size: 14px;
    color: var(--accent-gold-light);
}

.game-rtp span {
    font-weight: 600;
}

.btn-play {
    padding: 10px 24px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-play:hover {
    transform: scale(1.05);
}

/* ===================================
   PROMOTIONS SECTION
   =================================== */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.promotion-card.gold::before { background: var(--gradient-gold); }
.promotion-card.purple::before { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.promotion-card.blue::before { background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); }
.promotion-card.green::before { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }

.promotion-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.promotion-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    font-size: 32px;
}

.promotion-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.promotion-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.promotion-bonus {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ===================================
   WINNERS SECTION
   =================================== */
.winners-section {
    background: var(--primary-navy);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.winners-ticker {
    display: flex;
    gap: 40px;
    overflow: hidden;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.winner-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-dark);
}

.winner-name {
    font-weight: 600;
}

.winner-game {
    font-size: 14px;
    color: var(--text-light);
}

.winner-amount {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-dark);
}

.testimonial-user {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-game {
    font-size: 14px;
    color: var(--accent-gold);
}

.testimonial-message {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-win {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

.testimonial-win-label {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-win-amount {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

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

.footer-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-links li {
    margin-bottom: 15px;
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 14px;
}

.footer-payment {
    display: flex;
    gap: 15px;
}

/* ===================================
   MODAL
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 50px;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(30px);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-gold);
}

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

.modal-logo {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 18px;
    color: var(--text-light);
}

.modal-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.modal-tab {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.modal-tab.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.modal-form {
    display: none;
}

.modal-form.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-light);
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--primary-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

/* ===================================
   SCROLLBAR
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-light);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ===================================
   PAGE CONTENT STYLES (Mobile Optimized)
   =================================== */

/* Page Header Spacing */
.page-header {
    padding-top: 120px;
}

/* Content Box - Used in About, Terms, Privacy */
.content-box {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.content-box h2 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 24px;
}

.content-box h2 i {
    margin-right: 10px;
}

.content-box p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-box ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-box ul li {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 8px;
}

.content-box ul li strong {
    color: var(--text-white);
}

/* FAQ Styles - Mobile Optimized */
.faq-item {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    gap: 15px;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    color: var(--text-white);
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s;
    flex-shrink: 0;
    font-size: 14px;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 14px;
}

/* FAQ Section Headers */
.faq-section-title {
    color: var(--accent-gold);
    margin: 30px 0 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section-title i {
    font-size: 18px;
}

/* Contact Page - Mobile Optimized */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info-card h3 i {
    margin-right: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 3px;
    font-size: 16px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-item a {
    color: var(--accent-gold);
}

.contact-item a:hover {
    color: var(--accent-gold-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.contact-form-card {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form-card h3 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 22px;
}

.contact-form-card h3 i {
    margin-right: 8px;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.working-hours {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.working-hours h4 {
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-size: 16px;
}

.working-hours p {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 14px;
}

.working-hours span {
    color: var(--text-white);
    font-weight: 600;
}

/* Why Choose Us Grid - Mobile */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-icon i {
    color: var(--accent-gold);
    font-size: 18px;
}

.why-choose-content h4 {
    color: var(--text-white);
    margin-bottom: 5px;
    font-size: 16px;
}

.why-choose-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Vision/Mission Cards - Mobile */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.vision-card {
    background: var(--secondary-navy);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.vision-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vision-card-icon i {
    font-size: 32px;
    color: var(--accent-gold);
}

.vision-card h3 {
    color: var(--accent-gold);
    margin-bottom: 12px;
    font-size: 20px;
}

.vision-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet Landscape / Small Desktop */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablet / Mobile Breakpoint - Show hamburger */
@media (max-width: 992px) {
    /* Hide Desktop Navigation */
    .nav-desktop,
    .nav-actions-desktop {
        display: none !important;
    }

    /* Show Mobile Menu Button */
    .mobile-menu-btn {
        display: flex !important;
        visibility: visible !important;
    }

    /* Mobile Navigation Elements */
    .mobile-nav-overlay {
        display: block;
        visibility: hidden;
    }

    .mobile-nav {
        display: flex !important;
        visibility: hidden;
    }

    .mobile-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-nav-overlay.active {
        visibility: visible;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* Header */
    .header {
        background: rgba(10, 22, 40, 0.97);
    }

    .header-content {
        padding: 12px 0;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .logo-text {
        font-size: 24px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h1 span {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    /* Games Grid */
    .games-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .game-info {
        padding: 15px;
    }

    .game-name {
        font-size: 14px;
    }

    .game-provider {
        font-size: 12px;
    }

    .btn-play {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Categories */
    .categories {
        flex-wrap: wrap;
        gap: 10px;
    }

    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Content Box - Mobile */
    .content-box {
        padding: 25px;
        margin: 0 15px;
    }

    .content-box h2 {
        font-size: 20px;
    }

    .content-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .content-box ul li {
        font-size: 14px;
    }

    /* Vision/Mission - Mobile */
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-card {
        padding: 25px;
    }

    /* FAQ - Mobile */
    .faq-section-title {
        font-size: 18px;
        margin: 25px 0 15px;
        padding: 0 15px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    /* Contact - Mobile */
    .contact-info-card {
        padding: 25px;
        margin: 0 15px 20px;
    }

    .contact-form-card {
        padding: 25px;
        margin: 0 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    /* Modal */
    .modal {
        padding: 30px 25px;
        margin: 20px;
    }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Jackpot */
    .slot-symbol {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .jackpot-amount {
        font-size: 32px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Promotions */
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Grid */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile Nav Adjustments */
    .mobile-nav {
        width: 88%;
        max-width: none;
    }

    .mobile-nav-link {
        padding: 14px 20px;
        font-size: 15px;
    }

    .mobile-nav-logo {
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Mobile */
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text h1 span {
        font-size: 36px;
    }

    /* Section Titles */
    .section-title {
        font-size: 24px;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        width: 20px;
    }

    /* Logo */
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 20px;
    }

    /* Games Grid - Single column on very small screens */
    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        display: flex;
        flex-direction: row;
    }

    .game-image {
        width: 120px;
        height: auto;
        min-height: 100px;
    }

    .game-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Footer */
    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* Content Box */
    .content-box {
        padding: 20px 15px;
    }

    .content-box h2 {
        font-size: 18px;
    }

    /* Vision Card */
    .vision-card {
        padding: 20px 15px;
    }

    .vision-card-icon {
        width: 60px;
        height: 60px;
    }

    .vision-card-icon i {
        font-size: 24px;
    }

    /* FAQ */
    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 13px;
    }

    /* Contact */
    .contact-info-card,
    .contact-form-card {
        padding: 20px 15px;
    }

    /* Form Inputs */
    .form-input {
        padding: 14px 16px;
        font-size: 15px;
    }

    /* Modal */
    .modal {
        padding: 25px 20px;
    }

    .modal-logo {
        font-size: 28px;
    }

    /* Hero Features */
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-feature {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .hero-feature-icon {
        margin: 0;
    }

    /* Testimonial */
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-win {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    /* Promotion Card */
    .promotion-card {
        padding: 25px 20px;
    }

    .promotion-bonus {
        font-size: 28px;
    }

    /* Winners Ticker */
    .winner-item {
        padding: 15px 20px;
        gap: 15px;
    }

    .winner-amount {
        font-size: 18px;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text h1 span {
        font-size: 30px;
    }

    .game-card {
        flex-direction: column;
    }

    .game-image {
        width: 100%;
        height: 150px;
    }
}
