@font-face {
    font-family: "ManropeLocal";
    src: url("/res/p24-fonts/manrope-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ManropeLocal";
    src: url("/res/p24-fonts/manrope-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("/res/p24-fonts/outfit-600.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "OutfitLocal";
    src: url("/res/p24-fonts/outfit-800.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --p24-yellow: #e8ff00;
    --p24-yellow-dim: #c8db00;
    --p24-black: #0b0b0b;
    --p24-dark: #141414;
    --p24-dark-2: #1c1c1c;
    --p24-gray: #8a8a8a;
    --p24-gray-light: #ececec;
    --p24-white: #ffffff;
    --p24-green: #1f9d6a;
    --p24-accent-blue: #4db8e8;
    --p24-radius: 12px;
    --p24-radius-pill: 999px;
    --p24-font-body: "ManropeLocal", system-ui, sans-serif;
    --p24-font-display: "OutfitLocal", "ManropeLocal", system-ui, sans-serif;
    --p24-top-stack: 0px;
    --p24-dock-height: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--p24-font-body);
    font-size: 15px;
    line-height: 1.55;
    color: #1a1a1a;
    background: var(--p24-gray-light);
    padding-bottom: var(--p24-dock-height);
}

body.p24-promo-hidden {
    --p24-top-stack: 0px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

/* Promo ribbon */
.p24-promo-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 36px;
    padding: 6px 40px 6px 16px;
    background: var(--p24-yellow);
    color: var(--p24-black);
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 120;
}

.p24-promo-ribbon.is-hidden {
    display: none;
}

.p24-promo-ribbon__close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--p24-black);
    padding: 4px 8px;
}

/* Top bar */
.p24-top-bar {
    background: var(--p24-black);
    color: var(--p24-white);
    position: sticky;
    top: 0;
    z-index: 110;
    border-bottom: 1px solid #222;
}

.p24-top-bar__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.p24-brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--p24-yellow);
    flex-shrink: 0;
}

.p24-brand-mark__text {
    font-family: var(--p24-font-display);
    font-weight: 800;
    font-size: 26px;
    font-style: italic;
    letter-spacing: -0.02em;
}

.p24-brand-mark__img {
    width: auto;
    height: 32px;
    object-fit: contain;
}

.p24-top-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.p24-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: var(--p24-radius-pill);
    font-family: var(--p24-font-body);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.p24-btn:hover {
    opacity: 0.92;
}

.p24-btn--ghost {
    background: #2a2a2a;
    color: var(--p24-white);
}

.p24-btn--accent {
    background: var(--p24-yellow);
    color: var(--p24-black);
}

