:root {
    --home5-brand: #99177b;
    --home5-brand-dark: #8d1b72;
    --home5-gold: #ffd700;
    --home5-orange: #ffa500;
    --home5-black: #000000;
    --home5-card: #0a0a0a;
    --home5-text: #ffffff;
    --home5-muted: #a3a3a3;
    --home5-muted-strong: #d4d4d4;
    --home5-border: rgba(255, 255, 255, 0.1);
    --home5-border-soft: rgba(255, 255, 255, 0.05);
    --home5-shadow-aqua: 0 0 30px rgba(0, 229, 255, 0.22);
    --home5-font-body: "Poppins", sans-serif;
    --home5-font-display: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.home5-page {
    margin: 0;
    background: var(--home5-black);
    color: var(--home5-text);
    font-family: var(--home5-font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.home5-page button,
body.home5-page input {
    font: inherit;
}

body.home5-page button {
    cursor: pointer;
    background: inherit;
    border: none;
}
body.home5-page button .home5-main-button__icon {
    width: 50px;
    padding: 0;
    height: 50px;
    font-size: 25px;
    line-height: 48px;
    display: inline-block;
}

body.home5-page img {
    display: block;
    max-width: 100%;
}

.home5-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home5-gradient-text {
    background: linear-gradient(
        90deg,
        var(--home5-gold) 0%,
        var(--home5-orange) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--home5-brand);
}

.home5-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: rgba(0, 0, 0, 0.82);
    border-bottom: 1px solid var(--home5-border-soft);
    backdrop-filter: blur(16px);
    transition:
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.home5-header--scrolled {
    border-bottom-color: rgba(0, 229, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.1);
}

.home5-header__inner {
    width: min(100%, 1280px);
    height: 80px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home5-header__brand {
    display: none;
    color: var(--home5-text);
    font-family: var(--home5-font-display);
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home5-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.home5-nav__link,
.home5-mobile-nav__link {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease;
}

.home5-nav__link:hover,
.home5-nav__link--active,
.home5-mobile-nav__link:hover {
    color: var(--home5-brand);
}

.home5-nav__link--active {
    color: var(--home5-text);
}

.home5-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.home5-auth-button {
    min-height: 40px;
    padding: 9px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.home5-auth-button:hover {
    transform: translateY(-1px);
}

.home5-auth-button--ghost {
    color: var(--home5-brand);
    border-color: var(--home5-brand);
    background: transparent;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.home5-auth-button--ghost:hover {
    background: rgba(0, 229, 255, 0.1);
}

.home5-auth-button--solid {
    color: var(--home5-black);
    background: var(--home5-brand);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.home5-auth-button--solid:hover {
    background: var(--home5-brand-dark);
}

.home5-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 999px;
    background: transparent;
    color: var(--home5-brand);
    place-items: center;
    padding: 0;
}

.home5-menu-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.home5-menu-toggle__line + .home5-menu-toggle__line {
    margin-top: 4px;
}

.home5-mobile-nav {
    display: none;
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 24px 20px;
}

.home5-mobile-nav--open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home5-mobile-nav__link {
    padding: 12px 14px;
    border: 1px solid var(--home5-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.home5-main {
    min-height: 100vh;
}

.home5-section {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 20px 0;
}

.home5-hero {
    /* padding-top: 128px; */
    width: 100%;
    position: relative;
}

.home5-hero__card {
    position: relative;
    min-height: 400px;
    gap: 40px;
    overflow: hidden;
    background-image: url("assets/fortune-rabbit_bg21.png");
    background-repeat: no-repeat;
}
.home5-hero__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}

.home5-hero__card_wrap {
    width: min(100%, 1280px);
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    position: relative;
    z-index: 2;
}

.home5-hero__content {
    position: relative;
    z-index: 1;
    /* width: min(100%, 560px); */
}

.home5-hero__title {
    margin: 0 0 32px;
    font-family: var(--home5-font-display);
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0;
    -webkit-text-stroke: 2px #fff;
    text-align: center;
}

.home5-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.home5-hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--home5-muted-strong);
    font-weight: 500;
}

.home5-icon-bubble {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--home5-text);
    color: var(--home5-black);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.home5-hero__media {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    display: flex;
    justify-content: center;
}

.home5-hero__actions {
    position: absolute;
    z-index: 2;
    /* margin-top: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    /* top: -100px; */
    bottom: 100px;
    left: 0;
    right: 0;
    margin: auto;
}

.home5-main-button span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 45px;
    padding: 9px 39px;
    border: 0;
    border-radius: 999px;
    background: var(--home5-brand);
    color: var(--home5-text);
    font-weight: 800;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.home5-main-button:hover span {
    background: var(--home5-brand-dark);
    transform: scale(1.04);
}

.home5-main-button__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--home5-black);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}

.home5-hero__note {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.home5-hero__note p {
    margin: 0;
    color: var(--home5-text);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
}

.home5-hero__note-line {
    width: 128px;
    height: 1px;
    background: linear-gradient(90deg, rgb(166 105 181 / 50%), transparent);
}

.home5-hero__note-line:last-child {
    background: linear-gradient(90deg, rgb(166 105 181 / 50%), transparent);
}

.home5-stats__grid,
.home5-jackpot__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home5-providers-slider {
    --home5-provider-logo-step: 340px;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.home5-providers-slider::before,
.home5-providers-slider::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 96px;
    height: 100%;
    pointer-events: none;
}

.home5-providers-slider::before {
    left: 0;
    background: linear-gradient(90deg, var(--home5-black), transparent);
}

.home5-providers-slider::after {
    right: 0;
    background: linear-gradient(270deg, var(--home5-black), transparent);
}

.home5-providers-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: home4ScrollLogos 25s linear infinite;
}

.home5-providers-slider:hover .home5-providers-track,
.home5-providers-slider:focus-within .home5-providers-track {
    animation-play-state: paused;
}

.home5-provider-logo-card {
    width: 300px;
    height: 145px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--home5-border);
    border-radius: 16px;
    background: var(--home5-card);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.home5-provider-logo-card:hover {
    border-color: var(--home5-brand);
    background: linear-gradient(
        180deg,
        #000000 0%,
        rgba(0, 229, 255, 0.1) 100%
    );
    box-shadow: var(--home5-shadow-aqua);
    transform: translateY(-4px);
}

.home5-provider-logo-card__image {
    max-width: 80%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 180ms ease;
    filter: grayscale(100%);
}

.home5-provider-logo-card:hover .home5-provider-logo-card__image {
    transform: scale(1.04);
    filter: grayscale(0%);
}

@keyframes home4ScrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(var(--home5-provider-logo-step) * -4));
    }
}

.home5-stat-card {
    padding: 70px 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    background: linear-gradient(
        to bottom,
        #000000 33.33%,
        var(--home5-brand) 100%
    );
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
    transition:
        border-color 180ms ease,
        transform 180ms ease;
}

.home5-stat-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.home5-stat-card__number {
    margin: 0 0 8px;
    color: var(--home5-text);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
}

.home5-stat-card__label {
    margin: 0;
    color: var(--home5-text);
    font-size: 14px;
}

.home5-about__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 48px;
}

