:root {
    --brand-ribbon: #e5ca00;
    --color-primary: #0000FF;
    --color-accent: #e5ca00;
    --color-accent-alt: #e5d820;
    --color-success: #50b401;
    --color-background: #000000;
    --color-surface: rgba(0, 0, 0, 0.5);
    --color-surface-light: rgba(229, 228, 226, 0.9);
    --color-text-light: #ffffff;
    --color-text-dark: #000000;
    --color-header-bg: rgba(1, 61, 157, 1);
    --color-border-green: #238c07;
    --font-family: "Roboto", BlinkMacSystemFont, -apple-system, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    --border-radius: 10px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-text-light);
    line-height: 1.6;
    min-height: 100vh;
}
body, button, input, optgroup, select, textarea {
    font-family: var(--font-family);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul, ol {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.text-accent {
    color: var(--color-accent);
}
.text-center {
    text-align: center;
}
.body-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.navbar {
    background-color: rgba(0, 0, 0, 1);
    position: relative;
    z-index: 100;
}
.navbar-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}
.navbar-body.logo-is-center {
    justify-content: center;
}
.navbar-logo a {
    display: block;
}
.navbar-img {
    max-height: 15px;
    width: auto;
}
.nav-burger {
    position: absolute;
    right: 0;
    display: none;
}
.hamburger {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
}
.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    position: absolute;
    transition: var(--transition-fast);
}
.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}
.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    opacity: 0;
}
@media (max-width: 768px) {
    .navbar {
        background-color: transparent;
    }
    .nav-burger {
        display: block;
    }
}
.section--hero {
    position: relative;
}
.section-inner {
    position: relative;
}
.section-padded {
    padding: 2rem 0;
}
.section--hero .section-inner {
    color: var(--color-text-light);
    min-height: 100px;
}
.hero-bg-image {
    display: none;
}
.hero-bg-image--mobile-only {
    display: none;
}
@media (max-width: 768px) {
    .hero-bg-image--mobile-only {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }
}
.section-inner__content {
    position: relative;
    z-index: 1;
}
.h-content-mobile {
    display: none;
}
.h-content-desktop {
    text-align: center;
}
.h-content-desktop h1,
.h-content-desktop h2,
.h-content-desktop p {
    text-align: center;
}
.section--hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.section--hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.section--hero p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .h-content-mobile {
        display: block;
        text-align: center;
    }
    .h-content-desktop {
        display: none;
    }
    .section--hero h1 {
        font-size: 1.8rem;
    }
    .section--hero h2 {
        font-size: 1.4rem;
    }
    .mobile-text-center {
        text-align: center;
    }
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}
.hero-feature svg {
    width: 24px;
    height: 24px;
    fill: var(--color-text-light);
}
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
.site-disc {
    margin-top: 1.5rem;
}
.site-disc__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.9;
}
.site-disc-label {
    cursor: pointer;
}
.separator {
    margin: 0 0.5rem;
}
.matches-carousel {
    --carousel-body-bg: #d0d0d0;
    --carousel-body-text: #000000;
    --carousel-button-bg: #50b401;
    --carousel-button-text: #ffffff;
    --carousel-height: 45px;
    height: var(--carousel-height);
    min-height: 45px;
    max-height: 45px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0.5rem;
}
.matches-carousel-wrapper {
    padding: 0;
    margin: auto;
    color: var(--carousel-body-text);
    max-width: 1200px;
    min-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
    position: relative;
}
.matches-carousel-container,
.matches-carousel-body {
    height: 100%;
    position: relative;
}
.matches-carousel-body {
    border-radius: 0;
    border: 1px solid #d1d1d1;
    display: flex;
    flex-direction: column;
    background-color: var(--carousel-body-bg);
    justify-content: space-evenly;
}
.embla {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.embla__viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.embla__container {
    display: flex;
    touch-action: pan-y pinch-zoom;
    height: 100%;
    transition: transform 0.5s ease;
}
.carousel-title {
    display: flex;
    position: relative;
    z-index: 2;
    width: auto;
    height: 100%;
    padding: 8px 12px;
    padding-left: 15px;
    background: var(--carousel-button-bg);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--carousel-button-text);
    text-align: center;
    align-items: center;
    white-space: nowrap;
    box-shadow: 20px -1px 20px 0px rgba(0, 0, 0, 0.15);
}
.carousel-title svg {
    position: absolute;
    top: 0;
    left: 100%;
    width: 15px;
    height: 100%;
    fill: var(--carousel-button-bg);
}
.embla__slide {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 80px;
    border-left: 1px solid var(--carousel-body-text);
    user-select: none;
}
.match-slide-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.match-teams {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2em;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    align-items: center;
}
.match-team-name {
    width: auto;
}
.match-separator {
    margin: 0 6px;
    font-weight: 700;
    font-size: 8px;
    line-height: 1.2em;
    text-transform: uppercase;
    white-space: nowrap;
}
.match-date {
    font-size: 12px;
    line-height: 1.2em;
}
.section--table .section-inner {
    padding: 0 1rem 1rem;
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
}
.table-header {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 1fr 1.5fr;
    gap: 0.5rem;
    background-color: var(--color-header-bg);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.th {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-light);
}
@media (max-width: 768px) {
    .table-header {
        display: none;
    }
}
.table-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 1fr 1.5fr;
    gap: 0.5rem;
    background-color: var(--color-surface-light) !important;
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: var(--border-radius);
    position: relative;
    align-items: center;
}
.table-row.highlighted-row {
    border-left: 4px solid var(--color-accent);
}
.table-row.row-1 {
    border-color: var(--color-accent);
}
.table-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.table-cell--logo {
    position: relative;
}
.brand-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}
.brand-ribbon {
    background: var(--brand-ribbon);
    color: var(--color-text-dark);
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.brand-ribbon.sharp::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    border-top: 11px solid var(--brand-ribbon);
    border-bottom: 11px solid var(--brand-ribbon);
    border-right: 10px solid transparent;
    border-left: 5px solid var(--brand-ribbon);
}
.table-cell--offer {
    color: var(--color-text-dark);
}
.welcome-bonus {
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.welcome-bonus--brand-name-ph {
    display: none;
}
.table-brand-offer {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--color-text-dark);
}
.table-cell--rating {
    color: var(--color-text-dark);
}
.rating-label {
    font-size: 0.7rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.star-rating {
    display: flex;
    gap: 2px;
}
.star-rating.interactive .td-star {
    cursor: pointer;
}
.td-star {
    width: 20px;
    height: 20px;
}
.td-star svg.icon {
    width: 100%;
    height: 100%;
    fill: #d4d4d4;
    transition: fill var(--transition-fast);
}
.td-star:hover svg.icon,
.td-star.active svg.icon,
.star-rating:hover .td-star svg.icon {
    fill: #FFD700;
}
.star-rating:hover .td-star:hover ~ .td-star svg.icon {
    fill: #d4d4d4;
}
.mobile-star-rating-label {
    display: none;
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.25rem;
}
.table-cell--score {
    color: var(--color-text-dark);
}
.score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary) !important;
}
.score-label-mobile {
    display: none;
    font-size: 0.7rem;
    color: #666;
}
.table-cell--visit {
    color: var(--color-text-dark);
}
.button {
    background: var(--color-primary);
    color: var(--color-text-light);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    transition: var(--transition-normal);
    white-space: nowrap;
}
.button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.button-claim {
    background: var(--color-success);
}
.min-deposit {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.5rem;
}
.license-badge {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.license-badge svg {
    width: 18px;
    height: 18px;
}
.table-cell--tcs {
    grid-column: 1 / -1;
    font-size: 0.65rem;
    color: #666;
    padding-top: 0.75rem;
    border-top: 1px solid #ddd;
    margin-top: 0.5rem;
    text-align: left;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .table-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        padding: 1rem;
    }
    .table-cell--logo {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    .table-cell--offer {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    .table-cell--rating {
        grid-column: 1;
    }
    .table-cell--score {
        grid-column: 2;
    }
    .table-cell--visit {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    .table-cell--tcs {
        grid-column: 1 / -1;
    }
    .mobile-star-rating-label,
    .score-label-mobile {
        display: block;
    }
    .welcome-bonus--brand-name-ph {
        display: block;
    }
    .welcome-bonus--regular {
        display: none;
    }
}
.section--content .section-inner {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: var(--color-text-light);
}
.section--content .content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.section--content .content h2:first-child {
    margin-top: 0;
}
.section--content .content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}
.section--content .content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
.section--content .content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.section--content .content li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}
.section--content .content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}
.section--content .content strong {
    color: var(--color-accent);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.modal.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.modal--disc .modal-body {
    position: relative;
    background: var(--color-text-light);
    color: var(--color-text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
}
.modal-exit-body {
    position: relative;
    background: var(--color-text-light);
    color: var(--color-text-dark);
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
.svg-cross {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    fill: #666;
    transition: fill var(--transition-fast);
}
.svg-cross:hover {
    fill: var(--color-text-dark);
}
.exit-modal-heading {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}
.exit-modal-track {
    overflow: hidden;
}
.exit-modal-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .exit-modal-box {
        grid-template-columns: 1fr;
    }
}
.single-modal-brand {
    border: 2px solid var(--color-border-green);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
}
.single-modal-brand:first-child {
    border-color: var(--color-border-green);
}
.exit-brand-top {
    padding: 1rem;
    background: #f5f5f5;
}
.exit-brand-logo {
    max-width: 120px;
    max-height: 60px;
    margin: 0 auto;
    object-fit: contain;
}
.exit-brand-bottom {
    padding: 1rem;
}
.exit-brand-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 0.75rem;
}
.exit-brand-star {
    width: 16px;
    height: 16px;
}
.exit-brand-star svg.icon {
    width: 100%;
    height: 100%;
    fill: #FFD700;
}
.exit-brand-offer {
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--color-text-dark);
}
.exit-brand-clickout {
    margin-bottom: 0.75rem;
}
.exit-brand-clickout .button {
    width: 100%;
    display: block;
}
.exit-brand-tcs {
    font-size: 0.6rem;
    color: #666;
    line-height: 1.4;
}
.footer {
    background-color: var(--color-background);
    padding: 2rem 0;
    margin-top: 2rem;
}
.footer-body {
    background-color: var(--color-background);
    color: var(--color-text-light);
    text-align: center;
}
.footer-body a {
    color: var(--color-text-light);
}
.footer-logo {
    margin-bottom: 1.5rem;
}
.footer-logo img {
    max-width: 150px;
    margin: 0 auto;
}
.footer-nav {
    margin-bottom: 1.5rem;
}
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-menu .menu-item a {
    font-size: 0.9rem;
    transition: opacity var(--transition-fast);
}
.footer-menu .menu-item a:hover {
    opacity: 0.8;
}
.footer-disc {
    font-size: 0.8rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.footer-icons-center {
    justify-content: center;
}
.footer-icons svg {
    width: 40px;
    height: 40px;
    fill: var(--color-text-light);
}
.footer-icons img {
    height: 35px;
    width: auto;
}
.icon-srij,
.icon-icad {
    height: 35px;
    width: auto;
}
.icon-18-plus-br {
    height: 40px;
    width: auto;
}
.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
}
.cookie-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    z-index: 1500;
}
.cookie-bar.is-active {
    display: block;
}
.cookie-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-bar-text {
    font-size: 0.85rem;
    flex: 1;
}
.cookie-bar-text a {
    color: var(--color-accent);
    text-decoration: underline;
}
.button-generic {
    background: var(--color-success);
    color: var(--color-text-light);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
}
.button-generic:hover {
    opacity: 0.9;
}
.age-popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: var(--color-text-light);
    z-index: 9999;
    color: var(--color-text-dark);
    top: 0;
    display: none;
}
.age-popup.is-active {
    display: block;
}
.age-popup > div {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
}
.age-popup-title,
.age-popup-buttons {
    width: 20%;
    margin: 0 auto;
    display: flex;
}
.age-popup-title {
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}
.age-popup-buttons {
    justify-content: space-between;
}
.age-popup-button {
    width: 45%;
    text-align: center;
    padding: 10px 0;
    color: var(--color-text-light);
    background-color: var(--color-text-dark);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}
.age-popup-button:hover {
    opacity: 0.9;
}
.age-popup-button-yes {
    background-color: var(--color-success);
}
.age-popup-button-no {
    background-color: #dc3545;
}
@media screen and (max-width: 430px) {
    .age-popup-title,
    .age-popup-buttons {
        width: 60%;
    }
}
.hidden {
    display: none !important;
}
.policy-content h1 {
    margin-bottom: 2rem;
}
.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.policy-content a {
    color: var(--color-accent);
    text-decoration: underline;
}
.policy-content a:hover {
    opacity: 0.8;
}