/* =============================================
   Cleobetra Casino - Egyptian Theme Styles
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Egyptian Theme */
    --color-primary: #8B4513;
    --color-primary-dark: #6B3410;
    --color-primary-light: #A0522D;
    
    /* Gold Accents */
    --color-gold: #FFD700;
    --color-gold-dark: #DAA520;
    --color-gold-light: #FFF8DC;
    
    /* Background Colors */
    --color-bg-dark: #3D1F0D;
    --color-bg-medium: #5C2E15;
    --color-bg-light: #8B4513;
    --color-bg-card: rgba(139, 69, 19, 0.3);
    
    /* Text Colors */
    --color-text-light: #FFF8E7;
    --color-text-muted: #D4C4A8;
    --color-text-dark: #2D1810;
    
    /* Accent Colors */
    --color-accent-teal: #40E0D0;
    --color-accent-orange: #FF8C00;
    --color-cta: #FF6B35;
    --color-cta-hover: #FF8C5A;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #DAA520 50%, #B8860B 100%);
    --gradient-bronze: linear-gradient(135deg, #CD853F 0%, #8B4513 100%);
    --gradient-dark: linear-gradient(180deg, #3D1F0D 0%, #5C2E15 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(61, 31, 13, 0.7) 0%, rgba(61, 31, 13, 0.95) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(255, 215, 0, 0.3);
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container */
    --container-max: 1200px;
    --header-height: 70px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-dark);
    background-attachment: fixed;
    color: var(--color-text-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: var(--radius-lg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text-light);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-muted);
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Gold Text */
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    color: var(--color-bg-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--color-text-light);
    color: var(--color-text-light);
}

