:root {
    --primary-color: #0B132B;
    --secondary-color: #1C2541;
    --accent-color: #F5A623;
    --accent-hover: #e0961a;
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #ffffff;
    --bg-light: #F4F4F6;
    --white: #ffffff;
    --border-color: #e1e4e8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

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

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

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


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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


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

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

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

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}


.header {
    background-color: var(--primary-color);
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

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

.brand {
    display: flex;
    flex-direction: column;
}

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

.domain-text {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    color: #e2e8f0;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-cta {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}


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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 19, 43, 0.95), rgba(11, 19, 43, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(245, 166, 35, 0.2);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--accent-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 6px;
}


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

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}


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

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}


.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card .card-subtitle {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}


.steps-grid {
    position: relative;
}

.step-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: -50px auto 20px auto;
    border: 4px solid var(--white);
}


.bookmaker-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.bm-header {
    background-color: var(--secondary-color);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.bm-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bm-logo {
    width: 120px;
    background: var(--white);
    padding: 5px;
    border-radius: 4px;
}

.bm-title-group h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.bm-rating {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.bm-badges .badge-outline {
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.bm-body {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bm-info-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 8px;
}

.bm-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    gap: 10px;
}

.bm-list li i {
    color: #38a169;
    margin-top: 4px;
}

.bm-bonus-box {
    background-color: rgba(245, 166, 35, 0.1);
    border: 1px dashed var(--accent-color);
    padding: 15px;
    border-radius: 6px;
}

.bm-bonus-box strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.bonus-note {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.payment-icons-small {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefits .subtitle {
    margin-bottom: 3rem;
}

.benefit-block {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.benefit-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}


.benefit-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.benefit-block:hover::before {
    transform: scaleX(1);
}


.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: rgba(245, 166, 35, 0.1);
    color: var(--accent-color);
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition);
}


.benefit-block:hover .benefit-icon {
    background-color: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}


.benefit-block h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-block p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.pay-tag {
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
}

.bm-footer {
    padding: 20px 30px;
    background-color: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.bm-cta {
    margin-bottom: 15px;
}

.bm-disclaimer {
    font-size: 0.75rem;
    color: #718096;
    margin-bottom: 0;
}

.editorial-note {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}


.benefit-block {
    padding: 20px;
}

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


.pay-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.payment-note {
    font-size: 0.9rem;
}


.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
}


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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.faq-answer p {
    padding-bottom: 20px;
    margin-bottom: 0;
}

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

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


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

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

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.privacy-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
}


.responsible-strip {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 20px 0;
    font-size: 0.9rem;
}

.responsible-strip p {
    margin-bottom: 0;
    color: inherit;
}




.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bm-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }


}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }

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

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

    .burger-menu {
        display: block;
    }

    .nav-cta {
        margin-top: 20px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

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

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

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

    .bm-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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


}

@media (max-width: 480px) {

    .grid-4,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

.ke-footer {
    background: #080808;
    color: #e5e7eb;
    padding: 32px 16px 20px;
    font-size: 0.9rem;
}

.ke-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.ke-footer-left,
.ke-footer-center {
    flex: 1 1 260px;
}

.ke-footer-logo {
    font-size: 24px;
    font-weight: 700;

}

.ke-footer-tagline {
    max-width: 260px;
    line-height: 1.4;
    color: #9ca3af;
}

.ke-footer-center p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.ke-footer-links {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
}

.ke-footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.ke-footer-links a:hover {
    color: #fbbf24;
}


.ke-footer-regulators {
    max-width: 1180px;
    margin: 18px auto 0;
    padding-top: 14px;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reg-label {
    font-weight: 600;
    color: #d1d5db;
}

.reg-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.reg-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.75);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.reg-logos a:hover {
    transform: translateY(-1px);
}

.reg-logos img {
    height: 80px;
}


.ke-footer-age {
    max-width: 1180px;
    margin: 10px auto 0;
    display: flex;
    justify-content: flex-end;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #f97316;
    font-weight: 700;
    font-size: 0.9rem;
    color: #f97316;
}


.ke-footer-bottom {
    max-width: 1180px;
    margin: 10px auto 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    padding-top: 8px;
}


@media (max-width: 900px) {
    .ke-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ke-footer-links {
        margin-left: 0;
    }

    .ke-footer-age {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .ke-footer-regulators {
        align-items: flex-start;
    }

    .reg-logos {
        justify-content: flex-start;
    }

    .ke-footer-bottom {
        margin-top: 14px;
    }

    .ke-footer-left,
    .ke-footer-center {
        flex: auto;
    }

    .ke-footer-links {
        flex: auto;
    }
}

.page-header {
    background-color: var(--primary-color);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
}

.highlight-box {
    background-color: rgba(245, 166, 35, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 500;
}

.hidden {
    display: none !important;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-md);
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

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

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

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    margin-top: 10px;
}

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

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


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    padding: 20px 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

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

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}


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

.modal-header h3 {
    margin-bottom: 0;
}

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

.cookie-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--bg-light);
}

.cookie-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cookie-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
}


.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    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: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

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

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

.slider.disabled {
    background-color: var(--accent-color);
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}