.home5-section-title {
    margin: 0 0 32px;
    font-family: var(--home5-font-display);
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    text-align: center;
}

.home5-about__list {
    display: grid;
    gap: 24px;
}

.home5-about__item-title {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--home5-brand);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.home5-copy {
    margin: 0;
    color: var(--home5-text);
    font-size: 14px;
    line-height: 1.7;
}

.home5-about__media {
    position: relative;
}

.home5-about__image {
    width: 100%;
}

.home5-features,
.home5-jackpot,
.home5-games,
.home5-blog {
    text-align: center;
}

.home5-section-kicker {
    margin: 0 0 8px;
    color: var(--home5-muted);
}

.home5-section-kicker span,
.home5-feature-card__title span,
.home5-section-heading span,
.home5-jackpot__title span,
.home5-promo__kicker span,
.home5-promo__title span {
    color: var(--home5-brand);
}

.home5-section-heading {
    margin: 0 0 18px;
    color: var(--home5-text);
    font-family: var(--home5-font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.home5-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    text-align: left;
}

.home5-feature-card {
    min-height: 276px;
    padding: 32px;
    border-width: 1px;
    /* border-style: solid;
    border-image: linear-gradient(to right, #fff, darkorchid) 1;
     */
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    background: var(--home5-card);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.home5-feature-card:hover {
    border-color: var(--home5-brand);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.home5-feature-card__title {
    margin: 0 0 16px;
    color: var(--home5-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.home5-jackpot__title {
    margin: 0 0 24px;
    color: var(--home5-text);
    font-family: var(--home5-font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.home5-jackpot__copy {
    width: min(100%, 760px);
    margin: 0 auto 48px;
    color: var(--home5-muted);
    line-height: 1.7;
}

.home5-game-card {
    overflow: hidden;
    border: 1px solid var(--home5-border);
    border-radius: 32px;
    cursor: pointer;
    background: var(--home5-card);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.home5-game-card:hover {
    border-color: var(--home5-brand);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-3px);
}

.home5-game-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 500ms ease;
}

.home5-game-card:hover .home5-game-card__image {
    transform: scale(1.1);
}

.home5-games {
    overflow: hidden;
    width: 100%;
}

.slots-carousel-container {
    --home5-slot-size: 340px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.slots-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: calc(var(--home5-slot-size) + 48px);
    cursor: grab;
    transition: transform 0.5s ease-out;
    user-select: none;
    touch-action: pan-y;
}

.slot-item {
    position: relative;
    width: var(--home5-slot-size);
    height: var(--home5-slot-size);
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    transition:
        opacity 0.5s ease,
        filter 0.5s ease,
        box-shadow 0.5s ease,
        transform 0.5s ease;
}

.slot-tiny {
    opacity: 1;
    filter: none;
    transform: none;
}

.slot-small {
    opacity: 1;
    filter: none;
    transform: none;
}

.slot-medium {
    opacity: 1;
    filter: none;
    transform: none;
}

.slot-large {
    z-index: 10;
    opacity: 1;
    filter: none;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    transform: none;
}

.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.slot-large img:hover {
    transform: none;
}

.slot-item:hover {
    opacity: 1;
    filter: none;
}

.slots-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home5-border);
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        #000000 0%,
        rgba(0, 229, 255, 0.1) 100%
    );
    color: var(--home5-text);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.carousel-btn:hover {
    border-color: var(--home5-brand);
    box-shadow: var(--home5-shadow-aqua);
    color: var(--home5-brand);
    transform: scale(1.08);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.home5-promo__banner {
    position: relative;
    padding: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    align-items: center;
    gap: 40px;
    overflow: hidden;
    border: 1px solid var(--home5-brand);
    border-radius: 48px;
    background: var(--home5-black);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

.home5-promo__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 70% 50%,
        rgba(0, 229, 255, 0.15),
        transparent 50%
    );
    pointer-events: none;
}

.home5-promo__content,
.home5-promo__media {
    position: relative;
    z-index: 1;
}

.home5-promo__kicker {
    margin: 0 0 16px;
    color: var(--home5-text);
    font-size: 18px;
}

.home5-promo__title {
    margin: 0;
    color: var(--home5-text);
    font-family: var(--home5-font-display);
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.home5-promo__media {
    display: flex;
    justify-content: flex-end;
}

.home5-promo__image {
    width: min(100%, 500px);
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.3));
}

.home5-blog__title {
    margin-bottom: 16px;
}

.home5-blog__subtitle {
    margin: 0 0 4px;
    color: var(--home5-brand);
    font-size: 24px;
    font-weight: 800;
}

.home5-blog__description {
    margin: 0 0 48px;
    color: var(--home5-muted);
}

.home5-blog__slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.home5-blog-card--side {
    width: 25%;
    opacity: 0.6;
    text-align: left;
}

.home5-blog-card--center {
    width: 50%;
}

.home5-blog-card__title {
    margin: 0 0 4px;
    color: var(--home5-brand);
    font-weight: 800;
}

.home5-blog-card__copy {
    margin: 0 0 8px;
    color: var(--home5-muted);
    font-size: 12px;
}

.home5-blog-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--home5-border);
    border-radius: 16px;
}

.home5-blog-card--center .home5-blog-card__media {
    border-color: var(--home5-brand);
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.home5-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home5-blog-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.home5-blog-card__overlay--light {
    background: rgba(0, 0, 0, 0.2);
}

.home5-play-button {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--home5-text);
    font-size: 22px;
    backdrop-filter: blur(14px);
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.home5-play-button:hover {
    border-color: var(--home5-brand);
    background: var(--home5-brand);
    color: var(--home5-black);
}

.home5-play-button--small {
    width: 48px;
    height: 48px;
    border: 0;
    background: var(--home5-text);
    color: var(--home5-black);
    font-size: 17px;
    backdrop-filter: none;
}

.home5-footer {
    margin-top: 64px;
    border-top: 1px solid var(--home5-border);
}

.home5-footer__inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 64px 24px 32px;
}

.home5-footer__intro {
    width: min(100%, 760px);
    margin: 0 auto 64px;
    text-align: center;
}

.home5-footer__intro p {
    margin: 0;
    color: var(--home5-muted);
    font-size: 14px;
    line-height: 1.7;
}

.home5-footer__grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(260px, 2fr) minmax(
            280px,
            1fr
        );
    gap: 48px;
    margin-bottom: 64px;
}

