* {
    padding: 0px;
    margin: 0px;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, a:link, a:visited {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
address {
    font-style: normal;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
input:focus, input:active,
button:focus, button:active {
    outline: none;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
legend {
    display: block;
}
html {
    scroll-behavior: smooth;
}
/**/
:root {
    --dark: #27005D;
    --purple: #9400FF;
    --purple-hover: rgba(148, 0, 255, 0.8);
    --sky-blue: #AED2FF;
    --sky-blue-hover: rgba(174, 210, 255, 0.8);
    --bright: #E4F1FF;

    --font-title: 'Urbanist', sans-serif;
    --font-text: 'Inter', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--dark);
    color: var(--bright);
    -webkit-font-smoothing: antialiased;
}

section {
    padding: 3rem 0;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--bright);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 1.6571rem + 1.7143vw, 3.2rem); }
h2 { font-size: clamp(2rem, 1.7143rem + 1.4286vw, 3rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: var(--bright);
    font-size: clamp(0.95rem, 0.9357rem + 0.0714vw, 1rem);
}
.button {
    display: inline-block;
    font-family: var(--font-title);
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border-radius: 99px;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    outline: none;

    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(0,0,0,0.15));
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.3),
    inset -4px -4px 8px rgba(255,255,255,0.1),
    0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
}

.button:active {
    transform: translateY(2px);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.4),
    inset -2px -2px 4px rgba(255,255,255,0.05);
}
.button--purple {
    background-color: var(--purple);
    color: var(--bright);
}

.button--purple:hover {
    background-color: var(--purple-hover);
}

.button--blue {
    background-color: var(--sky-blue);
    color: var(--dark);
}

.button--blue:hover {
    background-color: var(--sky-blue-hover);
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}
/**/
.header {
    background-color: var(--dark);
    padding: 1rem 0;
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.header__title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bright);
}

.header__menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu a {
    position: relative;
    font-family: var(--font-title);
    text-decoration: none;
    font-weight: 500;
    color: var(--bright);
    transition: color 0.3s ease;
}

.header__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--sky-blue);
    transition: width 0.4s ease;
}

.header__menu a:hover {
    color: var(--sky-blue);
}

.header__menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 24px;
    height: 2px;
    background-color: var(--bright);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--purple-hover);
    backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--bright);
    align-self: flex-end;
    cursor: pointer;
}

.mobile-menu__list {
    list-style: none;
    padding: 2rem 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu__list a {
    color: var(--bright);
    font-family: var(--font-title);
    font-size: 1.2rem;
    text-decoration: none;
}
/**/
.hero {
    position: relative;
    padding: 4rem 0 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero__content {
    flex: 1 1 500px;
}
.highlight {
    color: var(--sky-blue);
}

.hero__title {
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--bright);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 0.9429rem + 0.2857vw, 1.2rem);
    font-family: var(--font-text);
    font-weight: 400;
    color: var(--bright);
}

.hero__image {
    position: relative;
    flex: 1 1 400px;
}

.hero__image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
}

.hero__glow {
    content: "";
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 80%);
    filter: blur(80px);
    z-index: 1;
    border-radius: 50%;
}

.hero__disclaimer {
    background-color: var(--purple-hover);
    padding: 2rem;
    margin-top: 4rem;
}
.hero__disclaimer .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero__disclaimer img {
    width: 45px;
    height: 45px;
}

.hero__disclaimer p {
    margin-bottom: 0;
    font-weight: 600;
}
/**/
.top-casinos {
    padding: 4rem 0;
    background-color: var(--dark);
}

.top-casinos__title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.top-casinos__subtitle {
    font-size: 1.1rem;
    color: var(--bright);
    text-align: center;
    margin-bottom: 5rem;
}

.offers-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.offer-card {
    position: relative;
    background-color: #380a7d;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.offer-card--pedestal {
    transform: scale(1.1);
    z-index: 2;
}
.offer-card:hover {
    background-color: var(--purple-hover);
    transform: scale(1.05);
}
.offer-card__rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--purple);
    color: var(--bright);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

.offer-card__logo img {
    max-height: 70px;
    margin: 3rem auto 1rem;
}

