:root {
    --bg-main: #0b0f19;
    --bg-darker: #05070c;
    --bg-card: rgba(26, 30, 46, 0.8);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f5cc47;
    --accent-blue: #00d2ff;
    --accent-blue-hover: #3adaff;
    --danger: #ef4444;
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 12px;
}


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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

.section {
    padding: 80px 0;
}

.padding-lg {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

.hidden {
    display: none !important;
}


h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 15px;
}

h2 {
    font-size: 2.5rem;
}

.section-title {
    margin-bottom: 50px;
}

.section-title p {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
}

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


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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-hover), var(--accent-gold));
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    color: var(--text-muted);
    text-decoration: underline;
}

.btn-text:hover {
    color: #fff;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

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


header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.sticky {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
}

header.sticky .header-container {
    height: 60px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent-gold);
}

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

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: var(--transition);
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('../img/hero.png') center/cover no-repeat;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 7, 12, 0.9) 0%, rgba(11, 15, 25, 0.7) 100%);
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge.warning {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--accent-gold);
}


.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.about-text strong {
    color: #fff;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 210, 255, 0.1);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
}


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

.service-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
}

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


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    border-top: 3px solid var(--accent-blue);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin: 0 auto 20px;
    border: 2px solid rgba(0, 210, 255, 0.3);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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


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

.bookmaker-card {
    background: var(--bg-main);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bookmaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

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

.bm-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
}

.bm-rating {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.bm-features {
    margin: 15px 0;
}

.bm-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bm-features i {
    color: #10b981;
    margin-top: 4px;
}

.bm-contact {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.bm-contact p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.bm-contact i {
    width: 20px;
    color: var(--accent-blue);
}

.bm-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
}


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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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


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

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

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

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

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

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

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

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


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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-line {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-line i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.disclaimer-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    padding: 15px;
    font-size: 0.9rem;
    color: #fca5a5;
    border-radius: 0 8px 8px 0;
}

.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(0, 0, 0, 0.5);
}

.form-success-msg {
    margin-top: 15px;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid #10b981;
    border-radius: 6px;
    text-align: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-darker);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: var(--transition);
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.warning-icon {
    font-size: 3rem;
    color: var(--danger);
    margin-bottom: 20px;
}

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


.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 9998;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: bottom 0.5s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}


.cookie-options {
    margin-top: 20px;
}

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

.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: #333;
    transition: .4s;
}

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

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

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

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

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(11, 15, 25, 0.98);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        padding-top: 50px;
        transition: 0.4s ease;
        gap: 30px;
    }

    header.sticky .nav-links {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .nav-links.active {
        right: 0;
    }

    .header-cta {
        display: none;
    }

    .burger {
        display: block;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

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

.sr-footer {
    background: #0b1017;
    color: #f4f4f4;
    font-size: 14px;
    line-height: 1.6;
    padding: 40px 20px 24px;
}

.sr-footer a {
    color: #f3cf55;
    text-decoration: none;
}

.sr-footer a:hover {
    text-decoration: underline;
}

.sr-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sr-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.sr-footer-brand {
    max-width: 520px;
}

.sr-footer-logo {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sr-footer-brand-text {
    margin: 0;
    opacity: 0.9;
}

.sr-footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sr-badge {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(243, 207, 85, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 15, 0.7);
}

.sr-badge img {
    height: 60px;
    display: block;
}

.sr-badge-18 {
    background: #c0392b;
    border-color: #c0392b;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}



.sr-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-top: 12px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sr-footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sr-footer-col p {
    margin: 0 0 8px;
    opacity: 0.9;
}

.sr-footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sr-footer-nav li {
    margin-bottom: 6px;
}

.sr-footer-nav a {
    font-size: 14px;
}



.sr-footer-bottom {
    margin-top: 18px;
}

.sr-footer-disclaimer {
    margin: 0 0 10px;
    font-size: 13px;
    opacity: 0.9;
}

.sr-footer-copy {
    margin: 0 0 6px;
    font-size: 13px;
    opacity: 0.85;
}

.sr-footer-en {
    margin: 0;
    font-size: 12px;
    opacity: 0.75;
}



@media (max-width: 992px) {
    .sr-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sr-footer-top {
        flex-direction: column;
    }

    .sr-footer-columns {
        grid-template-columns: 1fr;
    }

    .sr-footer {
        padding: 28px 16px 20px;
    }
}

.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: url('../img/hero.png') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.page-header p {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 500;
}

.relative {
    position: relative;
}

.z-index-2 {
    z-index: 2;
}


.legal-section {
    background-color: var(--bg-main);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-content ul li::before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -10px;
    top: 6px;
    font-size: 0.4rem;
    color: var(--accent-blue);
}

.legal-content a {
    color: var(--accent-blue);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: var(--transition);
}

.legal-content a:hover {
    text-decoration-color: var(--accent-blue);
    color: #fff;
}


@media screen and (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .legal-container {
        padding: 30px 20px;
        margin-top: -20px;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }
}