.p24-btn--outline {
    background: transparent;
    color: var(--p24-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.p24-btn--sm {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
}

/* Horizontal nav strip under header */
.p24-nav-strip {
    background: var(--p24-dark);
    border-bottom: 1px solid #252525;
    position: sticky;
    top: 54px;
    z-index: 105;
}

.p24-nav-strip__list {
    list-style: none;
    margin: 0 auto;
    padding: 0 12px;
    max-width: 1440px;
    display: flex;
    align-items: stretch;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.p24-nav-strip__list::-webkit-scrollbar {
    display: none;
}

.p24-nav-strip__item {
    flex: 0 0 auto;
}

.p24-nav-strip__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: #d8d8d8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.p24-nav-strip__link:hover,
.p24-nav-strip__link.is-active {
    color: var(--p24-yellow);
    border-bottom-color: var(--p24-yellow);
}

.p24-nav-glyph {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Main content */
.p24-page-body {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 13px;
}

.breadcrumb-link {
    color: var(--p24-gray);
    text-decoration: none;
}

.breadcrumb-link:hover {
    color: var(--p24-green);
}

.breadcrumb-divider {
    color: #bbb;
}

/* Banner slider */
.p24-banner-slider {
    position: relative;
    margin-bottom: 20px;
    border-radius: var(--p24-radius);
    overflow: hidden;
    background: var(--p24-dark-2);
}

.p24-banner-slider__viewport {
    overflow: hidden;
}

.p24-banner-slider__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.p24-banner-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.p24-banner-slide__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--p24-dark-2);
}

.p24-banner-slide__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1200 / 340;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p24-banner-slide__media picture,
.p24-banner-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.p24-banner-slide__content {
    padding: 16px 18px 18px;
    color: var(--p24-white);
}

.p24-banner-slide__title {
    font-family: var(--p24-font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.p24-banner-slide__text {
    margin: 0 0 12px;
    font-size: 14px;
    color: #c8c8c8;
}

.p24-banner-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0 14px;
}

.p24-banner-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #555;
    cursor: pointer;
    padding: 0;
}

.p24-banner-slider__dot.is-active {
    background: var(--p24-yellow);
    transform: scale(1.15);
}

/* Game sections */
.p24-game-block {
    margin-bottom: 28px;
}

.p24-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.p24-section-head__title {
    font-family: var(--p24-font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--p24-black);
}

.p24-section-head__more {
    font-size: 13px;
    font-weight: 700;
    color: var(--p24-gray);
    text-decoration: none;
}

.p24-section-head__more:hover {
    color: var(--p24-green);
}

.p24-slots-scroller {
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 4px;
}

.p24-slots-row {
    display: flex;
    gap: 12px;
    min-width: min-content;
}

.p24-slot-card {
    flex: 0 0 148px;
    width: 148px;
    background: var(--p24-white);
    border-radius: var(--p24-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.p24-slot-card__visual {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p24-slot-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.p24-slot-card__actions {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.p24-slot-card:hover .p24-slot-card__actions,
.p24-slot-card:focus-within .p24-slot-card__actions {
    opacity: 1;
}

.p24-slot-card__name {
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: #222;
}

/* Bonuses */
.p24-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.p24-bonus-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, var(--p24-black) 0%, var(--p24-dark-2) 100%);
    border-radius: calc(var(--p24-radius) + 2px);
    overflow: hidden;
    color: var(--p24-white);
    border: 1px solid rgba(232, 255, 0, 0.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.p24-bonus-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 255, 0, 0.35);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.28),
        0 0 32px rgba(232, 255, 0, 0.08);
}

.p24-bonus-tile__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.p24-bonus-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.85) 0%, transparent 50%);
    pointer-events: none;
}

.p24-bonus-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.p24-bonus-tile:hover .p24-bonus-tile__media img {
    transform: scale(1.04);
}

.p24-bonus-tile__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px;
}

.p24-bonus-tile__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: var(--p24-radius-pill);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(232, 255, 0, 0.15);
    color: var(--p24-yellow);
    border: 1px solid rgba(232, 255, 0, 0.3);
    margin-bottom: 10px;
}

.p24-bonus-tile__name {
    font-family: var(--p24-font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
}

.p24-bonus-tile__desc {
    margin: 0 0 14px;
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.55;
    flex: 1;
}

.p24-bonus-tile__value {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: var(--p24-radius);
    font-family: var(--p24-font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--p24-black);
    background: var(--p24-yellow);
    box-shadow: 0 4px 16px rgba(232, 255, 0, 0.25);
}

.p24-bonus-tile__terms {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: #777;
    line-height: 1.45;
}

/* Payment methods */
.p24-pay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin: 20px 0 28px;
}