.offer-card__badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bright);
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin: 0 auto;
}
.badge-icon img,
.score-icon img {
    width: 20px;
    height: 20px;
    margin-right: 0.25rem;
    filter: brightness(0) invert(1);
}

.offer-card__bonus {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sky-blue);
}

.offer-card__terms {
    font-size: 0.85rem;
    color: var(--bright);
}

.offer-card__rating {
    font-size: 0.9rem;
    color: var(--bright);
}

.offer-card__score {
    font-weight: bold;
    font-size: 1rem;
    color: var(--bright);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offer-card__cta {
    margin-top: auto;
    border-radius: 99px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    display: inline-block;
    width: 100%;
}

.offer-card__footer {
    font-size: 0.75rem;
    color: #ddd;
    margin-top: 1rem;
    line-height: 1.4;
    text-align: left;
}

.offer-card__highlight {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    color: var(--dark);
}

.offer-card__highlight--blue {
    background-color: var(--sky-blue);
}

.offer-card__highlight--green {
    background-color: #C1FFD7;
}

.offer-card__highlight--yellow {
    background-color: #FFF8B0;
}
.bonus-guide {
    padding: 4rem 0;
}

.bonus-guide__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.bonus-guide__content {
    flex: 1 1 300px;
}

.bonus-guide__title {
    font-weight: 700;
    color: var(--bright);
}

.bonus-guide__info-box {
    background-color: #380a7d;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    flex: 1 1 500px;
}

.bonus-guide__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bonus-guide__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bright);
    font-family: var(--font-text);
    font-size: 0.95rem;
    transition: transform .2s ease;
}
.bonus-guide__item:hover {
    transform: scale(1.02);
}
.bonus-guide__icon {
    background-color: var(--purple-hover);
    padding: 0.6rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
}
.bonus-guide__icon img {
    display: block;
    filter: brightness(0) invert(1);
}
.bonus-guide__notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #380a7d;
    padding: 1.2rem;
    border: 2px solid var(--sky-blue);
    border-radius: 12px;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    color: var(--bright);
}

.bonus-guide__notice-icon img {
    filter: brightness(0) invert(1);
    margin-top: 2px;
}
.bonus-guide__notice-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-guide__notice-text p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.bonus-guide__notice-text a {
    font-weight: 600;
    color: var(--sky-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.bonus-guide__notice-text a:hover {
    color: var(--sky-blue-hover);
}
/**/
.bonus-types {
    padding: 4rem 0;
}
.bonus-types__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.bonus-type-card {
    background-color: #380a7d;
    border-radius: 16px;
    padding: 2rem;
    flex: 1 1 300px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 100%;
    height: 100%;

    transition: background-color 0.3s ease, transform 0.3s ease;
}

.bonus-type-card:hover {
    background-color: var(--purple-hover);
    transform: scale(1.05);
}

.bonus-type-card__icon {
    background-color: var(--purple);
    border-radius: 50%;
    padding: 1rem;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.bonus-type-card__title {
    font-size: 1.3rem;
    font-family: var(--font-title);
    color: var(--bright);
    margin-bottom: 0.5rem;
}

.bonus-type-card__subtitle {
    font-size: 0.95rem;
    color: #ddd;
    font-family: var(--font-text);
    margin-bottom: 1.5rem;
}

.bonus-type-card__list {
    list-style: disc inside;
    padding-left: 0;
    color: var(--bright);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: auto;
    width: 100%;
}
/**/
.faq__accordion {
    flex: 1 1 500px;
    background-color: #380a7d;
    border-radius: 16px;
    padding: 1rem 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    font-family: var(--font-text);
}
.bonus-guide__subtitle {
    font-size: 1rem;
    color: #ddd;
    font-family: var(--font-text);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.faq__item + .faq__item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq__item.active {
    border-top: none;
}

.faq__question {
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    color: var(--bright);
    padding: 1.2rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq__icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}
.faq__icon img {
    filter: brightness(0) invert(1);
}
.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #ddd;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 0 1.5rem 1rem;
}
/**/
.blog {
    padding: 4rem 0;
}

.blog__title {
    font-size: 2rem;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--bright);
    margin-bottom: 2rem;
}

.blog__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: row;
    background-color: #2f0b65;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.blog-card__image {
    flex: 0 0 35%;
    max-width: 35%;
    max-height: 300px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.blog-card__title {
    font-size: 1.3rem;
    color: var(--bright);
    font-family: var(--font-title);
    margin: 0;
}

.blog-card__desc {
    font-size: 0.95rem;
    color: #ddd;
    font-family: var(--font-text);
    line-height: 1.5;
    flex-grow: 1;
}

.blog-card__content .button {
    align-self: flex-start;
    margin-top: 1rem;
}
/**/
.footer {
    padding: 3rem 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--bright);
}

.disclaimer__title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--sky-blue);
}

