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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0D122C;
    min-height: 100vh;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.page {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #0D122C;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px calc((100% - 1116px) / 2);
    width: 100%;
    height: 80px;
    background: #100425;
}

.header__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.header__logo-text {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
}

.header__logo-accent {
    color: #FFFFFF;
}

.header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.header__nav-link {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    transition: opacity 0.3s;
}

.header__nav-link:hover {
    opacity: 0.7;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px calc((100% - 1116px) / 2);
    gap: 96px;
    width: 100%;
    background: linear-gradient(180deg, #100425 0%, rgba(16, 4, 37, 0) 55.74%, rgba(16, 4, 37, 0) 100%), linear-gradient(177.26deg, #100425 2.47%, rgba(50, 125, 252, 0.5) 50.19%, #100425 97.9%);
}

.hero__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}

.hero__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.hero__title {
    width: 100%;
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
}

.hero__subtitle {
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #FFFFFF;
}

.cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    gap: 24px;
    width: 100%;
    height: 150px;
    background: linear-gradient(90deg, rgba(234, 11, 127, 0.2) 0%, rgba(50, 125, 252, 0.2) 100%), rgba(255, 255, 255, 0.2);
    box-shadow: inset 1.2px 1.1px 0.8px #F8FAF0;
    backdrop-filter: blur(2px);
    border-radius: 12px 32px;
}

.card__logo-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 255px;
    height: 102px;
    background: #100425;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.card__logo {
    width: 255px;
    height: 170px;
    object-fit: contain;
}

.card__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100px;
    flex-shrink: 0;
}

.card__rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card__rating-number {
    font-weight: 700;
    font-size: 48px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
    margin: -12px 0;
}

.card__rating-label {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
}

.card__stars {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100px;
    height: 20px;
}

.card__star {
    width: 20px;
    height: 20px;
    fill: #FFEB00;
}

.card__content {
    display: contents;
}

.card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.card__bonus {
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
}

.card__btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 48px;
    width: 240px;
    height: 48px;
    background: linear-gradient(180deg, #FE6167 0%, #EA0B7F 100%);
    box-shadow: 0px 2px 12px rgba(223, 21, 111, 0.8), inset 0px 2px 4px #FFFFFF, inset 0px -4px 4px rgba(106, 19, 0, 0.6);
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 16px rgba(223, 21, 111, 0.9), inset 0px 2px 4px #FFFFFF, inset 0px -4px 4px rgba(106, 19, 0, 0.6);
}

.disclaimer-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    width: 100%;
    background: linear-gradient(90deg, rgba(234, 11, 127, 0.2) 0%, rgba(50, 125, 252, 0.2) 100%), rgba(255, 255, 255, 0.2);
    box-shadow: inset 1.2px 1.1px 0.8px #F8FAF0;
    backdrop-filter: blur(2px);
    border-radius: 12px 32px;
}

.disclaimer-box__text {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.disclaimer-box__link {
    color: #FFEB00;
    text-decoration: underline;
}

.methodology {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}

.methodology__title {
    width: 100%;
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
}

.methodology__cards {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
    width: 100%;
    background: linear-gradient(90deg, rgba(234, 11, 127, 0.2) 0%, rgba(50, 125, 252, 0.2) 100%), rgba(255, 255, 255, 0.2);
    box-shadow: inset 1.2px 1.1px 0.8px #F8FAF0;
    backdrop-filter: blur(2px);
    border-radius: 12px 32px;
}

.info-card__title {
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    color: #FFFFFF;
}

.info-card__subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-top: 4px;
}

.info-card__text {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}

.info-card__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
}

.info-card__list li {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
    position: relative;
    padding-left: 10px;
}

.info-card__list li::before {
    content: "\2022";
    position: absolute;
    left: -14px;
    color: #FFFFFF;
}

.info-card__link {
    color: #FFEB00;
    font-weight: 700;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 8px;
}