.p24-pay-item {
    background: var(--p24-white);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.p24-pay-item img {
    max-height: 36px;
    width: auto;
    margin: 0 auto 8px;
    object-fit: contain;
}

.p24-pay-item__label {
    font-size: 11px;
    font-weight: 700;
}

/* SEO text block - only place with h1/h2/h3 */
.text-content {
    max-width: 920px;
    margin: 28px auto 0;
    padding: 32px 28px;
    background: var(--p24-white);
    border-radius: calc(var(--p24-radius) + 2px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.text-content h1 {
    font-family: var(--p24-font-display);
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 800;
    margin: 0 0 22px;
    padding-bottom: 18px;
    color: var(--p24-black);
    border-bottom: 3px solid var(--p24-yellow);
    line-height: 1.2;
}

.text-content h2 {
    font-family: var(--p24-font-display);
    font-size: clamp(19px, 3vw, 24px);
    font-weight: 800;
    margin: 36px 0 14px;
    padding-left: 14px;
    color: var(--p24-black);
    border-left: 4px solid var(--p24-yellow);
    line-height: 1.3;
}

.text-content h2:first-of-type {
    margin-top: 8px;
}

.text-content h3 {
    font-family: var(--p24-font-display);
    font-size: 17px;
    font-weight: 800;
    margin: 24px 0 10px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-content h3::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--p24-green);
    flex-shrink: 0;
}

.text-content p {
    margin: 0 0 16px;
    color: #444;
    line-height: 1.65;
    font-size: 15px;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content a {
    color: var(--p24-black);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--p24-yellow);
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.text-content a:hover {
    color: var(--p24-green);
}

.text-content img {
    border-radius: var(--p24-radius);
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.text-content .list-container {
    margin: 16px 0 20px;
    padding: 16px 18px;
    background: #fafafa;
    border-radius: var(--p24-radius);
    border: 1px solid #eee;
}

.text-content .list-container ul,
.text-content .list-container ol {
    margin: 0;
    padding-left: 22px;
}

.text-content .list-container li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.text-content .list-container li::marker {
    color: var(--p24-yellow-dim);
    font-weight: 700;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.table-wrapper table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
}

.table-wrapper th,
.table-wrapper td {
    padding: 10px 12px;
    border-bottom: 1px solid #ececec;
    text-align: left;
    font-size: 14px;
}

.table-wrapper th {
    background: #f5f5f5;
    font-weight: 700;
}

.text-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--p24-yellow);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f0 100%);
    border-radius: 0 var(--p24-radius) var(--p24-radius) 0;
    font-style: italic;
    color: #555;
}

.faq-wrapper,
.howto-wrapper,
.list-container {
    margin: 16px 0;
}

.faq-item-block {
    border: 1px solid #e8e8e8;
    border-radius: var(--p24-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-item-block:hover {
    border-color: rgba(232, 255, 0, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question-block {
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f3f3ee 100%);
    font-family: var(--p24-font-display);
    font-size: 15px;
}

.faq-answer-block {
    padding: 16px 18px;
    color: #444;
    line-height: 1.6;
    background: var(--p24-white);
}

.howto-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: p24step;
}

.howto-step-item {
    counter-increment: p24step;
    padding: 14px 14px 14px 42px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.howto-step-item::before {
    content: counter(p24step);
    position: absolute;
    left: 12px;
    top: 14px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--p24-yellow);
    color: var(--p24-black);
    font-family: var(--p24-font-display);
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(232, 255, 0, 0.35);
}

/* App page table */
.p24-app-hero {
    position: relative;
    margin: 0 0 32px;
    padding: 28px 24px 8px;
    background: linear-gradient(155deg, var(--p24-black) 0%, #1a1a0a 45%, var(--p24-dark-2) 100%);
    border-radius: calc(var(--p24-radius) + 6px);
    border: 1px solid rgba(232, 255, 0, 0.2);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 80px rgba(232, 255, 0, 0.06);
    overflow: hidden;
}

.p24-app-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 255, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.p24-app-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--p24-yellow), var(--p24-yellow-dim), var(--p24-yellow));
}

.app-info-table-wrapper {
    margin: 0 0 24px;
}

.p24-app-hero .app-info-table-container {
    border: none;
    overflow: visible;
    margin: 0;
}

.p24-app-hero .app-info-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.p24-app-hero .app-info-row {
    border-bottom: none;
}

.p24-app-hero .app-info-row:first-child .app-info-value-cell {
    font-family: var(--p24-font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--p24-yellow);
}

.p24-app-hero .app-info-label-cell,
.p24-app-hero .app-info-value-cell {
    padding: 14px 16px;
    vertical-align: middle;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.p24-app-hero .app-info-label-cell {
    width: 56px;
    border-radius: var(--p24-radius) 0 0 var(--p24-radius);
    text-align: center;
}

.p24-app-hero .app-info-value-cell {
    border-radius: 0 var(--p24-radius) var(--p24-radius) 0;
    color: #e8e8e8;
    font-size: 14px;
    line-height: 1.5;
}

.p24-app-hero .app-info-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(232, 255, 0, 0.12);
    border: 1px solid rgba(232, 255, 0, 0.25);
}

.p24-app-hero .app-info-icon {
    width: 20px;
    height: 20px;
    color: var(--p24-yellow);
}

.app-info-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
}