.disclaimer__box {
    background-color: #380a7d;
    border: 2px solid var(--sky-blue);
    border-radius: 12px;
    padding: 1.5rem;
}

.disclaimer__text p {
    margin-bottom: 0.8rem;
}

.disclaimer__links {
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.disclaimer__links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.disclaimer__links li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--sky-blue);
    flex-shrink: 0;
}

.disclaimer__links a {
    color: var(--bright);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.disclaimer__links a:hover {
    color: var(--sky-blue);
    text-decoration: underline;
}

.disclaimer__logos {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.disclaimer__logos img {
    max-height: 40px;
    transition: transform 0.2s ease;
    filter: brightness(0) invert(1);
}

.disclaimer__logos a:hover img {
    transform: scale(1.05);
}
/**/
.footer {
    color: var(--bright);
    padding: 3rem 0 0;
    font-size: 0.9rem;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__brand {
    flex: 1 1 250px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer__title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bright);
}

.footer__desc {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
}

.footer__nav {
    display: flex;
    justify-content: end;
    flex: 2 1 500px;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer__col h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--sky-blue);
}

.footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__col li {
    margin-bottom: 0.5rem;
}

.footer__col a {
    text-decoration: none;
    color: var(--bright);
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer__col a:hover {
    color: var(--sky-blue);
}

.footer__bottom {
    background-color: #140033;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.footer__badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__badges img {
    width: 32px;
    height: 32px;
}

.footer__srij-badge {
    background-color: var(--sky-blue);
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
}

.footer__copy {
    font-size: 0.75rem;
    color: #aaa;
    line-height: 1.4;
    text-align: end;
}
@media (max-width: 1080px) {
    .offer-card--pedestal {
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .header__menu {
        display: none;
    }

    .burger {
        display: flex;
    }
    .blog-card {
        flex-direction: column;
    }
    .blog-card__image img {
        border-radius: 16px 0 16px 0;
    }
}
@media (max-width: 480px) {
    .hero__glow {
        left: auto;
    }
    .button {
        font-size: 1rem;
    }
}
/**/
.age-modal-overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.age-modal-overlay.visible {
    display: flex;
    opacity: 1;
}

.age-modal {
    background-color: var(--dark);
    color: var(--bright);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
    margin: 0 15px;
}

.age-modal__image {
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.age-modal__title {
    font-size: 1.6rem;
    font-family: var(--font-title);
    margin-bottom: 1rem;
}

.age-modal__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.age-modal__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.button--outline {
    background-color: transparent;
    color: var(--bright);
    border: 2px solid var(--bright);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.button--outline:hover {
    background-color: var(--bright);
    color: var(--dark);
}
/**/
.cta-simple {
    background-color: #2f0970;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
}
.cta-simple__text {
    flex: 1 1 60%;
}
.cta-simple__title {
    font-family: var(--font-title);
    color: var(--bright);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}
.cta-simple__subtitle {
    font-size: 1rem;
    color: var(--bright);
    margin: 0;
}
.cta-simple__action {
    flex: 1 1 auto;
    text-align: right;
}
@media (max-width: 768px) {
    .cta-simple {
        flex-direction: column;
        text-align: center;
    }
    .cta-simple__action {
        text-align: center;
    }
}
.overlay_x9mke {
  position: fixed;
  inset: 0;
  background: #fefefe;
  z-index: 49283;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  visibility: hidden;
}
.viewport_g7lpa {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