.btn-outline-light:hover {
    background: var(--color-text-light);
    color: var(--color-bg-dark);
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-accent-orange) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    color: white;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.center-btn {
    display: flex;
    margin: var(--space-2xl) auto 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(61, 31, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    height: var(--header-height);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(45, 24, 16, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-menu a {
    color: var(--color-text-light);
    font-weight: 500;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: var(--space-md);
}

.nav-buttons .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(61, 31, 13, 0.95) 0%, rgba(61, 31, 13, 0.7) 50%, rgba(61, 31, 13, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero h1 {
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

.hero-bonus {
    background: rgba(139, 69, 19, 0.5);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.bonus-amount {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-lg);
}

.bonus-label {
    font-size: 0.9rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header.light h2 {
    color: var(--color-text-light);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

/* About Section */
.section-about {
    background: var(--color-bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xl);
}

.rating-stars {
    display: flex;
    gap: var(--space-xs);
}

.rating-stars svg {
    width: 24px;
    height: 24px;
    fill: var(--color-gold);
    stroke: var(--color-gold);
}

.rating-stars .star-half {
    fill: url(#half-gradient);
}

.rating-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.rating-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-card {
    background: var(--gradient-bronze);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    background: rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Info Table */
.info-table-wrapper {
    background: rgba(139, 69, 19, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.info-table-wrapper h3 {
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

.info-table td:first-child svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.info-table td:last-child {
    color: var(--color-text-light);
    text-align: right;
}

/* Bonus Section */
.section-bonus {
    position: relative;
    padding: var(--space-3xl) 0;
}

.bonus-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bonus-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(61, 31, 13, 0.92) 0%, rgba(61, 31, 13, 0.98) 100%);
}

.bonus-intro {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.bonus-intro p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.bonus-card {
    background: rgba(139, 69, 19, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.bonus-card.featured {
    border-color: var(--color-gold);
    background: rgba(255, 215, 0, 0.1);
}

.bonus-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-card-icon {
    width: 70px;
    height: 70px;
    margin: var(--space-lg) auto;
    background: rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card-icon svg {
    width: 35px;
    height: 35px;
    color: var(--color-gold);
}

.bonus-card-percent {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card-amount {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.bonus-card-extra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.bonus-card-extra svg {
    width: 18px;
    height: 18px;
}

.bonus-card-details {
    list-style: none;
    text-align: left;
}

.bonus-card-details li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.bonus-card-details svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

/* Calculator */
.calculator-section {
    background: rgba(61, 31, 13, 0.8);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.calculator-section h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.calculator-section h3 svg {
    width: 28px;
    height: 28px;
}

.calculator-desc {
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.calculator-input label {
    display: block;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.input-wrapper {
    position: relative;
    margin-bottom: var(--space-lg);
}

.input-wrapper svg {
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.input-wrapper input[type="number"] {
    width: 100%;
    padding: var(--space-lg) var(--space-lg) var(--space-lg) calc(var(--space-lg) * 2 + 20px);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(139, 69, 19, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    color: var(--color-gold);
    outline: none;
    transition: border-color var(--transition-fast);
}

.input-wrapper input:focus {
    border-color: var(--color-gold);
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    outline: none;
    -webkit-appearance: none;
    margin-bottom: var(--space-sm);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: rgba(139, 69, 19, 0.3);
    border-radius: var(--radius-md);
}

.result-item.highlight {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--color-gold);
}

.result-label {
    color: var(--color-text-muted);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
}

.result-item.highlight .result-value {
    font-size: 1.5rem;
}

/* Bonus Text */
.bonus-text {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.bonus-text h3 {
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.bonus-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.bonus-warning {
    display: flex;
    gap: var(--space-lg);
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--color-cta);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.bonus-warning svg {
    width: 24px;
    height: 24px;
    color: var(--color-cta);
    flex-shrink: 0;
}

.bonus-warning strong {
    color: var(--color-cta);
}

/* Registration Section */
.section-registration {
    background: var(--color-bg-dark);
}

.registration-intro {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.registration-intro p {
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.step-card {
    background: rgba(139, 69, 19, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-normal);
}

.step-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: var(--space-lg);
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    color: var(--color-bg-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.step-card h4 {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.step-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Login Tips */
.login-tips {
    background: rgba(139, 69, 19, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.login-tips h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.login-tips h3 svg {
    width: 24px;
    height: 24px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.tip-item {
    display: flex;
    gap: var(--space-lg);
}

.tip-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.tip-item strong {
    display: block;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.tip-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Games Section */
.section-games {
    background: var(--color-bg-medium);
}

.games-intro {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.games-intro p {
    font-size: 1.1rem;
}

.games-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.category-card {
    background: rgba(61, 31, 13, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.category-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.category-card h4 {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.category-count {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-gold);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.category-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Providers */
.providers-section {
    margin-bottom: var(--space-3xl);
}

.providers-section h3 {
    text-align: center;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.provider-badge {
    background: rgba(139, 69, 19, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.provider-badge:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Games Table */
.popular-games h3 {
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(61, 31, 13, 0.7);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.games-table th {
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-gold);
    padding: var(--space-lg);
    text-align: left;
    font-weight: 600;
}

.games-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.games-table tr:last-child td {
    border-bottom: none;
}

.games-table tr:hover td {
    background: rgba(255, 215, 0, 0.05);
}

/* Payments Section */
.section-payments {
    background: var(--color-bg-dark);
}

.payments-intro {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.payments-intro p {
    font-size: 1.05rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.payment-category {
    background: rgba(139, 69, 19, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.payment-category h3 {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.payment-category h3 svg {
    width: 22px;
    height: 22px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: rgba(61, 31, 13, 0.5);
    border-radius: var(--radius-md);
}

.payment-name {
    color: var(--color-text-light);
    font-weight: 500;
}

.payment-limits {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Withdrawal Table */
.withdrawal-info {
    margin-bottom: var(--space-2xl);
}

.withdrawal-info h3 {
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.withdrawal-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(139, 69, 19, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.withdrawal-table th {
    background: rgba(255, 215, 0, 0.2);
    color: var(--color-gold);
    padding: var(--space-lg);
    text-align: left;
    font-weight: 600;
}

.withdrawal-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: var(--color-text-muted);
}

.withdrawal-table tr:last-child td {
    border-bottom: none;
}

.withdrawal-table td:first-child {
    color: var(--color-text-light);
    font-weight: 500;
}

/* Payment Tips */
.payment-tips {
    display: flex;
    gap: var(--space-lg);
    background: rgba(64, 224, 208, 0.1);
    border: 1px solid var(--color-accent-teal);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.payment-tips svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-teal);
    flex-shrink: 0;
}

.payment-tips strong {
    color: var(--color-accent-teal);
}

/* VIP Section */
.section-vip {
    background: var(--color-bg-medium);
}

.vip-intro {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.vip-intro p {
    font-size: 1.1rem;
}

.vip-levels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.vip-card {
    background: rgba(61, 31, 13, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.vip-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.vip-card.featured {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--color-gold);
}

.vip-tier {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-tier svg {
    width: 32px;
    height: 32px;
}

.vip-tier.bronze {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.vip-tier.bronze svg {
    color: #FFF8E7;
}

.vip-tier.silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.vip-tier.silver svg {
    color: #FFF8E7;
}

.vip-tier.gold {
    background: var(--gradient-gold);
}

.vip-tier.gold svg {
    color: var(--color-bg-dark);
}

.vip-tier.platinum {
    background: linear-gradient(135deg, #E5E4E2, #B0B0B0);
}

.vip-tier.platinum svg {
    color: var(--color-bg-dark);
}

.vip-tier.diamond {
    background: linear-gradient(135deg, #B9F2FF, #40E0D0);
}

.vip-tier.diamond svg {
    color: var(--color-bg-dark);
}

.vip-card h4 {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.vip-card ul {
    list-style: none;
    text-align: left;
}

.vip-card li {
    padding: var(--space-sm) 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.vip-card li:last-child {
    border-bottom: none;
}

/* Responsible Gaming */
.section-responsible {
    background: var(--color-bg-dark);
}

.responsible-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.responsible-text p {
    font-size: 1.05rem;
}

.responsible-tools h3 {
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.tool-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(139, 69, 19, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
}

.tool-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
}

/* Age Warning */
.age-warning {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--color-cta);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.age-badge {
    width: 60px;
    height: 60px;
    background: var(--color-cta);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.age-warning p {
    margin: 0;
    font-size: 1rem;
}

/* FAQ Section */
.section-faq {
    background: var(--color-bg-medium);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(61, 31, 13, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    margin: 0;
}

/* CTA Section */
.section-cta {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(61, 31, 13, 0.9) 0%, rgba(61, 31, 13, 0.95) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand img {
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.badge-18 {
    width: 40px;
    height: 40px;
    background: var(--color-cta);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.footer-badges span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
}

.disclaimer {
    color: var(--color-text-muted);
}

.disclaimer a {
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: var(--radius-full);
    color: var(--color-bg-dark);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vip-levels {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vip-card:nth-child(4),
    .vip-card:nth-child(5) {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonus-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .calculator {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .games-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
    
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-bg-dark);
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(var(--header-height) + 200px);
        left: 0;
        right: 0;
        background: var(--color-bg-dark);
        padding: 0 var(--space-lg) var(--space-lg);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-overlay {
        background: rgba(61, 31, 13, 0.85);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .games-categories {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-levels {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-table,
    .withdrawal-table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .btn-large {
        padding: var(--space-md) var(--space-xl);
        font-size: 1rem;
    }
    
    .hero-bonus {
        padding: var(--space-lg);
    }
    
    .stat-card {
        padding: var(--space-lg);
    }
    
    .info-table td {
        padding: var(--space-sm);
        font-size: 0.9rem;
    }
    
    .info-table td:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }

/* Print Styles */
@media print {
    .header,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

