:root {
    --blue-950: #030b1c;
    --blue-900: #061436;
    --blue-850: #081c47;
    --blue-800: #0b2559;
    --blue-700: #10357e;
    --blue-600: #1a4fb8;
    --blue-500: #2a6df0;
    --blue-400: #4d8bff;
    --blue-300: #7fb0ff;
    --blue-200: #b3d1ff;
    --cyan: #22d3ee;
    --gold: #ffc94d;
    --text: #e8f0ff;
    --text-dim: #a8bede;
    --line: rgba(125, 170, 255, 0.18);
    --panel: rgba(9, 27, 68, 0.72);
    --panel-solid: #0a1f4d;
    --shadow: 0 18px 50px rgba(2, 8, 24, 0.55);
    --radius: 16px;
    --wrap: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--blue-950);
    background-image:
        radial-gradient(900px 500px at 12% -5%, rgba(42, 109, 240, 0.28), transparent 60%),
        radial-gradient(800px 500px at 88% 8%, rgba(34, 211, 238, 0.14), transparent 62%),
        linear-gradient(180deg, #030b1c 0%, #05122f 45%, #030b1c 100%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--blue-300);
    text-decoration: none;
}

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 11, 28, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    height: 44px;
    width: auto;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.brand:hover img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 14px rgba(77, 139, 255, 0.65));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease,
        background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.btn:hover::after {
    left: 150%;
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(127, 176, 255, 0.45);
    background: rgba(26, 79, 184, 0.12);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    border-color: var(--blue-400);
    background: rgba(42, 109, 240, 0.28);
    box-shadow: 0 10px 26px rgba(42, 109, 240, 0.35);
}

.btn-primary {
    color: #04122e;
    background: linear-gradient(135deg, #7fb0ff 0%, #2a6df0 55%, #22d3ee 100%);
    box-shadow: 0 8px 24px rgba(42, 109, 240, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 34px rgba(42, 109, 240, 0.62);
}

.btn-lg {
    font-size: 18px;
    padding: 17px 46px;
}

.pulse {
    animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(42, 109, 240, 0.45), 0 0 0 0 rgba(77, 139, 255, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(42, 109, 240, 0.5), 0 0 0 16px rgba(77, 139, 255, 0);
    }
}

.hero {
    padding: 34px 0 10px;
}

.hero-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-card img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 11, 28, 0.92) 0%, rgba(4, 18, 48, 0.78) 45%, rgba(3, 11, 28, 0.25) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    padding: 40px 44px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.4);
    background: rgba(34, 211, 238, 0.1);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero-title {
    display: block;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.accent {
    background: linear-gradient(120deg, #ffc94d, #ffe9a8 45%, #ffc94d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    display: block;
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-note {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
}

.section {
    padding: 56px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 34px;
}

.section-title {
    display: block;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-sub {
    display: block;
    color: var(--text-dim);
    font-size: 16px;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.trust-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 18px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--blue-400);
    box-shadow: 0 14px 32px rgba(3, 12, 34, 0.6);
}

.trust-value {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
}

.trust-label {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.slot-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel-solid);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.slot-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-400);
    box-shadow: 0 22px 44px rgba(2, 10, 30, 0.7);
}

.slot-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.slot-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.4s ease;
}

.slot-card:hover .slot-media img {
    transform: scale(1.12);
    filter: brightness(0.5) saturate(1.15);
}

.slot-hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, rgba(4, 16, 42, 0.35), rgba(4, 16, 42, 0.8));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.slot-card:hover .slot-hover {
    opacity: 1;
}

