:root {
    --bg-dark: #0b0f17;
    --bg-card: #151a25;
    --bg-overlay: rgba(11, 15, 23, 0.85);
    --primary: #00d1b2;
    --primary-hover: #00b89c;
    --text-light: #ffffff;
    --text-dim: #a0aec0;
    --border-color: #2d3748;
    --star-color: #f6ad55;
    --danger: #e53e3e;

    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
    --spacing-section: 80px;
}


* {
    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-light);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

img {
    max-width: 100%;
    display: block;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
    position: relative;
}


h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

h2 {
    font-size: 2.2rem;
    text-align: center;
}

.subheading {
    display: block;
    text-align: center;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
}

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

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

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-block {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--bg-dark);
}

.btn-block:hover {
    background-color: var(--primary-hover);
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background-color: rgba(11, 15, 23, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-list {
    display: flex;
    gap: 30px;
}

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

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

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    height: 100vh;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 15, 23, 0.7), var(--bg-dark));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    display: inline-block;
    background-color: rgba(0, 209, 178, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}


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

.top-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.top-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.top-card.featured {
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 209, 178, 0.1);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--bg-dark);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-bottom-left-radius: 10px;
}

.card-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.operator-logo {
    height: 50px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.rating .score {
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 5px;
}

.stars {
    color: var(--star-color);
    display: inline-block;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.bonus-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.bonus-box i {
    color: var(--primary);
}

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

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

.payments {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dim);
}

.card-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.terms {
    display: block;
    margin-top: 10px;
    font-size: 0.7rem;
    color: #666;
}


.about {
    background-color: #0e121b;
}

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

.about-text p {
    margin-bottom: 20px;
    color: var(--text-dim);
    font-size: 1.1rem;
}


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

.service-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background-color: #1a202e;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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


.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 250px;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid transparent;
}

.step-item:hover {
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
}


.trust-section {
    background-color: #0e121b;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1 1 200px;
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    background: rgba(0, 209, 178, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.trust-item h4 {
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}


.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.payment-card {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dim);
}

.payment-card i {
    font-size: 2rem;
    color: var(--text-light);
}


.review-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.review-stars {
    color: var(--star-color);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: var(--text-dim);
    margin-bottom: 15px;
}

.reviewer {
    font-weight: 700;
    text-align: right;
}


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

.faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #1a202e;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #202736;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.info-item h4 {
    margin-bottom: 5px;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-dim);
}

.contact-form {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
}

.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-color);
    border-radius: 5px;
    color: var(--text-light);
    font-family: inherit;
}

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


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

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

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

.footer-col p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

.footer-col ul li a {
    color: var(--text-dim);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.responsible-gaming {
    background-color: rgba(229, 62, 62, 0.1);
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

.rg-badge {
    background-color: var(--danger);
    color: white;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.75rem;
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: var(--bg-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-5px);
}


@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        background-color: var(--bg-card);
        padding: 80px 40px;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-toggle,
    .nav-close {
        display: block;
        color: var(--text-light);
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

.responsible-gaming-full {
    background-color: #121212;
    border-top: 1px solid #2d3748;
    border-bottom: 1px solid #2d3748;
}

.text-danger {
    color: var(--danger) !important;
}

.rg-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.rg-text p {
    color: var(--text-dim);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.rg-tips {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.rg-tip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.rg-tip-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.rg-resources {
    background-color: #1a202e;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #2d3748;
    position: relative;
    overflow: hidden;
}


.rg-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--danger);
}

.rg-resources h3 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.rg-resources p {
    color: var(--text-dim);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-btn {
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.resource-btn:hover {
    border-color: var(--text-dim);
    transform: translateX(5px);
    background-color: #151a25;
}

.res-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: var(--text-light);
}

.res-info {
    flex-grow: 1;
}

.res-info strong {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.res-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.arrow {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.self-exclusion-notice {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.self-exclusion-notice i {
    color: var(--danger);
    font-size: 1.2rem;
    margin-top: 3px;
}

.self-exclusion-notice p {
    margin-bottom: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}


@media (max-width: 968px) {
    .rg-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.legal-page .header {
    background-color: var(--bg-card);
    position: relative;

}

.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.legal-body section {
    margin-bottom: 40px;
}

.legal-body h2 {
    text-align: left;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.legal-body h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.legal-body p {
    margin-bottom: 15px;
    color: var(--text-dim);
    line-height: 1.8;
}

.legal-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: var(--text-dim);
}

.legal-body ul li {
    margin-bottom: 10px;
    padding-left: 5px;
}

.legal-body strong {
    color: var(--text-light);
}

.legal-body a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-body a:hover {
    text-decoration: none;
    color: var(--text-light);
}


@media (max-width: 768px) {
    .legal-body {
        padding: 20px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }
}

.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 7, 10, 0.98);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.age-modal-overlay.hidden {
    display: none;
}

.age-modal-content {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.age-icon {
    margin-bottom: 20px;
}

.age-badge {
    background-color: transparent;
    border: 3px solid var(--danger);
    color: var(--danger);
    font-size: 2rem;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: 50%;
    display: inline-block;
}

.age-modal-content h2 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.age-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0;
    color: var(--text-light);
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.age-disclaimer {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.age-disclaimer a {
    color: var(--text-dim);
    text-decoration: underline;
}


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-top: 1px solid var(--primary);
    padding: 20px 0;
    z-index: 9000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

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


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #1a202e;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
}

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

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

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

.modal-body {
    padding: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

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

.modal-footer {
    padding: 20px;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
}


.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

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

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

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

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

input:disabled+.slider {
    background-color: #4a5568;
    cursor: not-allowed;
}

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


@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .age-buttons {
        flex-direction: column;
    }
}