.app-info-row {
    border-bottom: 1px solid #e8e8e8;
}

.app-info-label-cell,
.app-info-value-cell {
    padding: 14px 12px;
    vertical-align: middle;
}

.app-info-icon {
    width: 22px;
    height: 22px;
    color: var(--p24-green);
}

.p24-app-hero .app-name-with-logo {
    gap: 14px;
}

.p24-app-hero .app-name-logo {
    width: 52px;
    height: 52px;
    padding: 6px;
    background: rgba(232, 255, 0, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(232, 255, 0, 0.3);
}

.p24-app-hero .app-name-text {
    font-style: italic;
    letter-spacing: -0.02em;
}

.app-name-with-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-name-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.p24-app-hero .app-download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: var(--p24-radius-pill);
    background: var(--p24-yellow);
    color: var(--p24-black);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(232, 255, 0, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.p24-app-hero .app-download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 255, 0, 0.4);
}

.app-download-link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: var(--p24-radius-pill);
    background: var(--p24-black);
    color: var(--p24-white);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 600px) {
    .p24-app-hero {
        padding: 22px 14px 6px;
    }

    .p24-app-hero .app-info-label-cell,
    .p24-app-hero .app-info-value-cell {
        padding: 12px 10px;
    }

    .p24-app-hero .app-info-row:first-child .app-info-value-cell {
        font-size: 18px;
    }
}

/* Footer */
.p24-site-footer {
    position: relative;
    background: var(--p24-black);
    color: #c8c8c8;
    margin-top: 40px;
    overflow: hidden;
}

.p24-site-footer__accent {
    height: 4px;
    background: linear-gradient(90deg, var(--p24-yellow) 0%, var(--p24-yellow-dim) 50%, var(--p24-yellow) 100%);
}

.p24-site-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 16px 28px;
}

.p24-site-footer__brand {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p24-brand-mark--footer .p24-brand-mark__text {
    color: var(--p24-yellow);
    font-size: 30px;
}

.p24-site-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 32px;
}

.p24-footer-col__label {
    font-family: var(--p24-font-display);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--p24-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.p24-footer-col__label::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    margin-top: 10px;
    border-radius: var(--p24-radius-pill);
    background: var(--p24-yellow);
}

.p24-footer-col__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.p24-footer-col__links li {
    margin-bottom: 4px;
}

.p24-footer-col__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    color: #a8a8a8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s ease, transform 0.15s ease;
}

.p24-footer-col__link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(232, 255, 0, 0.35);
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.15s ease;
}

.p24-footer-col__link:hover,
.p24-footer-col__link.is-active {
    color: var(--p24-yellow);
}

.p24-footer-col__link:hover::before,
.p24-footer-col__link.is-active::before {
    background: var(--p24-yellow);
    transform: scale(1.2);
}

.p24-footer-col__links--social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.p24-footer-col__links--social li {
    margin-bottom: 0;
}

.p24-footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: var(--p24-radius);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.p24-footer-social-btn:hover {
    background: rgba(232, 255, 0, 0.12);
    border-color: rgba(232, 255, 0, 0.35);
    transform: translateY(-2px);
}

.p24-footer-social-btn__text {
    font-size: 12px;
    font-weight: 700;
    color: var(--p24-white);
    letter-spacing: 0.02em;
}

.p24-footer-social-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(1.1);
}

.p24-footer-cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.p24-btn--footer {
    width: 100%;
    justify-content: center;
}