.contact-form__row {
    display: flex;
    gap: 16px;
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: rgba(234, 11, 127, 0.6);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 48px;
    width: 100%;
    height: 52px;
    background: linear-gradient(180deg, #FE6167 0%, #EA0B7F 100%);
    box-shadow: 0px 2px 12px rgba(223, 21, 111, 0.8), inset 0px 2px 4px #FFFFFF, inset 0px -4px 4px rgba(106, 19, 0, 0.6);
    border-radius: 12px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-form__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 16px rgba(223, 21, 111, 0.9), inset 0px 2px 4px #FFFFFF, inset 0px -4px 4px rgba(106, 19, 0, 0.6);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px calc((100% - 1116px) / 2);
    gap: 24px;
    width: 100%;
    background: #100425;
}

.footer__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.footer__nav-link {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    transition: opacity 0.3s;
}

.footer__nav-link:hover {
    opacity: 0.7;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: #1F2535;
}

.footer__logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.footer__logo--age {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer__logo--gambleaware {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer__logo--gamcare {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer__logo--gamstop {
    height: 29px;
    width: auto;
    object-fit: contain;
}

.footer__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer__copy-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer__copy-disclaimer {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #100425;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 24px;
}

.mobile-menu__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
    transition: opacity 0.3s;
}

.mobile-menu__link:hover {
    opacity: 0.7;
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    background: #1A1040;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.cookie-notice__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #FFFFFF;
}

.cookie-notice__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-notice__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(180deg, #FE6167 0%, #EA0B7F 100%);
    box-shadow: 0px 2px 12px rgba(223, 21, 111, 0.8), inset 0px 2px 4px #FFFFFF, inset 0px -4px 4px rgba(106, 19, 0, 0.6);
    border-radius: 12px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    align-self: flex-start;
    transition: transform 0.2s;
}

.cookie-notice__btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header {
        padding: 16px 16px;
    }

    .hero {
        padding: 32px 16px;
        gap: 48px;
    }

    .hero__heading {
        gap: 8px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 14px;
    }

    .cards {
        gap: 16px;
    }

    .card {
        display: grid;
        grid-template-columns: 140px 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
        height: auto;
        padding: 16px;
        align-items: start;
    }

    .card__logo-wrap {
        width: 140px;
        height: 70px;
        border-radius: 16px;
        grid-row: 1;
        grid-column: 1;
    }

    .card__logo {
        width: 140px;
        height: 100px;
    }

    .card__content {
        display: flex;
        flex-direction: column;
        gap: 4px;
        grid-row: 1;
        grid-column: 2;
    }

    .card__rating {
        flex-direction: row;
        align-items: center;
        gap: 6px;
        width: auto;
        flex-wrap: wrap;
    }

    .card__rating-info {
        flex-direction: row;
        align-items: baseline;
        gap: 4px;
    }

    .card__rating-number {
        font-size: 22px;
        line-height: 1;
        margin: 0;
    }

    .card__rating-label {
        font-size: 11px;
    }

    .card__stars {
        width: auto;
        height: 12px;
    }

    .card__star {
        width: 12px;
        height: 12px;
    }

    .card__info {
        align-items: flex-start;
        width: auto;
    }

    .card__bonus {
        font-size: 13px;
        text-align: left;
        line-height: 130%;
    }

    .card__btn {
        width: 100%;
        min-width: unset;
        padding: 12px 24px;
        font-size: 16px;
        height: 44px;
        grid-row: 2;
        grid-column: 1 / -1;
    }

    .disclaimer-box {
        padding: 16px;
    }

    .disclaimer-box__text {
        font-size: 16px;
    }

    .methodology {
        gap: 32px;
    }

    .methodology__title {
        font-size: 28px;
    }

    .methodology__cards {
        gap: 16px;
    }

    .info-card {
        padding: 16px;
        gap: 8px;
    }

    .info-card__title {
        font-size: 22px;
    }

    .info-card__subtitle {
        font-size: 16px;
    }

    .info-card__text,
    .info-card__list li {
        font-size: 14px;
    }

    .footer {
        padding: 32px 16px;
        gap: 20px;
    }

    .footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer__nav-link {
        font-size: 16px;
    }

    .footer__logos {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .footer__logo--age {
        width: 36px;
        height: 36px;
    }

    .footer__logo--gambleaware {
        height: 20px;
    }

    .footer__logo--gamcare {
        height: 32px;
    }

    .footer__logo--gamstop {
        height: 24px;
    }

    .footer__copy-text {
        font-size: 12px;
    }

    .footer__copy-disclaimer {
        font-size: 13px;
    }

    .contact-form__row {
        flex-direction: column;
    }

    .cookie-notice {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 10px;
    }
}