/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Black Luxury Gold Theme (Dark) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #222222;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #999999;
    --border-color: #333333;
    --border-color-hover: #444444;
    --gold-primary: #d4af37;
    --gold-secondary: #b8941f;
    --gold-gradient: linear-gradient(135deg, #d4af37, #f7ef8a);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
}

/* White Luxury Gold Theme (Light) */
.theme-light {
    --bg-primary: #f8f5f0;
    --bg-secondary: #fffaf0;
    --bg-card: #ffffff;
    --bg-tertiary: #f5f0e6;
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --border-color: #e6d9b8;
    --border-color-hover: #d4af37;
    --gold-primary: #d4af37;
    --gold-secondary: #b8941f;
    --gold-gradient: linear-gradient(135deg, #d4af37, #f7ef8a);
    --shadow-sm: 0 2px 8px rgba(212,175,55,0.1);
    --shadow-md: 0 4px 16px rgba(212,175,55,0.15);
    --shadow-lg: 0 8px 32px rgba(212,175,55,0.2);
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000000;
    border: 2px solid transparent;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Header Styles */
.luxury-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-top {
    padding: var(--spacing-md) 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-accent {
    font-size: 14px;
    font-weight: 600;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Top Contact Bar */
.top-contact-bar {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.contact-links {
    display: flex;
    gap: var(--spacing-lg);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-normal);
}

.contact-link:hover {
    color: var(--gold-primary);
}

.contact-link i {
    font-size: 16px;
}

/* Header Controls */
.header-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.control-group {
    display: flex;
    gap: var(--spacing-sm);
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
}

.control-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.theme-toggle {
    font-size: 18px;
}

.theme-toggle i {
    position: absolute;
    transition: all var(--transition-normal);
}

.theme-toggle .fa-moon,
.theme-toggle .fa-sun {
    position: absolute;
    transition: all 0.3s ease;
}

.theme-dark .theme-toggle .fa-sun {
    opacity: 0;
    transform: rotate(90deg);
}

.theme-dark .theme-toggle .fa-moon {
    opacity: 1;
    transform: rotate(0);
}

.theme-light .theme-toggle .fa-sun {
    opacity: 1;
    transform: rotate(0);
}

.theme-light .theme-toggle .fa-moon {
    opacity: 0;
    transform: rotate(-90deg);
}

.lang-toggle {
    min-width: 120px;
    padding: 0 var(--spacing-md);
    gap: var(--spacing-sm);
}

.lang-flag {
    font-size: 18px;
}

.lang-code {
    font-weight: 600;
    margin-right: auto;
}

.currency-symbol {
    font-weight: 700;
    color: var(--gold-primary);
}

.auth-buttons {
    display: flex;
    gap: var(--spacing-md);
}

/* Navigation */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    align-items: center;
    justify-content: center;
}

.luxury-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: var(--spacing-sm);
}

.main-nav > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link.active {
    color: var(--gold-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: auto;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    margin-left: var(--spacing-sm);
}

.badge-new {
    background: var(--error-color);
    color: white;
}

/* Marquee Banner */
.marquee-banner {
    background: var(--gold-gradient);
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    font-weight: 600;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-xl);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    height: 100%;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.theme-light .slide-overlay {
    background: linear-gradient(to bottom, rgba(248,245,240,0.8) 0%, rgba(255,250,240,0.6) 50%, rgba(248,245,240,0.8) 100%);
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.theme-light .slide-title {
    color: #2c2c2c;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.slide-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.theme-light .slide-subtitle {
    color: #2c2c2c;
}

.slide-description {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
    opacity: 0.8;
}

.theme-light .slide-description {
    color: #2c2c2c;
}

.slide-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    margin-bottom: var(--spacing-xxl);
    text-align: center;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hot Games Section */
.hot-games-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: start;
}

.featured-hot-game {
    position: sticky;
    top: 100px;
}

.featured-game-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.featured-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.featured-game-card .game-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-game-card .game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.featured-game-card:hover .game-img {
    transform: scale(1.05);
}

.featured-game-card .game-info {
    padding: var(--spacing-lg);
}

.featured-game-card .game-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.featured-game-card .game-provider {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.featured-game-card .game-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    color: #FFD700;
}

.hot-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* Game Card */
.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.game-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.game-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.game-card:hover .game-img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 1;
}

.game-info {
    padding: var(--spacing-md);
}

.game-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-provider {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 12px;
}

.game-rating i {
    color: #FFD700;
    font-size: 14px;
}

/* Slot Games Section */
.slot-games-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.slot-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.slot-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    height: 100%;
}

.slot-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.jackpot-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1;
}

.slot-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
}

.stat-item i {
    color: var(--gold-primary);
}

.featured-slot-game {
    position: sticky;
    top: 100px;
}

.featured-slot-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.featured-slot-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.featured-slot-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-slot-image .slot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.featured-slot-card:hover .slot-img {
    transform: scale(1.05);
}

.featured-slot-info {
    padding: var(--spacing-lg);
}

