:root {
    --bg-dark: #121212;
    --surface-dark: #1e1e1e;
    --surface-light: #2a2a2a;
    --primary: #e6bc2f;

    --primary-hover: #cfa92a;
    --text-main: #f0f0f0;
    --text-muted: #b0b0b0;
    --success: #4caf50;
    --border: #333;
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
    --header-height: 70px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--surface-dark);
}

.section-darker {
    background-color: #0a0a0a;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.text-muted {
    color: var(--text-muted);
}


.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #121212;
}

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

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #121212;
}

.btn-outline {
    border: 1px solid var(--text-muted);
    color: #0a0a0a;
    padding: 10px 20px;
    font-size: 0.9rem; 
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.95);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#header.scrolled {
    background-color: rgba(18, 18, 18, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--surface-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: var(--transition);
}


.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}


.card {
    background-color: var(--surface-light);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.service-icon,
.game-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3,
.game-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p,
.game-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.text-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}


.process-step {
    background-color: var(--surface-dark);
    padding: 25px;
    border-radius: 10px;
    border-top: 3px solid var(--primary);
}

.step-icon {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
}


.operator-card {
    display: grid;
    grid-template-columns: 150px 1fr 200px 200px;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 20px;
}

.operator-logo img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.rating {
    color: var(--primary);
    margin-bottom: 10px;
}

.rating span {
    color: var(--text-main);
    font-weight: 700;
    margin-left: 5px;
}

.features-list li {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.features-list i {
    color: var(--success);
    margin-right: 8px;
}

.operator-meta h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.operator-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.operator-action {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ad-disclosure {
    font-size: 0.7rem;
    color: #555;
    margin-top: 5px;
}


.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.payment-item {
    background-color: var(--surface-light);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
}

.payment-item i {
    font-size: 1.5rem;
    color: var(--text-muted);
}


.rg-badge {
    background-color: #d32f2f;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rg-text {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

.rg-tips {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.rg-tips i {
    color: var(--success);
    margin-right: 5px;
}


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

.faq-item {
    margin-bottom: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background-color: var(--surface-light);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question.active {
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: var(--surface-dark);
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background-color: var(--surface-dark);
    padding: 40px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text-main);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}


footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    color: #666;
    font-size: 0.9rem;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 992px) {
    .operator-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .operator-logo img {
        width: 150px;
        margin: 0 auto;
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        flex-direction: column;
    }
}

.legal-content h1 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.legal-content p,
.legal-content li {
    color: #d0d0d0;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content strong {
    color: #fff;
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.warning-box {
    background-color: rgba(211, 47, 47, 0.1);
    border: 1px solid #d32f2f;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    color: #ffcccc;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: var(--surface-light);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: #d0d0d0;
}

.cookie-table th {
    background-color: var(--surface-dark);
    color: var(--primary);
    font-weight: 600;
}


.help-box {
    background-color: rgba(33, 150, 243, 0.1);
    border: 1px solid #2196f3;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.help-box h3 {
    color: #64b5f6;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.help-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.help-contact-item i {
    font-size: 1.2rem;
    color: #2196f3;
}/* --- Modals & Overlays --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Dark opacity */
    backdrop-filter: blur(8px); /* Modern blur effect */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-content {
    background-color: var(--surface-dark);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
}

/* Age Verification Specifics */
.modal-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.age-verification h2 {
    margin-bottom: 15px;
    color: var(--text-main);
}

.age-verification p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.modal-footer-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
}

/* --- Cookie Banner (Bottom) --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--surface-light);
    border-top: 1px solid var(--primary);
    padding: 20px;
    z-index: 9000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 800px;
}

.cookie-text a {
    color: var(--text-main);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* --- Cookie Settings Modal --- */
.cookie-preferences {
    text-align: left;
    max-width: 600px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255,255,255,0.03);
    border-radius: 8px;
}

.option-info strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
}

.option-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.full-width {
    width: 100%;
}

.full-width button {
    width: 100%;
}

/* Toggle Switch CSS */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #333;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}