 
:root {
    
    --bg-body: #121212;       
    --bg-card: #1e1e1e;       
    --bg-darker: #0d0d0d;     
    --bg-input: #2a2a2a;
    
    
    --text-main: #f5f5f5;
    --text-muted: #b0b0b0;
    
    
    --primary: #00e5ff;       
    --secondary: #bf00ff;     
    --accent: #ffce00;        
    --danger: #ff4444;        
    
    
    --max-width: 1200px;
    --border-radius: 12px;
    --header-height: 80px;
    
    
    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 15px rgba(0, 229, 255, 0.2);
    --font-main: 'Inter', sans-serif;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    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%;
    height: auto;
    display: block;
}


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

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1.5rem; } 
h1, h2, h3, h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

.subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -0.5rem;
    margin-bottom: 3rem; 
    display: block;
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}
 
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
}


.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: #00b8cc;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}


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

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    color: #fff;
}
 
#header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px); 
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

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

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

.nav-menu a:not(.btn-nav):hover {
    color: var(--primary);
}


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

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--primary) !important;
}

.btn-nav:hover {
    background: var(--primary);
    color: #000 !important;
}


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

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: #fff;
}
 
.hero-section {
    position: relative;
    height: 80vh; 
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #1a1a1a; 
    
    background-image: url('../img/hero.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    
    background: linear-gradient(180deg, rgba(18,18,18,0.6) 0%, rgba(18,18,18,0.9) 80%, rgba(18,18,18,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ddd;
}

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


.hero-mini {
    background: var(--bg-darker);
    padding: 120px 0 60px;
    text-align: center;
}
 
.section {
    padding: 80px 0;
}

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

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


.features-grid, 
.services-grid, 
.categories-grid, 
.steps-grid, 
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.steps-grid {
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}
 

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


.feature-card:hover, 
.service-card:hover, 
.cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}


.icon-box, 
.feature-card i, 
.cat-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

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

.service-card p, .cat-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
 
.step-card {
    position: relative;
    border-top: 3px solid var(--primary); 
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03); 
    line-height: 1;
}
 
.bookmaker-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.bookmaker-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}


.bm-logo {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.bm-logo img {
    max-height: 50px;
    width: auto;
}


.bm-info {
    flex: 1;
    padding: 0 30px;
    min-width: 300px;
}

.bm-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rating-score {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.stars {
    color: var(--accent); 
    font-size: 1rem;
}

.bm-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.4;
}

.bm-details strong {
    color: #fff;
    margin-right: 5px;
}


.bm-action {
    flex: 0 0 220px;
    text-align: center;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.disclaimer-small {
    font-size: 0.7rem;
    color: #666;
    margin-top: 5px;
    display: block;
}
 
.responsible-gaming .rg-box {
    background: linear-gradient(135deg, #1e0b36 0%, #000 100%);
    border: 1px solid var(--secondary); 
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.15);
}

.rg-box i.fa-exclamation-triangle {
    color: var(--secondary);
    margin-bottom: 20px;
}

.rg-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.rg-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rg-features i {
    color: var(--primary);
}
 
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary);
}


.accordion-header::after {
    content: '\f078'; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.accordion-header.active::after {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.accordion-content p {
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
 
.review-card {
    text-align: left; 
    padding: 25px;
}

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

.review-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 15px;
}

.review-card .author {
    font-weight: 700;
    color: var(--primary);
    display: block;
    text-align: right;
}
 
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}


.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.neon-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(0, 229, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.working-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--secondary);
}


.contact-form-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

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

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-input);
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.full-width {
    width: 100%;
}

.map-section iframe {
    filter: grayscale(100%) invert(90%); 
    display: block;
}
 
footer {
    background-color: #000;
    padding: 70px 0 20px;
    border-top: 1px solid #222;
    margin-top: auto; 
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-col a {
    color: #888;
    font-size: 0.95rem;
}

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

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;
    text-align: center;
}

.disclaimer-footer {
    margin-top: 15px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
 
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    
    .bookmaker-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .bm-logo {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
        width: 100%;
        flex: auto;
    }
    
    .bm-info {
        padding: 0;
        margin-bottom: 25px;
        min-width: auto;
    }
    
    .bm-rating {
        justify-content: center;
    }
    
    .bm-action {
        padding-left: 0;
        width: 100%;
        flex: auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .hamburger { display: block; }
    
    
    .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: var(--header-height);
        flex-direction: column;
        background: #121212;
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%; 
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .contact-form-box {
        padding: 25px;
    }
}.legal-content {
            background: var(--bg-card);
            padding: 50px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 50px;
        }
        .legal-content h2 {
            color: var(--primary);
            margin-top: 40px;
            font-size: 1.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }
        .legal-content h3 {
            color: #fff;
            margin-top: 25px;
            font-size: 1.3rem;
        }
        .legal-content p {
            color: #ccc;
            margin-bottom: 15px;
            text-align: justify;
        }
        .legal-content ul {
            list-style: disc; 
            padding-left: 20px;
            margin-bottom: 20px;
            color: #ccc;
        }
        .legal-content ul li {
            margin-bottom: 8px;
        }
        .last-updated {
            font-style: italic;
            color: var(--text-muted);
            margin-bottom: 30px;
            display: block;
        }
        @media (max-width: 768px) {
            .legal-content { padding: 25px; }
        }.cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 0.9rem;
            color: #ddd;
        }
        .cookie-table th, .cookie-table td {
            border: 1px solid #444;
            padding: 12px;
            text-align: left;
        }
        .cookie-table th {
            background-color: rgba(0, 229, 255, 0.1);
            color: var(--primary);
            font-weight: 600;
        }
        .cookie-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }

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

        @media (max-width: 768px) {
            .legal-content { padding: 25px; }
            .cookie-table { display: block; overflow-x: auto; }
        }.help-box {
            background: rgba(0, 229, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .help-box h4 { margin-bottom: 10px; color: #fff; }
        .help-box a { color: var(--primary); font-weight: 600; }

        
        .danger-box {
            background: rgba(255, 68, 68, 0.05);
            border: 1px solid var(--danger);
            padding: 25px;
            border-radius: 8px;
            margin-top: 30px;
        }
        .danger-title { color: var(--danger); font-weight: 700; display: block; margin-bottom: 10px; }

    
.age-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999; 
    display: flex; 
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.3s ease;
}

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

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

.neon-icon-large {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--primary);
}

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

.small-text { font-size: 0.8rem; color: #666; }


.cookie-banner {
    position: fixed;
    bottom: -100%; 
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.98);
    border-top: 1px solid var(--primary);
    padding: 20px;
    z-index: 9990;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease;
    gap: 20px;
}

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

.cookie-text h3 { margin-bottom: 5px; font-size: 1.1rem; color: #fff; }
.cookie-text p { font-size: 0.9rem; color: #ccc; margin: 0; }
.cookie-text a { color: var(--primary); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 10px; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }
}


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

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

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.close-btn { background: none; border: none; color: #fff; 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: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.option-info strong { display: block; color: #fff; margin-bottom: 5px; }
.option-info .desc { font-size: 0.85rem; color: #999; }

.modal-footer { padding: 20px; }


.switch { position: relative; display: inline-block; width: 50px; height: 24px; }
.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(--primary); }
input:checked + .slider:before { transform: translateX(26px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }