/* ===== CASINO ÉLITE PREMIUM STYLES ===== */
/* Dark Luxury Theme with Pure Flexbox Architecture */

/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #e8e6e3;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* ===== PREMIUM COLOR PALETTE ===== */
:root {
    /* Primary Colors */
    --primary-dark: #0d0d0d;
    --primary-charcoal: #1a1a1a;
    --primary-slate: #2d2d2d;
    --primary-grey: #404040;
    
    /* Accent Colors */
    --accent-gold: #d4af37;
    --accent-champagne: #f7e7ce;
    --accent-bronze: #cd7f32;
    --accent-platinum: #e5e4e2;
    
    /* Text Colors */
    --text-primary: #e8e6e3;
    --text-secondary: #b8b5b0;
    --text-muted: #8a8784;
    --text-gold: #d4af37;
    
    /* Status Colors */
    --success: #2d5a27;
    --warning: #8b6914;
    --error: #722f37;
    --info: #1e3a5f;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f7e7ce 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(135deg, #0d0d0d 0%, #2d2d2d 50%, #0d0d0d 100%);
    --gradient-luxury: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #404040 50%, #2d2d2d 75%, #1a1a1a 100%);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.lead {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===== LUXURY COMPONENTS ===== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    font-family: 'Georgia', serif;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-premium {
    background: var(--gradient-luxury);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-premium:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-silver {
    background: linear-gradient(135deg, #e5e4e2 0%, #c0c0c0 50%, #e5e4e2 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.3);
}

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

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

.btn-large {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    font-size: clamp(1rem, 1.3vw, 1.125rem);
}

.btn-full {
    width: 100%;
}

/* ===== HEADER ===== */
.main-header {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-crown {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px var(--accent-gold));
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 0.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--gradient-dark);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1001;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(64, 64, 64, 0.5);
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent-gold);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-luxury);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: clamp(6rem, 12vw, 8rem);
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 400px;
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
}