.featured-slot-info .slot-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.featured-slot-info .slot-provider {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.featured-slot-info .slot-stats {
    margin-bottom: var(--spacing-lg);
}

/* Live Casino Section */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.provider-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    height: 150px;
    position: relative;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.provider-logo {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.provider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.provider-games {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Sportsbook Section */
.sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.sportsbook-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    height: 180px;
    position: relative;
}

.sportsbook-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.sportsbook-logo {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sportsbook-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sportsbook-name {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    color: white;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sportsbook-play-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.sportsbook-play-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Lotto Section */
.lotto-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lotto-game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
}

.lotto-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.lotto-game-card.featured {
    border: 2px solid var(--gold-primary);
}

.lotto-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.lotto-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lotto-name i {
    color: var(--gold-primary);
}

.lotto-name h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.lotto-time {
    text-align: right;
}

.countdown {
    font-size: 14px;
    color: var(--gold-primary);
    font-weight: 600;
}

.countdown-text {
    color: var(--text-secondary);
    margin-right: 5px;
}

.timer {
    font-family: monospace;
}

.timer.warning {
    color: #ff4444;
    animation: pulse 1s infinite;
}

.lotto-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.lotto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lotto-body {
    padding: 15px;
}

.last-result {
    margin-bottom: 15px;
}

.result-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.result-numbers {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.lotto-number {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.result-date {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
}

.lotto-play-btn {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.lotto-play-btn:hover {
    transform: scale(1.05);
}

/* Lobby Section */
.lobby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.lobby-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.lobby-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.lobby-card.featured {
    border: 2px solid var(--gold-primary);
}

.lobby-image {
    height: 200px;
    overflow: hidden;
}

.lobby-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.lobby-card:hover .lobby-img {
    transform: scale(1.05);
}

.lobby-info {
    padding: var(--spacing-lg);
}

.lobby-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.lobby-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 14px;
}

.lobby-play-btn {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.lobby-play-btn:hover {
    transform: scale(1.05);
}

/* Download App Section */
.download-app-section {
    background: var(--bg-secondary);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.download-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.download-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
    line-height: 1.8;
}

.download-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    flex: 1;
    min-width: 200px;
}

.store-btn:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn div {
    display: flex;
    flex-direction: column;
}

.store-btn strong {
    font-size: 1.1rem;
}

.qrcode-container {
    display: flex;
    gap: var(--spacing-lg);
}

.qrcode-item {
    flex: 1;
}

.qrcode-placeholder {
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.qrcode-placeholder:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.qrcode-placeholder i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: var(--spacing-md);
    display: block;
}

.download-image {
    text-align: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--gold-gradient);
    color: #000;
    padding: var(--spacing-md);
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.app-content {
    flex: 1;
    padding: var(--spacing-md);
}

.app-menu {
    display: flex;
    justify-content: space-around;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-secondary);
    cursor: pointer;
}

.menu-item.active {
    color: var(--gold-primary);
}

.app-games h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.app-game-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.app-game-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.app-game-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.app-game-item i {
    color: var(--gold-primary);
}

/* Banking Section */
.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: var(--spacing-xl);
}

.bank-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.bank-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.bank-logo {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.bank-name {
    font-size: 14px;
    font-weight: 600;
}

.ewallet-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.ewallet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.ewallet-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ewallet-item i {
    font-size: 2rem;
    color: var(--gold-primary);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    max-height: 500px;
}

.faq-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-xl);
    align-items: center;
}

.faq-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
}

.faq-contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.faq-contact-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.partner-item {
    height: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 2.5rem;
    transition: all var(--transition-normal);
}

.partner-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.trust-badge i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

/* Footer */
.luxury-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: var(--spacing-xxl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    color: var(--gold-primary);
    font-size: 2rem;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.contact-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-item strong {
    font-size: 16px;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.payment-title {
    font-weight: 600;
    color: var(--text-secondary);
}

.payment-icons {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 2rem;
    color: var(--text-secondary);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.copyright p {
    margin-bottom: var(--spacing-sm);
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
}

.disclaimer a {
    color: var(--gold-primary);
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    background: var(--gold-gradient);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.scroll-top {
    background: var(--bg-card);
    color: var(--gold-primary);
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.luxury-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    z-index: 2001;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.luxury-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: #000;
    font-size: 2rem;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.modal-subtitle {
    color: var(--text-secondary);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: var(--spacing-md);
    color: var(--gold-primary);
}

.input-group input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) calc(var(--spacing-md) * 2 + 20px);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all var(--transition-normal);
}

.input-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.toggle-password {
    position: absolute;
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.checkbox input {
    width: 16px;
    height: 16px;
}

.forgot-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 14px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.form-divider {
    text-align: center;
    position: relative;
    margin: var(--spacing-lg) 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    background: var(--bg-card);
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-checkbox {
    display: flex;
    gap: var(--spacing-sm);
}

.form-checkbox input {
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.4;
}

.deposit-methods {
    margin-top: var(--spacing-xl);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.method-item {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.method-item:hover,
.method-item.active {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.method-item i {
    font-size: 2rem;
    color: var(--gold-primary);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --container-width: 1000px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
}

@media (max-width: 992px) {
    :root {
        --container-width: 800px;
    }
    
    .hot-games-content,
    .slot-games-content {
        grid-template-columns: 1fr;
    }
    
    .featured-hot-game,
    .featured-slot-game {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .download-image {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .luxury-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-card);
        backdrop-filter: blur(10px);
        z-index: 1000;
        transition: left 0.3s ease;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    .luxury-nav.active {
        left: 0;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-link {
        padding: 15px;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        width: 100%;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        margin-top: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-arrow {
        margin-left: auto;
    }
    
    .top-contact-bar {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .contact-links {
        justify-content: center;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-content {
        bottom: 50px;
    }
    
    .section-header-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .view-all-btn {
        align-self: stretch;
    }
    
    .hot-games-grid,
    .slot-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .providers-grid,
    .sportsbook-grid,
    .lotto-games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .faq-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-elements {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 15px;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .hot-games-grid,
    .slot-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid,
    .sportsbook-grid,
    .lotto-games-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .store-btn {
        min-width: auto;
    }
    
    .payment-methods {
        flex-direction: column;
        text-align: center;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-btn .tooltip {
        display: none;
    }
}