/* BetElite France - Premium French Bookmaker Aggregator Design */
:root {
    /* Premium French Color Palette */
    --premium-black: #0a0a0a;           /* Deep black */
    --premium-dark: #1a1a1a;            /* Rich dark */
    --premium-charcoal: #2c1810;        /* Dark brown */
    --royal-gold: #d4af37;              /* Royal gold */
    --bright-gold: #ffd700;             /* Bright gold */
    --deep-gold: #b8860b;               /* Deep gold */
    --french-blue: #002654;             /* French blue */
    --french-red: #ce1126;              /* French red */
    --silver-accent: #c0c0c0;           /* Silver */
    --pearl-white: #f8f8f8;             /* Pearl white */
    --text-light: #e0e0e0;              /* Light text */
    --text-dark: #333333;               /* Dark text */
    --success-green: #28a745;
    --error-red: #dc3545;
    --warning-orange: #fd7e14;
    
    /* Spacing and Layout */
    --container-max: 1200px;
    --border-radius: 8px;
    --premium-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    --dark-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--premium-dark) 50%, var(--premium-charcoal) 100%);
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
    font-family: 'Georgia', serif;
}

p {
    margin-bottom: 1rem;
    word-wrap: break-word;
}

/* Container and Layout */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--french-blue) 50%, var(--royal-gold) 100%);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--dark-shadow);
    border-bottom: 2px solid var(--royal-gold);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 16px;
}

.nav-brand h1 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    margin: 0;
    color: var(--bright-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--pearl-white);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    white-space: nowrap;
    font-weight: 600;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--royal-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Mobile Burger Menu */
.burger-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: var(--bright-gold);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--french-blue) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    gap: 16px;
    z-index: 999;
    border-top: 2px solid var(--royal-gold);
    box-shadow: var(--dark-shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--pearl-white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--royal-gold);
}

.mobile-menu a:hover {
    background: var(--royal-gold);
    color: var(--premium-black);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: url('../images/hero_desktop_bg.png') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(0,38,84,0.7) 50%, rgba(212,175,55,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    color: var(--bright-gold);
    font-family: 'Georgia', serif;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    word-wrap: break-word;
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--bright-gold) 100%);
    color: var(--premium-black);
    box-shadow: var(--premium-shadow);
    border: 2px solid var(--deep-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--bright-gold) 0%, var(--royal-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pearl-white);
    border: 2px solid var(--royal-gold);
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--royal-gold);
    color: var(--premium-black);
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 3rem;
    color: var(--bright-gold);
    position: relative;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-gold) 0%, var(--bright-gold) 100%);
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212,175,55,0.3);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--premium-dark) 0%, var(--french-blue) 100%);
}

.advantages-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

.advantage-card {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--premium-dark) 100%);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--premium-shadow);
    border: 2px solid var(--royal-gold);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.3);
    border-color: var(--bright-gold);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(212,175,55,0.3));
}

.advantage-card h3 {
    color: var(--bright-gold);
    margin-bottom: 16px;
    font-size: 1.4rem;
    font-family: 'Georgia', serif;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Bookmakers Section */
.bookmakers-section {
    padding: 80px 0;
    background: var(--premium-black);
}

.bookmakers-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

.bookmaker-card {
    background: linear-gradient(135deg, var(--premium-dark) 0%, var(--premium-charcoal) 100%);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--premium-shadow);
    border: 2px solid var(--royal-gold);
    transition: var(--transition);
}

.bookmaker-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.4);
    border-color: var(--bright-gold);
}

.bookmaker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.bookmaker-logo {
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: var(--border-radius);
    border: 2px solid var(--royal-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.bookmaker-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stars {
    color: var(--bright-gold);
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.rating-text {
    color: var(--silver-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.bookmaker-info h3 {
    color: var(--bright-gold);
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-family: 'Georgia', serif;
}

.bookmaker-bonus {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--bright-gold) 100%);
    color: var(--premium-black);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.bookmaker-features {
    list-style: none;
    margin-bottom: 24px;
}

.bookmaker-features li {
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 8px;
}

.bookmaker-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--premium-charcoal) 0%, var(--premium-dark) 100%);
}

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

.faq-item {
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    border: 1px solid var(--royal-gold);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--deep-gold) 100%);
    color: var(--premium-black);
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    word-wrap: break-word;
    font-family: 'Georgia', serif;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--bright-gold) 0%, var(--royal-gold) 100%);
}

