/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Unique Color Palette */
    --primary-dark: #1a0f2e;
    --primary-purple: #2d1b4e;
    --accent-gold: #ffd700;
    --accent-copper: #b87333;
    --accent-emerald: #50c878;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --text-dark: #2c2c2c;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-overlay: rgba(26, 15, 46, 0.9);
    --shadow-soft: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(26, 15, 46, 0.3);
    
    /* Typography */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 4rem 0;
    --card-radius: 16px;
    --btn-radius: 8px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        var(--primary-purple) 50%, 
        #1e3c72 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(80, 200, 120, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(45, 27, 78, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.age-verification-modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-content p {
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.confirm-age-btn {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.confirm-age-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
}

/* Cookie Consent Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.cookie-modal.hidden {
    display: none;
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.cookie-header {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.cookie-header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.cookie-body {
    padding: 2rem;
    color: var(--text-dark);
}

.cookie-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-body a {
    color: var(--accent-emerald);
    text-decoration: none;
    font-weight: 600;
}

.cookie-body a:hover {
    text-decoration: underline;
}

.cookie-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.cookie-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(80, 200, 120, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(80, 200, 120, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2rem 2rem;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
    flex: 1;
}

.cookie-btn.accept-all {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
}

.cookie-btn.accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.4);
}

.cookie-btn.accept-necessary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: white;
}

.cookie-btn.accept-necessary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.cookie-btn.settings {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.cookie-btn.settings:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Cookie Banner (Bottom) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.4s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem;
    gap: 2rem;
}

.cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-banner-message {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-banner-message strong {
    color: var(--accent-gold);
}

.cookie-banner-message a {
    color: var(--accent-emerald);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--accent-emerald);
}

.cookie-banner-message a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-banner-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    white-space: nowrap;
}

.cookie-banner-btn.accept {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
}

.cookie-banner-btn.accept:hover {
    background: linear-gradient(135deg, #45b265 0%, #3a9b57 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.4);
}

.cookie-banner-btn.customize {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: white;
}

.cookie-banner-btn.customize:hover {
    background: linear-gradient(135deg, var(--accent-copper) 0%, #996f29 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cookie-banner-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(26, 15, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Offers Section */
.offers {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 700;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.offer-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 0;
    box-shadow: 0 10px 40px var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    border: 2px solid transparent;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-emerald) 100%);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-strong);
    border-color: var(--accent-gold);
}

.offer-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.offer-rating {
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.offer-content {
    padding: 0 2rem 1rem;
}

.offer-bonus {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: white;
}

.bonus-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

.offer-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
}

