:root {
    --primary-color: #2563EB;
    --secondary-color: #0EA5E9;
    --accent-color: #22C55E;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

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

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

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

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.hero-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.hero-card ul li i {
    color: var(--accent-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.about-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-feature-item i {
    color: var(--primary-color);
}

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

.card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.why-us-text {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.why-us-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.why-us-list li i {
    color: var(--secondary-color);
}

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

.bookmaker-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: box-shadow 0.3s;
}

.bookmaker-card:hover {
    box-shadow: var(--shadow-md);
}

.bookmaker-header {
    padding: 20px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.bookmaker-logo {
    height: 80px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.bookmaker-logo img {
    height: 100%;
}

.rating {
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.bookmaker-body p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.bonus-info {
    background: #f0fdf4;
    color: #166534;
    padding: 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.bookmaker-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.disclaimer-small {
    font-size: 0.8rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-gray);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.faq-item {
    background: var(--bg-white);
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: block;
}

.blog-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.contact-info-box h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
}

.contact-details i {
    color: var(--primary-color);
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.rg-block {
    background-color: #f1f5f9;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.rg-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rg-warning {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 15px;
}

.rg-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}



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

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .services-grid,
    .features-grid,
    .bookmakers-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .services-grid,
    .features-grid,
    .bookmakers-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

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

    .why-us-list {
        grid-template-columns: 1fr;
    }

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

.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;
    text-decoration: none;
    color: #ffffff;

}

.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;
    }
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-overlay.is-visible {
    display: flex;
}

.age-gate-modal {
    background: #ffffff;
    max-width: 480px;
    width: 90%;
    padding: 24px 24px 20px;
    border-radius: 18px;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.25);
    text-align: center;
    color: #0f172a;
}

.age-gate-modal h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.age-gate-modal p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.age-gate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.age-gate-btn {
    border-radius: 999px;
    padding: 0.7rem 1.7rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.age-gate-btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.age-gate-btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.5);
}

.age-gate-btn:focus {
    outline: 2px solid rgba(37, 99, 235, 0.7);
    outline-offset: 2px;
}

.age-gate-note {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    color: #0f172a;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    padding: 16px 20px;
    z-index: 9000;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner-text h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 540px;
}

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

.cookie-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.cookie-btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.5);
}

.cookie-btn:focus {
    outline: 2px solid rgba(37, 99, 235, 0.6);
    outline-offset: 2px;
}

.cookie-settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}

.cookie-settings-overlay.is-visible {
    display: flex;
}

.cookie-settings-modal {
    background: #ffffff;
    max-width: 520px;
    width: 90%;
    padding: 24px 24px 20px;
    border-radius: 18px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.25);
    color: #0f172a;
    position: relative;
}

.cookie-settings-modal h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-settings-modal p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.cookie-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-setting-item:last-of-type {
    border-bottom: none;
}

.cookie-setting-text h4 {
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}

.cookie-setting-text p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #4b5563;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #e5e7eb;
    border-radius: 999px;
    transition: 0.2s;
}

.cookie-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.25);
    transition: 0.2s;
}

.cookie-switch input:checked+.cookie-slider {
    background: #2563eb;
}

.cookie-switch input:checked+.cookie-slider:before {
    transform: translateX(18px);
}

.cookie-settings-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cookie-settings-note {
    margin-top: 8px;
    font-size: 0.78rem;
    color: #6b7280;
}

.cookie-settings-close {
    position: absolute;
    right: 14px;
    top: 10px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: #eef2ff;
    color: #111827;
    font-size: 1.1rem;
    cursor: pointer;
}

.cookie-settings-close:focus {
    outline: 2px solid rgba(37, 99, 235, 0.6);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-btn {
        width: auto;
    }
}

.page {
    padding-top: 75px;
}

.page .content-wrapper {
    background: var(--bg-white);
    margin: 40px auto;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

.page .last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 40px;
    display: block;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.page h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page p {
    margin-bottom: 16px;
    color: var(--text-gray);
}

.page ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-gray);
}

.page li {
    margin-bottom: 10px;
}

.page .contact-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}



@media (max-width: 768px) {
    .page .content-wrapper {
        padding: 30px 20px;
        margin: 20px auto;
    }

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

.contact-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

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

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {

    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

.alert-box {
    background-color: #FEF2F2;
    border-left: 4px solid var(--danger-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.alert-box h4 {
    color: #991B1B;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.alert-box p {
    color: #7F1D1D;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

.tip-card h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.tip-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.help-resources {
    margin-top: 40px;
    padding: 30px;
    background-color: #F0F9FF;
    border-radius: 12px;
    text-align: center;
}

.help-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
}

.help-btn:hover {
    background-color: #1d4ed8;
    color: #fff;
}



@media (max-width: 768px) {

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