.faq-answer {
    display: none;
    background: var(--premium-black);
    padding: 20px 24px;
    color: var(--text-light);
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--premium-black);
}

.testimonials-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--premium-dark) 0%, var(--premium-charcoal) 100%);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--premium-shadow);
    border-left: 5px solid var(--royal-gold);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateX(10px);
    border-left-color: var(--bright-gold);
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-author strong {
    color: var(--bright-gold);
    display: block;
    margin-bottom: 4px;
    font-family: 'Georgia', serif;
}

.testimonial-author span {
    color: var(--silver-accent);
    font-size: 0.9rem;
}

/* Leaderboard */
.leaderboard-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--premium-charcoal) 0%, var(--premium-dark) 100%);
}

.leaderboard-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.leader-card {
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--premium-dark) 100%);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--premium-shadow);
    transition: var(--transition);
    border: 1px solid var(--royal-gold);
}

.leader-card:hover {
    transform: translateX(15px);
    border-color: var(--bright-gold);
}

.leader-rank {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--bright-gold) 100%);
    color: var(--premium-black);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.leader-info {
    flex: 1;
}

.leader-info h3 {
    margin: 0 0 6px 0;
    color: var(--bright-gold);
    font-size: 1.2rem;
    font-family: 'Georgia', serif;
}

.leader-info p {
    margin: 0;
    color: var(--silver-accent);
    font-size: 0.9rem;
}

.leader-score {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bright-gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Disclaimer */
.disclaimer-section {
    padding: 60px 0;
    background: var(--premium-black);
    border-top: 3px solid var(--royal-gold);
}

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

.disclaimer-content h3 {
    color: var(--bright-gold);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.help-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.help-logo {
    height: 45px;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--royal-gold);
}

/* Для логотипов GameCare и GambleAware (нужен белый фон) */
.help-logo[src*="gambleaware"],
.help-logo[src*="gamecare"] {
    background: rgba(255, 255, 255, 0.9);
    filter: brightness(1.1) contrast(1.1);
}

/* Для остальных логотипов (без фона) */
.help-logo[src*="anj"], 
.help-logo[src*="juegos"], 
.help-logo[src*="mediateurdesjeuxenligne"] {
    background: transparent;
    filter: brightness(1.3) contrast(1.2);
}

.help-logo:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    border-color: var(--bright-gold);
}

.help-logo[src*="gambleaware"]:hover,
.help-logo[src*="gamecare"]:hover {
    filter: brightness(1.3) contrast(1.2);
}

.help-logo[src*="anj"]:hover,
.help-logo[src*="juegos"]:hover,
.help-logo[src*="mediateurdesjeuxenligne"]:hover {
    filter: brightness(1.5) contrast(1.3);
}

.help-phone {
    font-size: 1.3rem;
    color: var(--bright-gold);
    margin-top: 24px;
    font-family: 'Georgia', serif;
}

/* Footer */
.footer {
    background: var(--premium-black);
    color: var(--text-light);
    padding: 50px 0 25px;
    border-top: 3px solid var(--royal-gold);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    max-width: 400px;
    margin: 0 auto 32px auto;
}