.slot-hover .btn {
    transform: translateY(14px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.slot-card:hover .slot-hover .btn {
    transform: translateY(0);
}

.slot-rtp {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    transform: translateY(14px);
    opacity: 0;
    transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
}

.slot-card:hover .slot-rtp {
    transform: translateY(0);
    opacity: 1;
}

.slot-info {
    padding: 14px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.slot-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.slot-provider {
    display: block;
    font-size: 12px;
    color: var(--text-dim);
}

.slot-tag {
    display: inline-flex;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #04122e;
    background: linear-gradient(135deg, var(--gold), #ffe9a8);
    padding: 5px 10px;
    border-radius: 6px;
}

.toc {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.toc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    background: linear-gradient(135deg, rgba(16, 53, 126, 0.85), rgba(10, 31, 77, 0.85));
    border: 0;
    color: var(--text);
    font-family: inherit;
    font-size: 19px;
    font-weight: 800;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toc-head:hover {
    background: linear-gradient(135deg, rgba(26, 79, 184, 0.9), rgba(16, 53, 126, 0.9));
}

.toc-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--blue-300);
    border-bottom: 2px solid var(--blue-300);
    transform: rotate(45deg);
    transition: transform 0.35s ease;
    flex-shrink: 0;
    margin-right: 6px;
}

.toc-head[aria-expanded="true"] .toc-icon {
    transform: rotate(-135deg);
}

.toc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.toc-body.open {
    grid-template-rows: 1fr;
}

.toc-body-inner {
    overflow: hidden;
}

.toc-list {
    list-style: none;
    columns: 2;
    column-gap: 26px;
    padding: 22px 24px;
}

.toc-list li {
    break-inside: avoid;
    margin-bottom: 4px;
}

.toc-list a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-dim);
    font-size: 15px;
    border-left: 2px solid transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
}

.toc-list a:hover {
    color: var(--text);
    background: rgba(42, 109, 240, 0.16);
    border-left-color: var(--cyan);
    padding-left: 18px;
}

.toc-list .toc-sub a {
    font-size: 14px;
    padding-left: 28px;
    color: rgba(168, 190, 222, 0.8);
}

.toc-list .toc-sub a:hover {
    padding-left: 34px;
}

.content {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 44px;
    box-shadow: var(--shadow);
}

.content h1 {
    font-size: clamp(27px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.content h2 {
    font-size: clamp(23px, 2.6vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    margin: 40px 0 16px;
    padding-left: 16px;
    border-left: 4px solid var(--blue-500);
}

.content h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 28px 0 12px;
    color: var(--blue-200);
}

.content p {
    margin-bottom: 16px;
    color: #d2e0f7;
}

.content strong {
    color: #fff;
    font-weight: 700;
}

.content ol {
    margin: 0 0 20px 0;
    padding-left: 22px;
}

.content ol li {
    margin-bottom: 10px;
    color: #d2e0f7;
    padding-left: 6px;
}

.content ol li::marker {
    color: var(--cyan);
    font-weight: 800;
}

.content hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
    margin: 36px 0;
}

.table-wrap {
    overflow-x: auto;
    margin: 0 0 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 460px;
    font-size: 15px;
}

.content th {
    background: rgba(16, 53, 126, 0.7);
    color: #fff;
    font-weight: 800;
    text-align: left;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.content td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(125, 170, 255, 0.1);
    color: #d2e0f7;
    vertical-align: top;
}

.content tbody tr:last-child td {
    border-bottom: 0;
}

.content tbody tr {
    transition: background 0.25s ease;
}

.content tbody tr:hover {
    background: rgba(42, 109, 240, 0.1);
}

.content td:first-child {
    color: #fff;
    font-weight: 600;
}

.faq-list {
    margin-top: 8px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(6, 20, 54, 0.6);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(77, 139, 255, 0.5);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    background: none;
    border: 0;
    color: var(--text);
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    line-height: 1.5;
    padding: 18px 22px;
    cursor: pointer;
    transition: color 0.25s ease;
}

.faq-q:hover {
    color: var(--blue-300);
}

.faq-mark {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq-mark::before,
.faq-mark::after {
    content: "";
    position: absolute;
    background: var(--cyan);
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-mark::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-mark::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-q[aria-expanded="true"] .faq-mark::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-a.open {
    grid-template-rows: 1fr;
}

.faq-a-inner {
    overflow: hidden;
}

.faq-a p {
    padding: 0 22px 20px;
    margin: 0;
    color: var(--text-dim);
}

.cta-band {
    background: linear-gradient(135deg, rgba(16, 53, 126, 0.9), rgba(10, 31, 77, 0.75) 55%, rgba(20, 90, 160, 0.6));
    border: 1px solid rgba(77, 139, 255, 0.35);
    border-radius: 22px;
    padding: 44px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-title {
    display: block;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.cta-text {
    display: block;
    color: var(--text-dim);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 24px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(3, 10, 26, 0.85);
    margin-top: 40px;
    padding: 44px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 14px;
}

.footer-text {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    max-width: 420px;
}

.footer-col-title {
    display: block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 14px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: var(--blue-300);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 22px;
}

.footer-note {
    display: block;
    color: #7f95b8;
    font-size: 13px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d94a4a;
    color: #ff8383;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(217, 74, 74, 0.08);
    border: 1px solid rgba(217, 74, 74, 0.28);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 22px;
}

@media (max-width: 1024px) {
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        padding: 34px 30px;
    }
    .content {
        padding: 32px 28px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .header-inner {
        height: 66px;
    }
    .brand img {
        height: 36px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 18px;
    }
    .btn-lg {
        font-size: 16px;
        padding: 15px 32px;
    }
    .hero-card img {
        min-height: 520px;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(3, 11, 28, 0.7) 0%, rgba(3, 11, 28, 0.93) 55%);
        align-items: flex-end;
    }
    .hero-content {
        padding: 26px 20px 30px;
    }
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .slot-hover {
        opacity: 1;
        background: linear-gradient(180deg, rgba(4, 16, 42, 0) 40%, rgba(4, 16, 42, 0.85));
        justify-content: flex-end;
        padding-bottom: 14px;
    }
    .slot-hover .btn {
        transform: translateY(0);
        padding: 9px 20px;
        font-size: 13px;
    }
    .slot-rtp {
        opacity: 1;
        transform: translateY(0);
    }
    .toc-list {
        columns: 1;
        padding: 16px 14px;
    }
    .content {
        padding: 24px 18px;
    }
    .cta-band {
        padding: 32px 20px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 420px) {
    .slots-grid {
        grid-template-columns: 1fr;
    }
    .trust-row {
        grid-template-columns: 1fr;
    }
}