.home5-footer__title {
    margin: 0 0 24px;
    color: var(--home5-brand);
    font-size: 16px;
    font-weight: 800;
}

.home5-footer__title--right {
    text-align: right;
}

.home5-footer__list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
    list-style: none;
}

.home5-footer__link {
    color: var(--home5-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 180ms ease;
}

.home5-footer__link:hover {
    color: var(--home5-brand);
}

.home5-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--home5-muted);
    font-size: 14px;
}

.home5-contact-item__icon {
    color: var(--home5-brand);
    font-size: 18px;
    line-height: 1.2;
}

.home5-subscribe-form {
    display: flex;
    width: 100%;
}

.home5-subscribe-form__input {
    width: 100%;
    min-width: 0;
    padding: 12px 16px;
    border: 1px solid var(--home5-border);
    border-right: 0;
    border-radius: 6px 0 0 6px;
    outline: none;
    background: #1a1a1a;
    color: var(--home5-text);
    font-size: 14px;
    transition: border-color 180ms ease;
}

.home5-subscribe-form__input:focus {
    border-color: var(--home5-brand);
}

.home5-subscribe-form__button {
    padding: 12px 16px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: var(--home5-brand);
    color: var(--home5-black);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: background-color 180ms ease;
}

.home5-subscribe-form__button:hover {
    background: var(--home5-brand-dark);
}