.p24-site-footer .p24-btn--outline {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--p24-white);
}

.p24-site-footer .p24-btn--outline:hover {
    border-color: var(--p24-yellow);
    color: var(--p24-yellow);
}

.p24-site-footer .p24-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
}

.p24-site-footer__bottom {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.p24-footer-safe__list {
    list-style: none;
    margin: 0 0 20px;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--p24-radius);
}

.p24-footer-safe__link {
    display: inline-flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.p24-footer-safe__link:hover {
    opacity: 1;
}

.p24-footer-safe__img {
    max-height: 34px;
    width: auto;
    filter: brightness(1.05);
}

.p24-site-footer__copy {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 700;
    color: #888;
}

.p24-site-footer__disclaimer {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile drawer */
.p24-drawer-mask {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
}

.p24-drawer-mask[hidden] {
    display: none;
}

.p24-drawer-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--p24-dark);
    color: var(--p24-white);
    z-index: 210;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    padding-bottom: var(--p24-dock-height);
}

.p24-drawer-panel.is-open {
    transform: translateX(0);
}

.p24-drawer-panel__head {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px;
    border-bottom: 1px solid #2a2a2a;
}

.p24-drawer-panel__close {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #2a2a2a;
    color: var(--p24-yellow);
    font-size: 22px;
    cursor: pointer;
}

.p24-drawer-panel__list {
    list-style: none;
    margin: 0;
    padding: 12px;
}

.p24-drawer-panel__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 10px;
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 4px;
}

.p24-drawer-panel__link.is-active,
.p24-drawer-panel__link:hover {
    background: #252525;
    color: var(--p24-yellow);
}

/* Bottom dock - burger on the left */
.p24-bottom-dock {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--p24-dock-height);
    background: var(--p24-dark);
    border-top: 1px solid #2a2a2a;
    z-index: 130;
    padding: 0 4px;
    align-items: stretch;
    justify-content: space-around;
}

.p24-bottom-dock__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #888;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 4px 2px;
    min-width: 0;
}

.p24-bottom-dock__item.is-active {
    color: var(--p24-yellow);
}

.p24-bottom-dock__glyph,
.p24-bottom-dock__item .p24-nav-glyph {
    width: 22px;
    height: 22px;
}

.p24-bottom-dock__item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.p24-bottom-dock__burger {
    order: -1;
    flex: 0 0 56px;
}

/* Error page */
.p24-page-body:has(.p24-error-panel) {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px - var(--p24-dock-height));
    padding: 24px 16px;
}

.p24-error-panel {
    position: relative;
    text-align: center;
    padding: 56px 32px 48px;
    width: min(520px, 100%);
    margin: 0 auto;
    background: var(--p24-black);
    border-radius: calc(var(--p24-radius) + 4px);
    border: 1px solid rgba(232, 255, 0, 0.18);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 0 80px rgba(232, 255, 0, 0.08);
    overflow: hidden;
}

.p24-error-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(232, 255, 0, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(77, 184, 232, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.p24-error-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 0 0 var(--p24-radius-pill) var(--p24-radius-pill);
    background: var(--p24-yellow);
    box-shadow: 0 0 24px rgba(232, 255, 0, 0.5);
}

.p24-error-panel__code {
    position: relative;
    font-family: var(--p24-font-display);
    font-size: clamp(88px, 22vw, 128px);
    font-weight: 800;
    font-style: italic;
    color: var(--p24-yellow);
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(232, 255, 0, 0.35);
}

.p24-error-panel__title {
    position: relative;
    font-family: var(--p24-font-display);
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--p24-white);
    line-height: 1.25;
}

.p24-error-panel__text {
    position: relative;
    margin: 0 auto 32px;
    max-width: 360px;
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.6;
}

.p24-error-panel .p24-btn {
    position: relative;
    min-width: 200px;
    min-height: 46px;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(232, 255, 0, 0.25);
}

.p24-error-panel .p24-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 255, 0, 0.35);
}