.section-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-luxury);
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(3rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* ===== LEGAL NOTICE ===== */
.legal-notice,
.important-notice {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: clamp(2rem, 4vw, 3rem) 0;
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.notice-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    flex-shrink: 0;
}

.notice-text h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.age-restriction {
    display: inline-block;
    background: var(--error);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.875rem;
}

/* ===== FEATURES GRID ===== */
.features {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(13, 13, 13, 0.5);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: clamp(2.5rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* ===== GAMES SECTION ===== */
.games {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.game-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.game-play-btn {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.game-play-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.5;
}

/* ===== MODAL ===== */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.game-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--primary-charcoal);
    border: 2px solid var(--accent-gold);
    border-radius: 16px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    max-height: 800px;
    position: relative;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--primary-dark);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    height: calc(100% - 80px);
    padding: 0;
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: var(--gradient-dark);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.age-modal-header h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.age-modal-body p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== COOKIE BAR ===== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 0;
    z-index: 1500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-bar.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text {
    color: var(--text-secondary);
    flex: 1;
    min-width: 200px;
}

.btn-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-accept:hover {
    background: var(--accent-champagne);
    transform: translateY(-1px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 350px;
    max-width: 450px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: clamp(2rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info h4 {
    color: var(--accent-gold);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.rating {
    color: var(--accent-gold);
    font-size: 1.125rem;
}

/* ===== FAQ ===== */
.faq {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--gradient-dark);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* ===== VIP CLUB ===== */
.vip-club {
    background: var(--gradient-luxury);
    padding: clamp(4rem, 6vw, 6rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vip-club::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.vip-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.vip-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.vip-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-primary);
}

/* ===== RESPONSIBLE GAMING ===== */
.responsible-gaming {
    background: rgba(45, 45, 45, 0.3);
    padding: clamp(4rem, 6vw, 6rem) 0;
}

.responsible-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.help-organizations {
    margin-top: 3rem;
}

.org-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.org-link {
    display: block;
    color: var(--accent-gold);
    text-decoration: none;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.helpline-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.helpline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.phone-icon {
    font-size: 2rem;
}

.number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.hours {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== ACCOUNT SECTION ===== */
.account-section {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.account-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.account-tabs {
    display: flex;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    border-bottom-color: var(--accent-gold);
}

.tab-content {
    display: none;
    padding: clamp(2rem, 4vw, 3rem);
}

.tab-content.active {
    display: block;
}

/* ===== FORMS ===== */
.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(64, 64, 64, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    padding-right: 3rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.form-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--accent-gold);
    pointer-events: none;
}

.form-group.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 12px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.forgot-link {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--accent-champagne);
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 2rem 0;
    color: var(--text-muted);
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 1;
}

.form-divider span {
    background: var(--primary-charcoal);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.social-login {
    display: flex;
    gap: 1rem;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-google .social-icon {
    background: #4285f4;
    color: white;
}

.btn-facebook .social-icon {
    background: #1877f2;
    color: white;
}

.form-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-container {
    display: flex;
    gap: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1;
    min-width: 350px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(64, 64, 64, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(64, 64, 64, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-details span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== VIP BENEFITS ===== */
.vip-benefits {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.benefits-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* ===== SECURITY GUARANTEE ===== */
.security-guarantee {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.security-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.security-icon {
    font-size: 1.5rem;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 3rem;
}

.security-feature {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.security-feature .feature-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.security-feature h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: clamp(3rem, 5vw, 4rem);
    padding-bottom: clamp(2rem, 3vw, 3rem);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.legal-section h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.375rem;
}

.legal-section h4 {
    color: var(--accent-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.125rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--accent-champagne);
    text-decoration: underline;
}

.important-note,
.disclaimer-box,
.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.important-note h3,
.disclaimer-box h4,
.highlight-box h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.company-info,
.contact-details {
    background: rgba(64, 64, 64, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.fundamental-notice {
    background: rgba(114, 47, 55, 0.3);
    border: 2px solid var(--error);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.fundamental-notice h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

/* Tables and Grids for Legal Content */
.purposes-grid,
.cookies-table,
.retention-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.purpose-item,
.cookie-row,
.retention-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: rgba(64, 64, 64, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.purpose-item h4,
.cookie-type,
.data-type {
    color: var(--accent-gold);
    font-weight: 600;
    flex: 0 0 200px;
    margin-bottom: 0.5rem;
}

.cookie-desc,
.cookie-duration,
.retention-period {
    color: var(--text-secondary);
    flex: 1;
}

.security-measures {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    flex: 1 1 300px;
    background: rgba(64, 64, 64, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.security-item h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    flex: 1 1 300px;
    background: rgba(64, 64, 64, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.right-item h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exercise-rights {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.children-protection {
    background: rgba(114, 47, 55, 0.2);
    border: 2px solid var(--error);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.parent-notice {
    background: rgba(114, 47, 55, 0.4);
    border: 1px solid var(--error);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.dpo-contact,
.aepd-contact {
    background: rgba(64, 64, 64, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-section {
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.contact-section h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.contact-btn .icon {
    font-size: 1.25rem;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.our-story {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.story-content {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 400px;
}

.story-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    position: relative;
}

.premium-badge {
    text-align: center;
    padding: 2rem;
}

.badge-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.badge-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.badge-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.our-values {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.value-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.differentiators {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.diff-content {
    max-width: 800px;
    margin: 0 auto;
}

.diff-header {
    text-align: center;
    margin-bottom: 3rem;
}

.diff-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diff-feature {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.diff-feature:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.feature-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.team-philosophy {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--accent-gold);
    margin: 2rem 0;
    position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-gold);
    position: absolute;
    top: -1rem;
}

.philosophy-quote::before {
    left: -2rem;
}

.philosophy-quote::after {
    right: -2rem;
}

.philosophy-stats {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.commitment {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.commitment-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 3rem;
}

.commitment-item {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.commitment-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.commitment-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.join-elite {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--gradient-luxury);
    text-align: center;
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-benefits {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit {
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
}

/* ===== RESPONSIBLE PLAY PAGE SPECIFIC ===== */
.principles {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.principle-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.principle-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.principle-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.self-assessment {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.assessment-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.assessment-questions {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin: 3rem 0;
}

.question-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.question-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.question-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.question-card li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.question-card li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.assessment-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.tools-controls {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.tool-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tool-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.tool-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.tool-card .btn {
    margin-top: 1.5rem;
}

.warning-signs {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.warning-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.signs-categories {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin: 3rem 0;
}

.signs-category {
    flex: 1 1 300px;
    max-width: 350px;
    background: rgba(114, 47, 55, 0.2);
    border: 1px solid var(--error);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.signs-category h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.signs-category ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.signs-category li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.signs-category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.help-cta {
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.help-cta h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.help-resources {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
}

.resource-card {
    flex: 1 1 350px;
    max-width: 400px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resource-header h3 {
    color: var(--accent-gold);
    margin: 0;
}

.resource-type {
    background: rgba(212, 175, 55, 0.2);
    color: var(--accent-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-contact {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.resource-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.resource-contact a {
    color: var(--accent-gold);
    text-decoration: none;
}

.resource-contact a:hover {
    text-decoration: underline;
}

.emergency-helpline {
    background: var(--gradient-luxury);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.helpline-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.helpline-features {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.helpline-features span {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.875rem;
}

.family-support {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: rgba(45, 45, 45, 0.3);
}

.support-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.family-tips {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin-top: 3rem;
}

.tip-card {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tip-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.our-commitment {
    padding: clamp(4rem, 6vw, 6rem) 0;
    background: var(--primary-charcoal);
}

.commitment-points {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
    margin: 3rem 0;
}

.commitment-point {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--gradient-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.commitment-point:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.point-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

.commitment-point h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-support {
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.contact-support h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.support-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-info {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    background: rgba(114, 47, 55, 0.2);
    border-top: 2px solid var(--error);
    padding: clamp(2rem, 3vw, 3rem) 0;
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.disclaimer-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.compliance-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.compliance-logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    max-height: 60px;
    min-width: 80px;
    min-height: 40px;
    background: transparent;
    border-radius: 4px;
    padding: 4px;
}

.compliance-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--error);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: clamp(3rem, 5vw, 4rem) 0 clamp(1.5rem, 2vw, 2rem);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.vip-hours {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Mobile Menu Display */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Adjust hero content */
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Adjust grids for mobile */
    .features-grid,
    .games-grid,
    .testimonials-grid,
    .values-grid,
    .principles-grid,
    .tools-grid,
    .benefits-grid,
    .security-features,
    .resources-grid,
    .family-tips,
    .commitment-points,
    .commitment-grid {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile specific adjustments */
    .form-row {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .story-content {
        flex-direction: column;
        text-align: center;
    }
    
    .story-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .philosophy-quote::before,
    .philosophy-quote::after {
        display: none;
    }
    
    .diff-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        width: auto;
        margin-bottom: 1rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .helpline-number {
        flex-direction: column;
    }
    
    .philosophy-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .join-benefits {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit {
        white-space: normal;
    }
    
    .signs-categories {
        flex-direction: column;
    }
    
    .assessment-questions {
        flex-direction: column;
    }
    
    .helpline-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .support-contact {
        flex-direction: column;
    }
    
    .account-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: center;
    }
    
    /* Modal adjustments */
    .modal-content {
        width: 95%;
        height: 95%;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Very small screens */
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding-top: clamp(7rem, 15vw, 9rem);
    }
    
    .age-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .purposes-grid .purpose-item,
    .cookie-row,
    .retention-row {
        flex-direction: column;
    }
    
    .purpose-item h4,
    .cookie-type,
    .data-type {
        flex: none;
        margin-bottom: 0.75rem;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .main-header,
    .mobile-menu,
    .age-modal,
    .cookie-bar,
    .btn,
    .footer {
        display: none !important;
    }
    
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    .legal-content {
        padding: 1rem 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .legal-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus,
.faq-question:focus,
.tab-btn:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-dark: #000000;
        --primary-charcoal: #111111;
        --text-primary: #ffffff;
        --text-secondary: #eeeeee;
        --accent-gold: #ffff00;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none; }
.visible { display: block; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.hero-background,
.page-header::before,
.feature-card::before {
    will-change: opacity;
}

.btn,
.game-card,
.feature-card,
.value-card,
.testimonial-card {
    will-change: transform;
}

/* Enable GPU acceleration for smooth animations */
.btn::before,
.game-card:hover .game-image img {
    transform: translateZ(0);
}
