* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background: #1F2146;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(31, 33, 70, 0.96) 0%, rgba(31, 33, 70, 0.86) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow: 0 10px 30px rgba(8, 10, 28, 0.32);
}

.header-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.header-left {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: start;
    gap: 14px;
}

.logo {
    display: inline-grid;
    align-items: center;
    justify-content: start;
    text-decoration: none;
}

.logo img {
    height: 50px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.24));
}

header nav ul {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: #F2F2F2;
    font-size: 16px;
    line-height: 1.2;
    transition: 0.3s ease;
    font-weight: bold;
    padding: 10px 14px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(59, 62, 99, 0.26) 0%, rgba(38, 41, 71, 0.18) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 18px rgba(10, 12, 30, 0.16);
}

header nav ul li a:hover {
    color: #F4D447;
    background: linear-gradient(180deg, rgba(72, 76, 118, 0.42) 0%, rgba(45, 48, 82, 0.28) 100%);
    border-color: rgba(244, 212, 71, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 22px rgba(10, 12, 30, 0.22);
}

.header-actions {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 12px;
}

.gift-btn,
.login-btn,
.register-btn {
    text-decoration: none;
    transition: 0.3s ease;
}

.gift-btn {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 242, 242, 0.14);
    background: linear-gradient(180deg, #4A4E7B 0%, #34375E 100%);
    color: #F4D447;
    border-radius: 12px;
    font-size: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(8, 10, 28, 0.24);
}


.gift-btn::after {
    content: "1";
    position: absolute;
    top: -6px;
    right: -6px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FF7A5A 0%, #FE5C37 100%);
    color: #F2F2F2;
    border: 2px solid #1F2146;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(254, 92, 55, 0.36);
}

.gift-btn:hover {
    background: linear-gradient(180deg, #F4D447 0%, #DAB731 100%);
    color: #1F2146;
    border-color: rgba(244, 212, 71, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 12px 24px rgba(8, 10, 28, 0.26);
}
.login-btn {
    min-width: 110px;
    height: 46px;
    padding: 0 18px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(242, 242, 242, 0.14);
    background: linear-gradient(180deg, rgba(77, 81, 121, 0.42) 0%, rgba(47, 50, 87, 0.38) 100%);
    color: #F2F2F2;
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(8, 10, 28, 0.24);
}

.login-btn:hover {
    border-color: rgba(244, 212, 71, 0.42);
    color: #F4D447;
    background: linear-gradient(180deg, rgba(88, 93, 136, 0.56) 0%, rgba(55, 59, 100, 0.48) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 24px rgba(8, 10, 28, 0.28);
}

.register-btn {
    min-width: 150px;
    height: 46px;
    padding: 0 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #F6D957 0%, #E3BE35 100%);
    color: #1F2146;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid #F4D447;
    font-weight: bold;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 12px 24px rgba(19, 22, 47, 0.28);
}

.register-btn:hover {
    background: linear-gradient(180deg, #FF7B57 0%, #FE5C37 100%);
    border-color: #FE5C37;
    color: #F2F2F2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 26px rgba(254, 92, 55, 0.22);
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(242, 242, 242, 0.14);
    background: linear-gradient(180deg, #4A4E7B 0%, #34375E 100%);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(8, 10, 28, 0.24);
}

.burger:hover {
    border-color: rgba(244, 212, 71, 0.45);
    background: linear-gradient(180deg, #555A89 0%, #3B3F67 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 24px rgba(8, 10, 28, 0.28);
}

.burger span,
.burger::before,
.burger::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #F2F2F2;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform 0.28s ease, opacity 0.2s ease, background 0.3s ease;
}

.burger::before {
    transform: translate(-50%, calc(-50% - 7px));
}

.burger::after {
    transform: translate(-50%, calc(-50% + 7px));
}

.burger.active span {
    opacity: 0;
}

.burger.active::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger.active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.mobile-gift {
    position: relative;
    text-align: center;
    font-weight: bold;
    color: #F4D447 !important;
    background: linear-gradient(180deg, #3C406B 0%, #2F3257 100%) !important;
    border: 1px solid rgba(244, 212, 71, 0.22) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 18px rgba(8, 10, 28, 0.16);
}

.mobile-gift::after {
    content: "1";
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FF7A5A 0%, #FE5C37 100%);
    color: #F2F2F2;
    border: 2px solid #3B3E63;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(254, 92, 55, 0.34);
}

/* TABLET */
@media (max-width: 1100px) {
    .header-wrap {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
    }

    header nav ul {
        gap: 18px;
    }

    header nav ul li a {
        font-size: 15px;
    }

    .register-btn {
        min-width: 130px;
    }
}

/* MOBILE */
@media (max-width: 860px) { 
    .header-wrap {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 14px 16px;
    }

    .header-wrap > nav {
        display: none;
    }

    .burger {
        display: block;
    }

    .header-actions {
        gap: 8px;
        padding-right: 4px;
    }

    .login-btn,
    .register-btn {
        height: 40px;
        border-radius: 8px;
    }

    .login-btn {
        min-width: 76px;
        padding: 0 12px;
        font-size: 13px;
    }

    .register-btn {
        min-width: 104px;
        padding: 0 14px;
        font-size: 13px;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        width: calc(100% - 24px);
        background: linear-gradient(180deg, rgba(41, 44, 78, 0.98) 0%, rgba(28, 31, 59, 0.98) 100%);
        backdrop-filter: blur(16px);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(8, 10, 28, 0.34);
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .mobile-menu.active {
        max-height: 560px;
        padding: 18px 20px 24px;
    }

    .mobile-menu nav ul {
        display: grid;
        grid-auto-flow: row;
        justify-content: stretch;
        gap: 14px;
        list-style: none;
    }

    .mobile-menu nav ul li a {
        display: block;
        padding: 12px 14px;
        border: 1px solid rgba(242, 242, 242, 0.08);
        border-radius: 12px;
        background: linear-gradient(180deg, #474B75 0%, #36395F 100%);
        color: #F2F2F2;
        text-decoration: none;
        font-size: 15px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 18px rgba(8, 10, 28, 0.16);
        text-align: center;
    }

    .mobile-menu nav ul li a:hover {
        color: #F4D447;
    }

    .gift-btn {
        display: none !important;
}
}

@media (max-width: 640px) {
    .header-wrap {
        padding: 14px 12px;
    }

    .header-left {
        gap: 10px;
    }

    .logo img {
        width: 100px;
        height: 45px;
    }

    .header-actions {
        grid-auto-flow: column;
        gap: 6px;
        padding-right: 2px;
    }

    .login-btn,
    .register-btn {
        height: 38px;
        border-radius: 8px;
    }

    .login-btn {
        min-width: 66px;
        font-size: 12px;
        padding: 0 10px;
    }

    .register-btn {
        min-width: 90px;
        font-size: 12px;
        padding: 0 12px;
    }

    .burger {
        width: 40px;
        height: 40px;
    }

    .burger span,
    .burger::before,
    .burger::after {
        width: 18px;
    }

    .burger::before {
        transform: translate(-50%, calc(-50% - 6px));
    }

    .burger::after {
        transform: translate(-50%, calc(-50% + 6px));
    }
    .gift-btn {
        display: none !important;
    }
}

body.menu-open {
    overflow: hidden;
}

.hero {
    padding: 24px 20px 0;
}

.hero-slider {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow: 0 24px 60px rgba(8, 10, 28, 0.34);
    background: #2B2E57;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 22, 50, 0.88) 0%, rgba(20, 22, 50, 0.62) 42%, rgba(20, 22, 50, 0.26) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 640px;
    padding: 72px 56px;
    display: grid;
    align-content: center;
    gap: 22px;
}

.hero-content span {
    display: inline-block;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(244, 212, 71, 0.14);
    border: 1px solid rgba(244, 212, 71, 0.24);
    color: #F4D447;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-content p {
    max-width: 560px;
    color: #F2F2F2;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.hero-content a {
    width: fit-content;
    min-width: 210px;
    height: 54px;
    padding: 0 26px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    border-radius: 14px;
    background: linear-gradient(180deg, #F6D957 0%, #E3BE35 100%);
    color: #1F2146;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #F4D447;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 14px 30px rgba(19, 22, 47, 0.3);
    transition: 0.3s ease;
}

.hero-content a:hover {
    background: linear-gradient(180deg, #FF7B57 0%, #FE5C37 100%);
    border-color: #FE5C37;
    color: #F2F2F2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 32px rgba(254, 92, 55, 0.24);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 3;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(31, 33, 70, 0.42);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow: 0 10px 24px rgba(8, 10, 28, 0.24);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(242, 242, 242, 0.34);
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(8, 10, 28, 0.18);
}

.hero-dot.active {
    width: 30px;
    border-radius: 999px;
    background: #F4D447;
}

@media (max-width: 1100px) {
    .hero-slider {
        min-height: 400px;
    }

    .hero-content {
        max-width: 560px;
        padding: 42px 40px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 860px) {
    .hero {
        padding: 18px 16px 0;
    }

    .hero-slider {
        min-height: 420px;
        border-radius: 22px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(12, 14, 38, 0.54) 0%, rgba(12, 14, 38, 0.75) 42%, rgba(12, 14, 38, 0.9) 100%);
    }

    .hero-content {
        max-width: 100%;
        height: 100%;
        padding: 28px 24px 76px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 18px;
    }

    .hero-content span {
        font-size: 18px;
        padding: 9px 14px;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-content a {
        min-width: 190px;
        height: 48px;
        padding: 0 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .hero-dots {
        left: 24px;
        bottom: 20px;
        transform: none;
        justify-content: start;
        gap: 8px;
        padding: 8px 12px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 16px 12px 0;
    }

    .hero-slider {
        min-height: 360px;
        border-radius: 18px;
    }

    .hero-content {
        padding: 22px 18px 68px;
        gap: 14px;
        justify-content: center;
    }

    .hero-content span {
        font-size: 18px;
        padding: 8px 12px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.4;
    }

    .hero-content a {
        min-width: 170px;
        height: 44px;
        font-size: 14px;
        padding: 0 18px;
    }

    .hero-dots {
        left: 18px;
        bottom: 16px;
        padding: 7px 10px;
        gap: 8px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 24px;
    }
}

.extra-menu {
    max-width: 1320px;
    margin: 20px auto 0;
    padding: 14px;
    border-radius: 24px;
}

.extra-top {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(242, 242, 242, 0.05);
}

.extra-search,
.extra-link {
    min-height: 52px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(76, 81, 124, 0.92) 0%, rgba(52, 56, 94, 0.96) 100%);
    border: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 20px rgba(8, 10, 28, 0.14);
}

.extra-search {
    display: flex;
    align-items: center;
    padding: 0 18px 0 52px;
    position: relative;
}

.extra-search::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(242, 242, 242, 0.9);
    border-radius: 50%;
    transform: translateY(-58%);
}

.extra-search::after {
    content: "";
    position: absolute;
    left: 31px;
    top: 30px;
    width: 8px;
    height: 2px;
    background: rgba(242, 242, 242, 0.9);
    transform: rotate(45deg);
    border-radius: 999px;
}

.extra-search input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #F2F2F2;
    font-size: 16px;
    font-weight: 700;
}

.extra-search input::placeholder {
    color: rgba(242, 242, 242, 0.9);
    opacity: 1;
}

.extra-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
    text-decoration: none;
    color: #F2F2F2;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    transition: 0.3s ease;
}

.extra-link:hover {
    color: #F4D447;
    border-color: rgba(244, 212, 71, 0.18);
    background: linear-gradient(180deg, rgba(84, 89, 134, 0.96) 0%, rgba(58, 63, 104, 1) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 10px 24px rgba(8, 10, 28, 0.18);
}

.extra-link span {
    flex: 0 0 auto;
    position: relative;
}

/* providers */
.extra-link-providers span {
    width: 18px;
    height: 18px;
}

.extra-link-providers span::before,
.extra-link-providers span::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #F4D447;
}

.extra-link-providers span::before {
    width: 6px;
    height: 6px;
    top: 0;
    left: 6px;
    box-shadow: -6px 10px 0 #F4D447, 6px 10px 0 #F4D447;
}

.extra-link-providers span::after {
    width: 12px;
    height: 2px;
    top: 8px;
    left: 3px;
    border-radius: 999px;
}

/* collections */
.extra-link-collections span {
    width: 18px;
    height: 18px;
    display: block;
    background:
        linear-gradient(#F4D447 0 0) left top / 6px 6px no-repeat,
        linear-gradient(#F4D447 0 0) right top / 6px 6px no-repeat,
        linear-gradient(#F4D447 0 0) left bottom / 6px 6px no-repeat,
        linear-gradient(#F4D447 0 0) right bottom / 6px 6px no-repeat;
    border-radius: 4px;
}

.extra-bottom-wrap {
    position: relative;
    padding: 0 40px;
}

.extra-bottom {
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    border-radius: 8px;
}

.extra-bottom::-webkit-scrollbar {
    display: none;
}

.extra-bottom ul {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 8px;
    list-style: none;
}

.extra-bottom a {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #F2F2F2;
    background: linear-gradient(180deg, rgba(69, 74, 116, 0.92) 0%, rgba(43, 47, 80, 0.96) 100%);
    border: 1px solid rgba(242, 242, 242, 0.06);
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.3s ease;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 18px rgba(8, 10, 28, 0.12);
}

.extra-bottom a:hover {
    color: #F4D447;
    border-color: rgba(244, 212, 71, 0.16);
    background: linear-gradient(180deg, rgba(83, 88, 134, 0.96) 0%, rgba(53, 58, 97, 1) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 22px rgba(8, 10, 28, 0.18);
}

.extra-bottom a.active {
    color: #F4D447;
    border-color: rgba(244, 212, 71, 0.28);
    background: linear-gradient(180deg, rgba(79, 68, 22, 0.42) 0%, rgba(50, 42, 15, 0.36) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(244, 212, 71, 0.05),
        0 10px 24px rgba(8, 10, 28, 0.18);
}

.extra-bottom a span {
    width: 16px;
    height: 16px;
    position: relative;
    flex: 0 0 auto;
}

/* refined icons */
.item-lobby span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FFE37A 0%, #F4D447 58%, #D5AE1F 100%);
    box-shadow: 0 0 0 4px rgba(244, 212, 71, 0.1);
}

.item-favorite span {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background: linear-gradient(180deg, #FFFFFF 0%, #D9D9D9 100%);
    border-radius: 3px;
}

.item-season span {
    width: 16px;
    height: 16px;
}

.item-season span::before,
.item-season span::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.item-season span::before {
    inset: 6px 1px 6px 1px;
    background: linear-gradient(90deg, #F4D447 0%, #FE8E54 100%);
}

.item-season span::after {
    width: 6px;
    height: 6px;
    left: 5px;
    top: 5px;
    background: #FFF1A5;
    border-radius: 50%;
}

.item-treasure span {
    width: 14px;
    height: 14px;
    background: linear-gradient(180deg, #97F46D 0%, #67C63E 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.item-popular span {
    width: 16px;
    height: 10px;
}

.item-popular span::before,
.item-popular span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #FFFFFF 0%, #CFCFCF 100%);
}

.item-popular span::before {
    left: 0;
}

.item-popular span::after {
    right: 0;
    opacity: 0.72;
}

.item-new span {
    width: 14px;
    height: 14px;
}

.item-new span::before,
.item-new span::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: #F4D447;
}

.item-new span::before {
    width: 3px;
    height: 14px;
    left: 3px;
    top: 0;
    box-shadow: 6px 0 0 #F4D447;
}

.item-new span::after {
    width: 10px;
    height: 3px;
    left: 2px;
    top: 5px;
    opacity: 0.55;
}

.item-slots span {
    width: 16px;
    height: 16px;
    background:
        linear-gradient(#F2F2F2 0 0) left top / 5px 5px no-repeat,
        linear-gradient(#F2F2F2 0 0) right top / 5px 5px no-repeat,
        linear-gradient(#F2F2F2 0 0) left bottom / 5px 5px no-repeat,
        linear-gradient(#F2F2F2 0 0) right bottom / 5px 5px no-repeat;
}

.item-reward span {
    width: 16px;
    height: 16px;
}

.item-reward span::before,
.item-reward span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.item-reward span::before {
    width: 12px;
    height: 7px;
    top: 0;
    border: 2px solid #F2F2F2;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.item-reward span::after {
    width: 6px;
    height: 5px;
    bottom: 0;
    background: linear-gradient(180deg, #F2F2F2 0%, #D2D2D2 100%);
    border-radius: 0 0 3px 3px;
}

.item-bonus span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(180deg, #FF8A55 0%, #F4D447 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.item-live span {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 35%, #FFE37A 0%, #F4D447 58%, #D5AE1F 100%);
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(244, 212, 71, 0.1),
        0 0 0 8px rgba(244, 212, 71, 0.04);
}

.item-fast span {
    width: 14px;
    height: 14px;
}

.item-fast span::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 0;
    height: 0;
    border-left: 7px solid #F4D447;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.item-books span {
    width: 16px;
    height: 13px;
    border: 2px solid #F2F2F2;
    border-radius: 3px;
}

.item-books span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -2px;
    width: 2px;
    height: 13px;
    background: #F2F2F2;
    transform: translateX(-50%);
    opacity: 0.9;
}

.extra-scroll {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(242, 242, 242, 0.07);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(81, 86, 129, 0.72) 0%, rgba(51, 55, 92, 0.82) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 18px rgba(8, 10, 28, 0.16);
    cursor: pointer;
    transition: 0.3s ease;
    opacity: 0.88;
}

.extra-scroll:hover {
    opacity: 1;
    border-color: rgba(244, 212, 71, 0.18);
    background: linear-gradient(180deg, rgba(90, 96, 145, 0.9) 0%, rgba(57, 62, 103, 0.96) 100%);
}

.extra-scroll::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #F2F2F2;
    border-right: 2px solid #F2F2F2;
    transform-origin: center;
}

.extra-scroll-prev {
    left: 0;
}

.extra-scroll-prev::before {
    transform: translate(-28%, -50%) rotate(-135deg);
}

.extra-scroll-next {
    right: 0;
}

.extra-scroll-next::before {
    transform: translate(-72%, -50%) rotate(45deg);
}

@media (max-width: 1100px) {
    .extra-top {
        grid-template-columns: 1fr 160px 160px;
    }

    .extra-link {
        font-size: 13px;
        padding: 0 14px;
    }

    .extra-bottom-wrap {
        padding: 0 34px;
    }

    .extra-bottom a {
        min-height: 46px;
        padding: 0 16px;
    }
}

@media (max-width: 860px) {
    .extra-menu {
        padding: 12px;
        margin-top: 16px;
        border-radius: 20px;
    }

    .extra-top {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .extra-search {
        grid-column: 1 / -1;
    }

    .extra-search,
    .extra-link {
        min-height: 46px;
        border-radius: 14px;
    }

    .extra-bottom-wrap {
        padding: 0;
    }

    .extra-scroll {
        display: none;
    }

    .extra-bottom ul {
        gap: 6px;
    }

    .extra-bottom a {
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
        border-radius: 14px;
    }

    .extra-menu {
        padding: 18px 16px 0;
    }
}

@media (max-width: 640px) {
    .extra-menu {
        padding: 10px;
        border-radius: 18px;
    }

    .extra-top {
        grid-template-columns: 1fr;
    }

    .extra-search,
    .extra-link {
        min-height: 44px;
        border-radius: 12px;
    }

    .extra-search {
        padding: 0 14px 0 46px;
    }

    .extra-link {
        justify-content: flex-start;
        font-size: 13px;
        padding: 0 14px;
    }

    .extra-bottom a {
        min-height: 42px;
        padding: 0 14px;
        gap: 8px;
        font-size: 12px;
        border-radius: 12px;
    }

    .extra-bottom a span {
        transform: scale(0.92);
    }
}

.extra-bottom-wrap {
    padding: 0;
}

.extra-bottom {
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 212, 71, 0.55) rgba(255, 255, 255, 0.08);
}

.extra-bottom::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.extra-bottom::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.extra-bottom::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(244, 212, 71, 0.9) 0%, rgba(227, 190, 53, 0.9) 100%);
    border-radius: 999px;
}

.extra-bottom::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(255, 123, 87, 0.95) 0%, rgba(244, 212, 71, 0.95) 100%);
}

.top-games {
    max-width: 1320px;
    margin: 24px auto 0;
    padding: 0 20px 40px;
}

.top-games-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.top-games-head > span {
    display: block;
    color: #F2F2F2;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.top-games-head > a {
    min-width: 122px;
    height: 42px;
    padding: 0 18px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    color: #F4D447;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    border: 1px solid rgba(244, 212, 71, 0.18);
    background: linear-gradient(180deg, rgba(73, 77, 119, 0.9) 0%, rgba(46, 49, 84, 0.96) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 18px rgba(8, 10, 28, 0.14);
    transition: 0.3s ease;
}

.top-games-head > a:hover {
    color: #1F2146;
    background: linear-gradient(180deg, #F6D957 0%, #E3BE35 100%);
    border-color: #F4D447;
}

.top-games-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 120px;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 212, 71, 0.55) rgba(255, 255, 255, 0.08);
}

.top-games-track::-webkit-scrollbar {
    height: 8px;
}

.top-games-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.top-games-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(244, 212, 71, 0.9) 0%, rgba(227, 190, 53, 0.9) 100%);
    border-radius: 999px;
}

.top-games-track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(255, 123, 87, 0.95) 0%, rgba(244, 212, 71, 0.95) 100%);
}

.game-card {
    width: 120px;
}

.game-card-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(64, 69, 111, 0.94) 0%, rgba(37, 40, 72, 0.98) 100%);
    border: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 22px rgba(8, 10, 28, 0.16);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover .game-card-image {
    transform: translateY(-3px);
    border-color: rgba(244, 212, 71, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 16px 28px rgba(8, 10, 28, 0.22);
}

.game-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.game-card:hover .game-card-image img,
.game-card.is-open .game-card-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(180deg, rgba(10, 12, 30, 0.12) 0%, rgba(10, 12, 30, 0.78) 100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.game-card:hover .game-overlay,
.game-card.is-open .game-overlay {
    opacity: 1;
    visibility: visible;
}

.game-actions {
    width: 100%;
    display: grid;
    gap: 8px;
}

.game-demo,
.game-play {
    width: 100%;
    min-height: 34px;
    padding: 0 10px;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.game-demo {
    color: #F2F2F2;
    border: 1px solid rgba(242, 242, 242, 0.14);
    background: linear-gradient(180deg, rgba(79, 84, 128, 0.96) 0%, rgba(50, 54, 92, 0.98) 100%);
}

.game-demo:hover {
    color: #F4D447;
    border-color: rgba(244, 212, 71, 0.22);
}

.game-play {
    color: #1F2146;
    border: 1px solid #F4D447;
    background: linear-gradient(180deg, #F6D957 0%, #E3BE35 100%);
}

.game-play:hover {
    color: #F2F2F2;
    border-color: #FE5C37;
    background: linear-gradient(180deg, #FF7B57 0%, #FE5C37 100%);
}

.game-card-info {
    padding-top: 10px;
}

.game-card-info span {
    display: block;
    color: #F2F2F2;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 4px;
}

.game-card-info p {
    color: rgba(242, 242, 242, 0.68);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
}

@media (max-width: 860px) {
    .top-games {
        margin-top: 20px;
        padding: 0 16px 32px;
    }

    .top-games-head > span {
        font-size: 22px;
    }

    .top-games-head > a {
        min-width: 108px;
        height: 38px;
        font-size: 13px;
        border-radius: 10px;
    }

    .top-games-track {
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .top-games {
        padding: 0 12px 28px;
    }

    .top-games-head {
        margin-bottom: 14px;
    }

    .top-games-head > span {
        font-size: 20px;
    }

    .top-games-head > a {
        min-width: 96px;
        height: 36px;
        padding: 0 12px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .top-games-track {
        gap: 12px;
    }

    .game-card-image {
        border-radius: 16px;
    }

    .game-demo,
    .game-play {
        min-height: 32px;
        font-size: 11px;
        border-radius: 8px;
    }

    .game-card-info span {
        font-size: 13px;
    }

    .game-card-info p {
        font-size: 11px;
    }
}

.content-section {
    max-width: 1320px;
    margin: 24px auto 0;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(45, 49, 87, 0.92) 0%, rgba(28, 31, 59, 0.98) 100%);
    border: 1px solid rgba(242, 242, 242, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 36px rgba(8, 10, 28, 0.18);
    color: #F2F2F2;
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section p,
.content-section blockquote,
.content-section ul,
.content-section ol,
.content-section table,
.content-section img {
    margin-bottom: 18px;
}

.content-section h1 {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #F2F2F2;
}

.content-section h2 {
    margin-top: 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #F4D447;
}

.content-section h3 {
    margin-top: 6px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    color: #F2F2F2;
}

.content-section p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(242, 242, 242, 0.88);
}

.content-section img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(242, 242, 242, 0.08);
    box-shadow: 0 12px 24px rgba(8, 10, 28, 0.18);
    margin-bottom: 18px;
}

.content-section blockquote {
    padding: 18px 20px;
    border-left: 4px solid #F4D447;
    border-radius: 0 16px 16px 0;
    background: linear-gradient(180deg, rgba(79, 68, 22, 0.18) 0%, rgba(50, 42, 15, 0.12) 100%);
    color: #F2F2F2;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.content-section ul,
.content-section ol {
    padding-left: 22px;
    color: rgba(242, 242, 242, 0.9);
}

.content-section ul li,
.content-section ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.65;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(64, 69, 111, 0.9) 0%, rgba(37, 40, 72, 0.96) 100%);
    border: 1px solid rgba(242, 242, 242, 0.07);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 12px 24px rgba(8, 10, 28, 0.14);
}

.content-section table::-webkit-scrollbar {
    height: 8px;
}

.content-section table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.content-section table::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(244, 212, 71, 0.9) 0%, rgba(227, 190, 53, 0.9) 100%);
    border-radius: 999px;
}

.content-section thead {
    background: rgba(244, 212, 71, 0.12);
}

.content-section th,
.content-section td {
    padding: 14px 16px;
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(242, 242, 242, 0.08);
    color: #F2F2F2;
}

.content-section th {
    font-weight: 700;
    color: #F4D447;
}

.content-section tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 860px) {
    .content-section {
        margin-top: 20px;
        padding: 22px 18px;
        border-radius: 20px;
    }

    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section p,
    .content-section ul li,
    .content-section ol li {
        font-size: 15px;
    }

    .content-section th,
    .content-section td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .content-section blockquote {
        padding: 16px 18px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .content-section {
        margin-top: 18px;
        padding: 18px 14px;
        border-radius: 18px;
    }

    .content-section h1 {
        font-size: 26px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .content-section p,
    .content-section ul li,
    .content-section ol li {
        font-size: 14px;
        line-height: 1.7;
    }

    .content-section blockquote {
        font-size: 15px;
        line-height: 1.65;
        border-radius: 0 14px 14px 0;
    }

    .content-section h1,
    .content-section h2,
    .content-section h3,
    .content-section p,
    .content-section blockquote,
    .content-section ul,
    .content-section ol,
    .content-section table,
    .content-section img {
        margin-bottom: 16px;
    }

    @media (max-width: 640px) {
    .content-section table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
}

.site-footer {
    max-width: 1320px;
    margin: 28px auto 0;
    border: 1px solid rgba(242, 242, 242, 0.07);
    border-radius: 24px 24px 24px 24px;

}

.site-footer > div {
    background: linear-gradient(180deg, rgba(45, 49, 87, 0.94) 0%, rgba(28, 31, 59, 0.98) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 14px 28px rgba(8, 10, 28, 0.16);
}

.footer-top {
    padding: 26px 24px 22px;
    border-radius: 24px 24px 0 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    gap: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-logo img {
    width: 55px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.footer-top span {
    display: block;
    margin-bottom: 12px;
    color: #F4D447;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}

.footer-brand > span {
    margin-bottom: 10px;
}

.footer-top p {
    color: rgba(242, 242, 242, 0.8);
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
}

.footer-top ul {
    list-style: none;
}

.footer-top ul li + li {
    margin-top: 10px;
}

.footer-top ul li a {
    color: rgba(242, 242, 242, 0.82);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: 0.3s ease;
}

.footer-top ul li a:hover {
    color: #F4D447;
}

.footer-disclaimer {
    margin-top: 1px;
    padding: 18px 24px;
}

.footer-disclaimer p {
    color: rgba(242, 242, 242, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 1px;
    padding: 16px 24px;
    border-radius: 0 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(242, 242, 242, 0.68);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 22px 18px 18px;
        border-radius: 20px 20px 0 0;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 12px;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-top p {
        max-width: 100%;
    }

    .footer-disclaimer {
        padding: 16px 18px;
        text-align: center;
    }

    .footer-bottom {
        padding: 14px 18px;
        border-radius: 0 0 20px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-top {
        padding: 18px 14px 16px;
        gap: 18px;
        border-radius: 18px 18px 0 0;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-logo img {
        width: 100px;
    }

    .footer-top span {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-top p,
    .footer-top ul li a {
        font-size: 14px;
    }

    .footer-disclaimer {
        padding: 14px;
        text-align: center;
    }

    .footer-disclaimer p {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 12px 14px;
        border-radius: 0 0 18px 18px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

.header-logo img {
    width: 100px;
    height: auto;
}

.game-card img {
    width: 118px;
    height: 118px;
    object-fit: cover;
}

/* DESKTOP: скрыть последние 3 пункта меню */
header .header-wrap > nav > ul > li:nth-last-child(-n+3) {
	display: none !important;
}

/* MOBILE: скрыть последние 3 пункта из menu_top(), но оставить последний li (🎁) */
header .mobile-menu nav ul > li:nth-child(4),
header .mobile-menu nav ul > li:nth-child(5),
header .mobile-menu nav ul > li:nth-child(6) {
	display: none !important;
}