/* Contact page */
.p24-page-body--contact .text-content {
    max-width: 760px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.p24-page-body--contact .text-content h1 {
    margin: 0 0 28px;
    padding: 36px 28px;
    font-size: clamp(28px, 5vw, 40px);
    color: var(--p24-white);
    text-align: center;
    background: var(--p24-black);
    border-radius: calc(var(--p24-radius) + 4px);
    border: 1px solid rgba(232, 255, 0, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.p24-page-body--contact .text-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--p24-yellow);
    border-radius: var(--p24-radius-pill) var(--p24-radius-pill) 0 0;
}

.p24-page-body--contact .text-content > p:first-of-type {
    margin: 0 0 32px;
    padding: 18px 22px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    background: var(--p24-white);
    border-radius: var(--p24-radius);
    border-left: 4px solid var(--p24-yellow);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.p24-page-body--contact .text-content h2 {
    margin: 0 0 16px;
    font-size: 20px;
    color: var(--p24-black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.p24-page-body--contact .text-content h2::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--p24-yellow);
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(232, 255, 0, 0.5);
}

.p24-page-body--contact .text-content h3 {
    margin: 0 0 8px;
    padding: 16px 18px 0;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--p24-black);
}

.p24-page-body--contact .text-content h3 + p {
    margin: 0 0 16px;
    padding: 0 18px 18px;
    background: var(--p24-white);
    border-radius: 0 0 var(--p24-radius) var(--p24-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
}

.p24-page-body--contact .text-content h3:has(+ p) {
    padding-top: 18px;
    background: var(--p24-white);
    border-radius: var(--p24-radius) var(--p24-radius) 0 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--p24-yellow);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.p24-page-body--contact .text-content h3:has(+ p)::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 3px;
    background: var(--p24-yellow);
    vertical-align: middle;
    transform: translateY(-1px);
}

.p24-page-body--contact .text-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    margin-top: 4px;
    background: rgba(232, 255, 0, 0.15);
    border-radius: var(--p24-radius-pill);
    color: var(--p24-black);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.p24-page-body--contact .text-content a:hover {
    background: var(--p24-yellow);
    transform: translateY(-1px);
}

.p24-page-body--contact .text-content h2:nth-of-type(2) + p {
    padding: 20px 22px 20px 52px;
    background: linear-gradient(135deg, var(--p24-black) 0%, var(--p24-dark-2) 100%);
    color: #d0d0d0;
    border-radius: var(--p24-radius);
    border: 1px solid rgba(232, 255, 0, 0.15);
    font-size: 15px;
    line-height: 1.7;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
}

.p24-page-body--contact .text-content h2:nth-of-type(2) + p::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 22px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--p24-yellow);
    border-radius: 50%;
}

/* Legal pages (privacy, terms) */
.p24-page-body--legal .text-content {
    max-width: 860px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.p24-page-body--legal .text-content h1 {
    margin: 0 0 24px;
    padding: 32px 28px;
    font-size: clamp(26px, 4.5vw, 36px);
    color: var(--p24-white);
    text-align: center;
    background: linear-gradient(145deg, var(--p24-black) 0%, var(--p24-dark-2) 100%);
    border-radius: calc(var(--p24-radius) + 4px);
    border: 1px solid rgba(232, 255, 0, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
    position: relative;
}

.p24-page-body--legal .text-content h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--p24-yellow), transparent);
}