.footer-nav a:last-child {
    grid-column: 1 / -1;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    background: linear-gradient(135deg, var(--premium-dark) 0%, var(--premium-charcoal) 100%);
    border: 1px solid var(--royal-gold);
    text-align: center;
    display: block;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: var(--bright-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 40px;
    object-fit: contain;
    transition: var(--transition);
    padding: 6px;
    border-radius: 4px;
    border: 1px solid var(--royal-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

/* Для логотипов GameCare и GambleAware (нужен белый фон) */
.footer-logos img[src*="gambleaware"],
.footer-logos img[src*="gamecare"] {
    background: rgba(255, 255, 255, 0.9);
    filter: brightness(1.1);
}

/* Для остальных логотипов (без фона) */
.footer-logos img[src*="anj"], 
.footer-logos img[src*="juegos"], 
.footer-logos img[src*="mediateurdesjeuxenligne"] {
    background: transparent;
    filter: brightness(1.3) contrast(1.2);
}

.footer-logos img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    border-color: var(--bright-gold);
}

.footer-logos img[src*="gambleaware"]:hover,
.footer-logos img[src*="gamecare"]:hover {
    filter: brightness(1.3);
}

.footer-logos img[src*="anj"]:hover,
.footer-logos img[src*="juegos"]:hover,
.footer-logos img[src*="mediateurdesjeuxenligne"]:hover {
    filter: brightness(1.5) contrast(1.3);
}

.age-indicator {
    background: linear-gradient(135deg, var(--royal-gold) 0%, var(--bright-gold) 100%);
    color: var(--premium-black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(212,175,55,0.4);
}

.footer-text {
    text-align: center;
    color: var(--silver-accent);
    font-size: 0.9rem;
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-content {
    background: linear-gradient(135deg, var(--premium-dark) 0%, var(--premium-charcoal) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    box-shadow: var(--premium-shadow);
    border: 2px solid var(--royal-gold);
}

.popup-content h2 {
    color: var(--bright-gold);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.popup-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Account Page Styles */
.account-section {
    padding: 140px 0 80px;
    background: var(--premium-dark);
    min-height: 100vh;
}

.account-content {
    max-width: 1200px;
    margin: 0 auto;
}

.account-intro {
    text-align: center;
    margin-bottom: 48px;
}

.account-intro h2 {
    color: var(--royal-gold);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 16px;
}

.account-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.account-card {
    background: linear-gradient(135deg, var(--premium-charcoal) 0%, var(--premium-dark) 100%);
    border: 1px solid var(--royal-gold);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.account-card h3 {
    color: var(--royal-gold);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.account-card p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Preferences Form */
.preferences-form {
    text-align: left;
}

.preferences-form label {
    color: var(--royal-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.checkbox-group {
    margin: 16px 0 24px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    accent-color: var(--royal-gold);
}

/* Favorites List */
.favorites-list {
    text-align: left;
}

.favorite-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
}

.favorite-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.favorite-item span {
    color: var(--text-light);
    flex: 1;
}

.btn-remove {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-remove:hover {
    background: #dc3545;
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--royal-gold);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* History List */
.history-list {
    text-align: left;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 8px;
}

.history-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.history-site {
    color: var(--text-light);
    font-weight: 600;
}

.history-date {
    color: var(--text-light);
    opacity: 0.6;
    font-size: 0.85rem;
}

.history-action {
    color: var(--royal-gold);
    font-size: 0.9rem;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 12px;
}

/* Toggle Switches */
.notification-settings {
    text-align: left;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-light);
    cursor: pointer;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

input[type="checkbox"]:checked + .toggle-slider {
    background: var(--royal-gold);
}

input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(26px);
}

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

/* Settings Options */
.settings-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-danger {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-danger:hover {
    background: #dc3545;
    color: white;
}

/* Account Notice */
.account-notice {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--royal-gold);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.account-notice h3 {
    color: var(--royal-gold);
    margin-bottom: 16px;
}

.account-notice p {
    color: var(--text-light);
    line-height: 1.6;
}

.account-notice a {
    color: var(--royal-gold);
    text-decoration: underline;
}

/* Responsible Gaming Page Styles */
.responsible-section {
    padding: 140px 0 80px;
    background: var(--premium-dark);
    min-height: 100vh;
}

.responsible-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-warning {
    text-align: center;
    margin-bottom: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 1px solid #dc3545;
    border-radius: var(--border-radius);
}

.intro-warning h2 {
    color: #dc3545;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-bottom: 16px;
}

.intro-warning p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.responsible-card {
    background: linear-gradient(135deg, var(--premium-charcoal) 0%, var(--premium-dark) 100%);
    border: 1px solid var(--royal-gold);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
}

.responsible-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.warning-card {
    border-color: #dc3545;
}

.warning-card:hover {
    box-shadow: 0 8px 32px rgba(220, 53, 69, 0.2);
}

.tips-card {
    border-color: #28a745;
}

.tips-card:hover {
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.2);
}

.responsible-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.responsible-card h3 {
    color: var(--royal-gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    text-align: center;
}

.responsible-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.responsible-card ul {
    color: var(--text-light);
    padding-left: 20px;
    line-height: 1.8;
}

.responsible-card li {
    margin-bottom: 8px;
}

/* Assessment Questions */
.assessment-questions {
    margin-top: 16px;
}

.question {
    margin-bottom: 12px;
}

.question label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

.question input[type="checkbox"] {
    accent-color: var(--royal-gold);
}

.assessment-result {
    margin-top: 16px;
    padding: 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--royal-gold);
}

/* Tools List */
.tools-list {
    margin-top: 16px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
}

.tool-name {
    color: var(--royal-gold);
    font-weight: 600;
}

.tool-desc {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Budget Calculator */
.budget-calculator {
    margin-top: 16px;
}

.budget-calculator label {
    display: block;
    color: var(--royal-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.budget-calculator input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--royal-gold);
    border-radius: var(--border-radius);
    color: var(--text-light);
    margin-bottom: 16px;
}

.budget-result {
    margin-top: 16px;
    padding: 16px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
    border-radius: var(--border-radius);
}

.budget-result p {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Help Resources */
.help-resources {
    margin-top: 16px;
}

.help-resource {
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

.help-resource h4 {
    color: var(--royal-gold);
    margin-bottom: 8px;
}

.help-resource p {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

/* Legal Info */
.legal-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid var(--royal-gold);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 32px;
}

.legal-info h3 {
    color: var(--royal-gold);
    margin-bottom: 16px;
}

.legal-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-info ul {
    color: var(--text-light);
    padding-left: 20px;
    line-height: 1.8;
}

.legal-info li {
    margin-bottom: 8px;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
    margin-bottom: 32px;
}

.emergency-contact h3 {
    color: #dc3545;
    margin-bottom: 16px;
}

.emergency-box {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border: 2px solid #dc3545;
    border-radius: var(--border-radius);
    padding: 32px;
    max-width: 500px;
    margin: 0 auto;
}

.emergency-number {
    font-size: 2rem;
    font-weight: bold;
    color: #dc3545;
    margin: 16px 0;
}

.emergency-box p {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--premium-black) 0%, var(--premium-charcoal) 100%);
    color: var(--text-light);
    padding: 24px;
    border-radius: var(--border-radius);
    max-width: 380px;
    box-shadow: var(--premium-shadow);
    z-index: 1500;
    animation: slideIn 0.5s ease;
    border: 2px solid var(--royal-gold);
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.cookie-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-buttons .btn-primary {
    padding: 10px 18px;
    font-size: 0.9rem;
    min-width: auto;
}

.cookie-buttons .btn-secondary {
    padding: 8px 14px;
    font-size: 0.85rem;
    min-width: auto;
    border-width: 1px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .burger-btn {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .bookmakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .container {
        padding: 0 24px;
    }
    
    .bookmaker-buttons {
        justify-content: flex-start;
    }
    
    .footer-nav {
        display: flex;
        justify-content: center;
        gap: 32px;
        max-width: none;
    }
    
    .footer-nav a {
        background: transparent;
        border: none;
        padding: 10px 15px;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Accessibility and Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .popup-overlay, .cookie-consent {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
        padding: 40px 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-light: #ffffff;
        --premium-black: #000000;
        --royal-gold: #ffff00;
    }
}