.offer-footer {
    padding: 1rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.responsible-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.age-restriction {
    background: linear-gradient(135deg, #ff6b6b 0%, #e55656 100%);
    color: white;
    font-weight: 900;
    font-family: var(--font-display);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
}

.responsible-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.responsible-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.help-resources {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--card-radius);
    backdrop-filter: blur(10px);
}

.help-resources h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-family: var(--font-display);
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.help-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.help-icon {
    font-size: 1.2rem;
}

.regulator-logos h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-family: var(--font-display);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.logo-link {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.logo-link:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.regulator-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.regulator-logo:hover {
    filter: brightness(1.3);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-gold);
    font-family: var(--font-display);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section ul {
    color: var(--text-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.disclaimer small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    padding: 1.5rem 0;
    z-index: 9999;
    border-top: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px var(--shadow-strong);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-light);
}

.cookie-content p a {
    color: var(--accent-gold);
    text-decoration: none;
}

.cookie-content p a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Mobile Navigation */
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Offers */
    .section-title {
        font-size: 2rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offer-card {
        margin: 0 0.5rem;
    }

    /* Responsible Gaming */
    .responsible-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .responsible-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Cookie Consent */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    /* Age Verification Modal */
    .modal-content {
        padding: 1.5rem;
        max-width: 350px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    .confirm-age-btn {
        min-width: 100%;
    }

    /* Cookie Modal Mobile */
    .cookie-modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .cookie-header {
        padding: 1rem 1.5rem;
    }

    .cookie-header h2 {
        font-size: 1.2rem;
    }

    .cookie-body {
        padding: 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
        padding: 0 1.5rem 1.5rem;
    }

    .cookie-btn {
        width: 100%;
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    /* Cookie Banner Mobile */
    .cookie-banner-content {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-banner-text {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cookie-banner-icon {
        font-size: 1.5rem;
    }

    .cookie-banner-message {
        font-size: 0.9rem;
    }

    .cookie-banner-actions {
        justify-content: center;
        gap: 0.5rem;
    }

    .cookie-banner-btn {
        flex: 1;
        min-width: 80px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .offer-card {
        margin: 0;
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Page Styles */

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
}

.about-main {
    padding: var(--section-padding);
}

.about-section {
    margin-bottom: 4rem;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.text-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.text-content p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
}

.expertise-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-emerald);
    font-weight: bold;
}

.image-content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--card-radius);
    backdrop-filter: blur(10px);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.commitment-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--card-radius);
    text-align: center;
    backdrop-filter: blur(10px);
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.action-item {
    text-align: center;
}

.action-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0;
    text-align: center;
}

.contact-main {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--btn-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--btn-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--card-radius);
    backdrop-filter: blur(10px);
}

.contact-info-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.response-info,
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.response-item,
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.response-item:last-child,
.hours-item:last-child {
    border-bottom: none;
}

.important-notice {
    border: 2px solid var(--accent-gold);
}

/* Policy Pages Styles */
.policy-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.policy-main {
    padding: 2rem 0 4rem;
}

.policy-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.policy-nav {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--card-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(10px);
}

.policy-nav h2 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.policy-nav ul {
    list-style: none;
}

.policy-nav ul li {
    margin-bottom: 0.5rem;
}

.policy-nav ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.policy-nav ul li a:hover {
    color: var(--accent-gold);
}

.policy-sections {
    max-width: 800px;
}

.policy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.policy-section h2 {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--accent-gold);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.policy-section p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: var(--text-gray);
    margin: 1rem 0 1rem 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.rights-contact,
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

/* Cookie Policy Specific Styles */
.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-manager {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: var(--card-radius);
    margin-bottom: 3rem;
    text-align: center;
}

.cookie-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cookie-control-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-control-btn.accept {
    background: var(--accent-emerald);
    color: white;
}

.cookie-control-btn.reject {
    background: #ff6b6b;
    color: white;
}

.cookie-control-btn.reset {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.cookie-section {
    margin-bottom: 3rem;
}

.cookie-section h2 {
    color: var(--text-light);
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.cookie-type h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.cookie-examples {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cookie-note {
    font-style: italic;
    color: var(--accent-emerald);
    margin-top: 1rem;
}

.cookie-duration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.duration-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.browser-guides a {
    color: var(--accent-gold);
    text-decoration: none;
}

.browser-guides a:hover {
    text-decoration: underline;
}

.cookie-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.third-party-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 1rem 0;
}

/* Terms of Service Specific Styles */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.acceptance-notice {
    background: linear-gradient(135deg, #ff6b6b 0%, #e55656 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--card-radius);
    margin-bottom: 3rem;
    text-align: center;
}

.terms-section {
    margin-bottom: 3rem;
    scroll-margin-top: 100px;
}

.terms-section h2 {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.terms-highlights {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.disclaimer-box,
.liability-box {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.gambling-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.final-agreement {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--card-radius);
    text-align: center;
    margin-top: 3rem;
}

/* Responsible Gambling Page Styles */
.responsible-hero {
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.responsible-hero-content {
    position: relative;
}

.age-warning {
    background: linear-gradient(135deg, #ff6b6b 0%, #e55656 100%);
    color: white;
    font-weight: 900;
    font-family: var(--font-display);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.emergency-help {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 12px;
    display: inline-block;
}

.emergency-btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--btn-radius);
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #e55656;
    transform: translateY(-2px);
}

.responsible-main {
    padding: var(--section-padding);
}

.responsible-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.section-header h2 {
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 2rem;
}

.warning-text {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 2rem;
}

.age-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.fact-item h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.verification-commitment {
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid var(--accent-emerald);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.risk-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.risk-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.risk-category h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-signs {
    background: rgba(255, 107, 107, 0.05);
    border: 1px solid rgba(255, 107, 107, 0.3);
    padding: 3rem;
    border-radius: var(--card-radius);
}

.warning-checklist {
    margin: 2rem 0;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checklist-result {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.safety-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.tip-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.tip-category h3 {
    color: var(--accent-emerald);
    margin-bottom: 1rem;
}

.exclusion-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.exclusion-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.highlight-exclusion {
    background: rgba(80, 200, 120, 0.1);
    border: 2px solid var(--accent-emerald);
}

.exclusion-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--btn-radius);
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.exclusion-btn:hover {
    transform: translateY(-2px);
}

.exclusion-support {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-gold);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.support-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: var(--card-radius);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.support-organization {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.org-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.org-logo {
    width: 60px;
    height: auto;
    filter: brightness(1.2);
}

.org-header h3 {
    color: var(--accent-gold);
    font-family: var(--font-display);
}

.org-services h4 {
    color: var(--accent-emerald);
    margin-bottom: 1rem;
}

.org-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: var(--btn-radius);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-btn.phone {
    background: var(--accent-emerald);
    color: white;
}

.contact-btn.website {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
}

.additional-resources {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.family-support {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.family-tips,
.family-resources {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.final-message {
    background: linear-gradient(135deg, var(--accent-emerald) 0%, #45b265 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: var(--card-radius);
    text-align: center;
}

.message-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.emergency-contacts {
    margin-top: 3rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.emergency-contact:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info {
    text-align: center;
}

/* Mobile Responsive Styles for New Pages */
@media (max-width: 768px) {
    /* About Page Mobile */
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
    }
    
    .commitment-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Contact Page Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-controls {
        flex-direction: column;
    }
    
    /* Policy Pages Mobile */
    .policy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-nav {
        position: static;
        margin-bottom: 2rem;
    }
    
    /* Cookie Policy Mobile */
    .cookie-duration {
        grid-template-columns: 1fr;
    }
    
    /* Responsible Gaming Mobile */
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .age-facts,
    .risk-categories,
    .safety-tips,
    .exclusion-options,
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .family-support {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
}

/* Hidden class for JavaScript */
.hidden {
    display: none !important;
} 