.p24-page-body--legal .text-content > p:first-of-type {
    margin: 0 0 28px;
    padding: 22px 24px;
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    background: var(--p24-white);
    border-radius: var(--p24-radius);
    border-left: 4px solid var(--p24-yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.p24-page-body--legal .text-content h2 {
    margin: 32px 0 12px;
    padding: 14px 18px;
    font-size: 18px;
    color: var(--p24-black);
    background: rgba(232, 255, 0, 0.12);
    border-radius: var(--p24-radius);
    border-left: 4px solid var(--p24-yellow);
}

.p24-page-body--legal .text-content h2:first-of-type {
    margin-top: 0;
}

.p24-page-body--legal .text-content h3 {
    margin: 20px 0 10px;
    padding-left: 14px;
    font-size: 16px;
    color: var(--p24-black);
    border-left: 3px solid var(--p24-green);
}

.p24-page-body--legal .text-content p {
    margin: 0 0 16px;
    padding: 0 4px;
    color: #444;
    line-height: 1.65;
}

.p24-page-body--legal .text-content a {
    color: var(--p24-black);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--p24-yellow);
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.p24-page-body--legal .text-content a:hover {
    color: var(--p24-green);
}

.p24-page-body--legal .list-container {
    margin: 0 0 20px;
    padding: 18px 20px 18px 12px;
    background: var(--p24-white);
    border-radius: var(--p24-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.p24-page-body--legal .list-container ul,
.p24-page-body--legal .list-container ol {
    margin: 0;
    padding-left: 22px;
}

.p24-page-body--legal .list-container li {
    margin-bottom: 10px;
    padding-left: 6px;
    color: #444;
    line-height: 1.55;
}

.p24-page-body--legal .list-container li::marker {
    color: var(--p24-yellow-dim);
    font-weight: 700;
}

.p24-page-body--legal .text-content blockquote {
    margin: 20px 0;
    padding: 18px 20px;
    border-left: 4px solid var(--p24-yellow);
    background: var(--p24-black);
    color: #ccc;
    border-radius: 0 var(--p24-radius) var(--p24-radius) 0;
}

.p24-page-body--legal .table-wrapper {
    border: 1px solid rgba(232, 255, 0, 0.2);
    border-radius: var(--p24-radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.p24-page-body--legal .table-wrapper th {
    background: var(--p24-black);
    color: var(--p24-yellow);
}

.p24-page-body--legal .faq-wrapper .faq-item-block {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--p24-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.p24-page-body--legal .faq-question-block {
    background: rgba(232, 255, 0, 0.1);
    border-bottom: 1px solid rgba(232, 255, 0, 0.2);
}

/* Desktop layout */
@media (min-width: 993px) {
    body {
        padding-bottom: 0;
    }

    .p24-bottom-dock {
        display: none !important;
    }

    .p24-banner-slide__inner {
        flex-direction: row;
        align-items: stretch;
    }

    .p24-banner-slide__media {
        flex: 0 0 58%;
        aspect-ratio: auto;
        min-height: 220px;
    }

    .p24-banner-slide__content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 24px;
    }

    .p24-slots-row {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
        min-width: 0;
    }

    .p24-slot-card {
        flex: none;
        width: auto;
    }

    .p24-slot-card__actions {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
        justify-content: flex-end;
    }
}

/* Mobile layout */
@media (max-width: 992px) {
    .p24-nav-strip {
        display: none;
    }

    .p24-bottom-dock {
        display: flex;
    }

    .p24-top-bar__inner {
        padding: 8px 12px;
    }

    .p24-brand-mark__text {
        font-size: 22px;
    }

    .p24-btn {
        min-height: 34px;
        padding: 0 14px;
        font-size: 13px;
    }

    .p24-page-body {
        padding: 12px 12px 8px;
    }

    .p24-banner-slide__media {
        aspect-ratio: 750 / 320;
    }

    .p24-slot-card__actions {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 55%);
        justify-content: flex-end;
    }

    .text-content {
        padding: 18px 14px;
    }

    .text-content h1 {
        font-size: 24px;
    }

    .text-content h2 {
        font-size: 19px;
    }

    .p24-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }

    .p24-site-footer__inner {
        padding: 32px 12px 24px;
    }

    .p24-footer-col--cta {
        grid-column: 1 / -1;
    }

    .p24-footer-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .p24-btn--footer {
        width: auto;
        flex: 1 1 calc(50% - 5px);
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .p24-top-bar__actions .p24-btn--ghost {
        padding: 0 10px;
    }

    .p24-bottom-dock__item span {
        font-size: 9px;
    }

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

    .p24-footer-cta-row {
        flex-direction: column;
    }

    .p24-btn--footer {
        width: 100%;
        flex: none;
    }
}
