:root {
    --primary-color: #0066cc;
    --primary-hover: #0052a3;
    --secondary-color: #0b2038;
    --accent-color: #28a745;
    --accent-hover: #218838;
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --text-main: #333333;
    --text-muted: #6c757d;
    --border-color: #e0e0e0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}


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

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

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

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

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

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

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

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


.breadcrumbs {
    padding: 1rem 0 0 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
}


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

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
}

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

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

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

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


header {
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    color: #f8f9fa;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
    color: white;
    font-size: 1.5rem;
}


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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        gap: 0;
        text-align: center;
        transition: 0.3s;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: var(--shadow-md);
    }

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

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        color: var(--primary-color);
        background-color: rgba(255, 255, 255, 0.05);
    }
}


section {
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}


.hero {
    background: linear-gradient(135deg, #0b2038 0%, #1a365d 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #d0dbe5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.disclaimer-micro {
    font-size: 0.75rem;
    color: #a0aec0;
}


.featured-casino {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.casino-logo-box {
    background-color: var(--secondary-color);
    color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    font-weight: bold;
}

.casino-rating {
    text-align: center;
    margin-top: 1rem;
    color: #ffc107;
    font-size: 1.2rem;
}

.casino-rating span {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.casino-info h3 {
    margin-bottom: 0.5rem;
}

.bonus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bonus-tag {
    background-color: #e8f4fd;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #b8daff;
}

.casino-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.casino-perks li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casino-perks i {
    color: var(--accent-color);
}

.casino-action {
    text-align: center;
    border-left: 1px solid var(--border-color);
    padding-left: 2rem;
}

.quick-facts {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
}

.legal-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .featured-casino {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .casino-action {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 1.5rem;
    }
}


.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    min-width: 800px;
}

.compare-table th,
.compare-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.compare-table th {
    background-color: var(--secondary-color);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.compare-table tr:hover {
    background-color: #f8f9fa;
}

.compare-table td {
    font-size: 0.9rem;
}

.metrics-explainer {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}


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

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--card-bg);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--card-bg);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.timeline-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .timeline-item::after {
        left: 21px;
    }

    .right {
        left: 0;
    }
}


.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.guide-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary-color);
}

.guide-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.guide-card h3 {
    font-size: 1.1rem;
}

.guide-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.guide-card li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    list-style-type: disc;
    color: var(--text-muted);
}


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

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    background: var(--card-bg);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-header[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.2rem;
    color: var(--text-muted);
}


.responsible-gaming-section {
    background-color: #eef2f5;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

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

.rg-resources {
    text-align: left;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.rg-resources ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.rg-resources li {
    margin-bottom: 0.5rem;
}

.rg-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


footer {
    background-color: var(--secondary-color);
    color: #d0dbe5;
    padding: 4rem 0 1rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d0dbe5;
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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


.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-md);
}

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

.messenger-widget {
    position: fixed;
    bottom: 80px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.messenger-widget a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

.messenger-widget a:hover {
    transform: scale(1.1);
}

.wa-btn {
    background-color: #25D366;
}

.tg-btn {
    background-color: #0088cc;
}

.ig-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 32, 56, 0.95);
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.cookie-banner button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-banner.hidden {
    display: none;
}

.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
}

.logo-footer a {
    height: 48px;

}

.logo-footer a img {
    height: 100%;
    object-fit: contain;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
    padding: 0;
}

.contact-details li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f9fbfd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}


@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }

    .contact-info {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }
}

.legal-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 3rem 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
}

.legal-content p {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    list-style-type: disc;
}

.legal-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }
}

.legal-content em {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {

    .legal-content p,
    .legal-content li {
        font-size: 0.95rem;
    }
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 32, 56, 0.98);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-gate-overlay.active {
    visibility: visible;
    opacity: 1;
}

.age-gate-modal {
    background-color: var(--card-bg, #ffffff);
    max-width: 500px;
    width: 100%;
    padding: 3rem 2rem;
    border-radius: var(--border-radius, 8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    text-align: center;
    border-top: 6px solid var(--primary-color, #0066cc);
}

.age-gate-icon {
    font-size: 4rem;
    color: var(--primary-color, #0066cc);
    margin-bottom: 1.5rem;
}

.age-gate-modal h2 {
    color: var(--secondary-color, #0b2038);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
}

.age-gate-modal p {
    color: var(--text-main, #333);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.age-gate-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted, #6c757d) !important;
    margin-bottom: 0 !important;
}


body.no-scroll {
    overflow: hidden;
}


@media (min-width: 480px) {
    .age-gate-buttons {
        flex-direction: row;
    }

    .age-gate-buttons .btn {
        flex: 1;
    }
}