.home5-socials {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.home5-socials__link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--home5-brand);
    color: var(--home5-black);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.home5-socials__link:hover {
    background: var(--home5-brand-dark);
    transform: scale(1.1);
}

.home5-footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--home5-border);
    text-align: center;
}

.home5-footer__bottom p {
    margin: 0;
    color: #737373;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .home5-nav {
        gap: 20px;
    }

    .home5-hero__card,
    .home5-promo__banner {
        padding: 48px;
    }
}

@media (max-width: 900px) {
    .home5-header__brand {
        display: inline-flex;
    }

    .home5-nav {
        display: none;
    }

    .home5-menu-toggle {
        display: grid;
    }

    .home5-hero__card,
    .home5-about__layout,
    .home5-promo__banner {
        grid-template-columns: 1fr;
    }

    .home5-hero__card {
        flex-direction: column;
        text-align: center;
    }

    .home5-hero__badges,
    .home5-hero__media,
    .home5-promo__media {
        justify-content: center;
    }

    .home5-features__grid {
        grid-template-columns: 1fr;
    }

    .home5-footer__grid {
        grid-template-columns: 1fr;
    }

    .home5-footer__title--right,
    .home5-footer__column--subscribe,
    .home5-socials {
        text-align: left;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .home5-header__inner {
        height: 72px;
        padding: 0 16px;
        gap: 12px;
    }

    .home5-auth-button {
        min-height: 36px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .home5-section {
        padding: 48px 16px;
    }

    .home5-hero {
        padding-top: 104px;
    }

    .home5-hero__card,
    .home5-promo__banner {
        padding: 32px 20px;
        border-radius: 28px;
    }

    .home5-hero__card {
        min-height: 0;
        gap: 32px;
    }

    .home5-hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-left: 20px;
        margin-right: 20px;
    }

    .home5-main-button {
        justify-content: center;
        width: 100%;
    }

    .home5-hero__note {
        margin-top: 48px;
        gap: 10px;
    }

    .home5-hero__note-line {
        width: 52px;
    }

    .home5-stats__grid,
    .home5-jackpot__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .home5-stat-card,
    .home5-feature-card {
        padding: 24px;
        border-radius: 24px;
    }

    .home5-providers-track {
        gap: 20px;
        animation-duration: 20s;
    }

    .home5-providers-slider {
        --home5-provider-logo-step: 240px;
    }

    .home5-provider-logo-card {
        width: 220px;
        height: 112px;
        padding: 18px;
    }

    .home5-providers-slider::before,
    .home5-providers-slider::after {
        width: 48px;
    }

    .home5-about__layout {
        gap: 32px;
    }

    .home5-section-heading br {
        display: none;
    }

    .slots-carousel-container {
        --home5-slot-size: 280px;
    }

    .home5-blog__slider {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home5-blog-card--side,
    .home5-blog-card--center {
        width: 100%;
        opacity: 1;
    }

    .home5-subscribe-form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home5-subscribe-form__input,
    .home5-subscribe-form__button {
        border-radius: 6px;
        border-right: 1px solid var(--home5-border);
    }

    .home5-subscribe-form__button {
        margin-top: 10px;
    }
}

@media (max-width: 460px) {
    .home5-header__brand {
        font-size: 14px;
    }

    .home5-header__actions {
        gap: 8px;
    }

    .home5-auth-button {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home5-mobile-nav--open {
        grid-template-columns: 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }

    .home5-hero__title {
        font-size: 42px;
    }

    .home5-stats__grid,
    .home5-jackpot__grid {
        grid-template-columns: 1fr;
    }

    .home5-providers-track {
        animation-duration: 18s;
    }

    .slots-carousel-container {
        --home5-slot-size: 230px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }
}
