:root {
    --bg-primary: #090b23;
    --bg-header: #161b33;
    --bg-card: #1e2444;
    --bg-card-hover: #252b50;
    --btn-1: #343d64;
    --btn-2: #4558ff;
    --accent: #4558ff;
    --accent-hover: #5a6bff;
    --accent-cta: #4558ff;
    --accent-cta-hover: #5a6bff;
    --text-primary: #ffffff;
    --text-secondary: #a0a3b5;
    --text-muted: #6b7089;
    --border: #2a2f4a;
    --success: #00b894;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --container: 1200px;
    --header-h: 72px;
    --transition: 0.25s ease;
    --h1: 2rem;
    --h2: 1.5rem;
    --h3: 1.25rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    overscroll-behavior: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

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

/* ========== HEADER ========== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(22, 27, 51, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    height: 36px;
    width: auto;
}

.header__logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent), var(--accent-cta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--text-primary);
    background: rgba(69, 88, 255, 0.12);
}

.header__nav a svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__actions .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.header__actions .btn--lg {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--outline {
    border: 1.5px solid var(--btn-1);
    color: #fff;
    background: rgba(52, 61, 100, 0.2);
}

.btn--outline:hover {
    border-color: var(--btn-2);
    color: #fff;
    background: var(--btn-1);
}

.btn--primary {
    background: var(--accent);
    color: #fff;
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(69, 88, 255, 0.4);
}

.btn--cta {
    background: var(--btn-2);
    color: #fff;
}

.btn--cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 30px rgba(69, 88, 255, 0.35);
}

.btn--lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius);
}

/* Burger */

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 85vw;
    z-index: 1050;
    background: var(--bg-header);
    border-left: 1px solid var(--border);
    padding: calc(var(--header-h) + 16px) 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
}

.mobile-nav__close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--text-primary);
    background: rgba(69, 88, 255, 0.1);
}

.mobile-nav a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.8;
}

.mobile-nav__actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav__actions .btn {
    width: 100%;
    justify-content: center;
    color: #fff;
}

.mobile-nav__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.mobile-nav__actions .btn--outline:hover {
    border-color: #fff;
    color: #fff;
}

.mobile-nav__actions .btn--cta {
    color: #fff;
}

/* ========== HERO ========== */

.hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 20px 56px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(69, 88, 255, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(69, 88, 255, 0.08), transparent),
        linear-gradient(180deg, var(--bg-primary), rgba(15, 20, 40, 0.95));
    z-index: 1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(69, 88, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(69, 88, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black, transparent);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(69, 88, 255, 0.12);
    border: 1px solid rgba(69, 88, 255, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: var(--h1);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent), var(--accent-cta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
        gap: 24px 24px;
    }
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero inner pages (Login, etc.) */
.hero--page {
    min-height: auto;
    padding: calc(var(--header-h) + 20px) 20px 24px;
}

.hero--page .hero__content {
    max-width: var(--container);
    text-align: left;
}

.hero--page .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hero--page .breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.hero--page .breadcrumb a:hover {
    color: var(--accent);
}

.hero--page .breadcrumb__sep {
    opacity: 0.5;
    user-select: none;
}

.hero--page .breadcrumb span:last-child {
    color: var(--accent);
    font-weight: 500;
}

.hero--page h1 {
    font-size: var(--h1);
    margin-bottom: 12px;
}

.hero--page .hero__sub {
    margin: 0;
}

.hero--page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 2;
}

@media (max-width: 767px) {
    .hero--page {
        min-height: auto;
        padding: calc(var(--header-h) + 12px) 16px 16px;
    }
    .hero--page .breadcrumb {
        margin-bottom: 8px;
    }
}

/* ========== GAMES SECTION ========== */

.section {
    padding: 80px 0;
}

.section--games {
    position: relative;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section__title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.section__link:hover {
    color: var(--accent-hover);
}

/* ========== DUEL ORIGINALS ========== */

.section--originals {
    padding: 32px 0 40px;
}

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

.originals-title {
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .originals-title {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
}

.originals-slider {
    position: relative;
    overflow: hidden;
}

.originals-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 27, 51, 0.9);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
}

.originals-arrow:hover {
    background: var(--btn-2);
    border-color: var(--btn-2);
}

.originals-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.originals-arrow--prev {
    left: 8px;
}

.originals-arrow--next {
    right: 8px;
}

@media (min-width: 768px) {
    .originals-arrow--prev {
        left: 0;
    }
    .originals-arrow--next {
        right: 0;
    }
}

.originals-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 12px;
}

.originals-grid::-webkit-scrollbar {
    display: none;
}

.originals-card {
    position: relative;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
    scroll-snap-align: start;
    transition: filter var(--transition), transform var(--transition);
}

.originals-card:hover {
    filter: brightness(1.15);
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .originals-grid {
        gap: 16px;
    }
    .originals-card {
        flex: 0 0 calc((100% - 5 * 16px) / 6);
        min-width: 120px;
    }
}

.originals-card__img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.originals-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.originals-card:hover .originals-card__img img {
    transform: scale(1.05);
}

.originals-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 6px 6px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

@media (min-width: 768px) {
    .originals-card__content {
        padding: 12px 8px 8px;
    }
}

.originals-card__title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .originals-card__title {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .originals-card__title {
        font-size: 1.25rem;
    }
}

.originals-card__subtitle {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .originals-card__subtitle {
        font-size: 0.85rem;
    }
}

.originals-card__badge {
    position: absolute;
    left: 6px;
    top: 6px;
    z-index: 2;
    padding: 3px 7px;
    background: rgba(12, 16, 43, 0.85);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #22c55e;
}

.originals-card__badge--alt {
    color: #16a34a;
}

.originals-card__live {
    position: absolute;
    left: 8px;
    top: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .originals-card__live {
        left: auto;
        right: 14px;
        top: 14px;
    }
}

.originals-card__live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ========== SLOTS ========== */

.section--slots {
    padding: 0 0 32px;
}

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

.slots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.slots-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.slots-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}

.slots-link:hover {
    color: var(--accent-hover);
}

.slots-slider {
    position: relative;
    overflow: hidden;
}

.slots-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 27, 51, 0.9);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
}

.slots-arrow:hover {
    background: var(--btn-2);
    border-color: var(--btn-2);
}

.slots-arrow--prev { left: 8px; }
.slots-arrow--next { right: 8px; }

@media (min-width: 768px) {
    .slots-arrow--prev { left: 0; }
    .slots-arrow--next { right: 0; }
}

.slots-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0 12px;
}

.slots-grid::-webkit-scrollbar {
    display: none;
}

.slots-card {
    position: relative;
    flex: 0 0 calc((100% - 12px) / 2);
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
    scroll-snap-align: start;
    transition: filter var(--transition), transform var(--transition);
}

.slots-card:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.slots-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .slots-grid {
        gap: 16px;
    }
    .slots-card {
        flex: 0 0 calc((100% - 5 * 16px) / 6);
        min-width: 120px;
    }
}

/* ========== FEATURES ========== */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(69, 88, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: var(--h3);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== CONTENT BLOCK ========== */

.text-content {
    padding: 32px 0 32px;
}

.text-content__inner {
    max-width: var(--container);
}

.text-content h2,
.text-content h3 {
    margin: 24px 0 24px;
    letter-spacing: -0.02em;
}

.text-content h2 {
    font-size: var(--h2);
}

.text-content h3 {
    font-size: var(--h3);
}

.text-content h2:first-child,
.text-content h3:first-child {
    margin-top: 0;
}

.text-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

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

.text-content ul,
.text-content ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.text-content ul {
    list-style: disc;
}

.text-content ol {
    list-style: decimal;
}

.text-content li {
    margin-bottom: 8px;
}

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

.text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.text-content table th {
    background: var(--bg-card-hover, rgba(255,255,255,0.06));
    color: var(--text-primary, #fff);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.text-content table td {
    padding: 10px 16px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.text-content table tr:last-child td {
    border-bottom: none;
}

.text-content table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.text-content .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: var(--radius);
}

.text-content .table-wrap table {
    margin: 0;
    min-width: 480px;
}

.text-content .cta-block {
    background: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(139,92,246,0.08) 100%);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: var(--radius);
    padding: 36px 32px;
    margin-top: 32px;
    text-align: center;
}

.text-content .cta-block__title {
    font-size: var(--h3);
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.text-content .cta-block__sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 24px;
    line-height: 1.6;
}

.text-content .cta-block__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Payment Methods */
.pay-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0 32px;
}

.pay-method {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.pay-method::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,88,255,0.07) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.pay-method:hover {
    border-color: rgba(69,88,255,0.45);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

.pay-method:hover::before {
    opacity: 1;
}

.pay-method__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.pay-method__icon svg {
    width: 24px;
    height: 24px;
}

.pay-method__icon--btc  { background: rgba(247,147,26,0.12);  color: #f7931a; }
.pay-method__icon--eth  { background: rgba(98,126,234,0.12);  color: #627eea; }
.pay-method__icon--usdt { background: rgba(38,161,123,0.12);  color: #26a17b; }
.pay-method__icon--sol  { background: rgba(153,69,255,0.12);  color: #9945ff; }
.pay-method__icon--ltc  { background: rgba(190,190,190,0.12); color: #bebebe; }
.pay-method__icon--usdc { background: rgba(39,117,202,0.12);  color: #2775ca; }
.pay-method__icon--card { background: rgba(69,88,255,0.12);   color: #7b8cff; }
.pay-method__icon--wallet { background: rgba(52,211,153,0.12); color: #34d399; }

.pay-method__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pay-method__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    line-height: 1.2;
}

.pay-method__name span {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-left: 4px;
}

.pay-method__time {
    font-size: 0.75rem;
    font-weight: 600;
    color: #34d399;
    letter-spacing: 0.01em;
}

.pay-method__desc {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pay-method__btn {
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.pay-method:hover .pay-method__btn {
    background: var(--accent-hover);
    transform: scale(1.04);
}

@media (max-width: 700px) {
    .pay-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pay-method__desc {
        display: none;
    }
}

/* App Download Block */
.app-download {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 36px;
}

.app-download__card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.app-download__card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.2s;
    background: linear-gradient(135deg, rgba(69,88,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.app-download__card:hover {
    border-color: rgba(69,88,255,0.5);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

.app-download__card:hover::before {
    opacity: 1;
}

.app-download__os-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #1a1f3e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c8ff;
    border: 1px solid rgba(255,255,255,0.08);
}

.app-download__os-icon svg {
    width: 26px;
    height: 26px;
}

.app-download__os-icon--android {
    color: #a8e63d;
}

.app-download__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.app-download__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-secondary);
    font-weight: 600;
}

.app-download__platform {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary, #fff);
    line-height: 1.2;
}

.app-download__hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-download__action {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.app-download__btn {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.app-download__arrow {
    width: 18px;
    height: 18px;
    color: var(--accent);
    transition: transform 0.2s;
}

.app-download__card:hover .app-download__arrow {
    transform: translateX(3px);
}

@media (max-width: 600px) {
    .app-download {
        grid-template-columns: 1fr;
    }

    .app-download__hint {
        white-space: normal;
    }
}

/* Bonus Cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0 32px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(69,88,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.bonus-card:hover {
    border-color: rgba(69,88,255,0.45);
    transform: translateY(-2px);
}

.bonus-card--featured {
    border-color: rgba(69,88,255,0.5);
    background: linear-gradient(160deg, #1f2650 0%, #1e2444 100%);
}

.bonus-card--featured::before {
    background: linear-gradient(135deg, rgba(69,88,255,0.12) 0%, transparent 60%);
}

.bonus-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 20px;
}

.bonus-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.bonus-card__title {
    margin: 0;
    font-size: var(--h3);
    font-weight: 700;
    color: var(--text-primary, #fff);
    letter-spacing: -0.01em;
}

.bonus-card__amount {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.bonus-card__desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

.bonus-card__terms {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.bonus-card__terms li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin: 0;
}

.bonus-card__terms li:last-child {
    border-bottom: none;
}

.bonus-card__terms li span {
    color: var(--text-secondary);
}

.bonus-card__terms li strong {
    color: var(--text-primary, #fff);
    font-weight: 600;
}

.bonus-card__btn {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* FAQ */
.faq {
    padding: 24px 0 48px;
}

.faq__title {
    margin: 0 0 20px;
    font-size: var(--h2);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.faq__trigger:hover {
    background: rgba(69, 88, 255, 0.06);
}

.faq__question {
    margin: 0;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1;
}

.faq__icon {
    flex-shrink: 0;
    margin-left: 12px;
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.faq__item.is-open .faq__icon {
    transform: rotate(90deg);
}

.faq__answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq__item.is-open .faq__answer-wrap {
    max-height: 300px;
}

.faq__answer {
    margin: 0;
    padding: 0 20px 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.content-block {
    padding: 80px 0;
}

.content-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.content-block h2 {
    font-size: var(--h2);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

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

/* 404 */
.error-404 {
    min-height: calc(100vh - var(--header-h) - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 48px) 20px 80px;
    text-align: center;
}

.error-404__code {
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 800;
    color: var(--accent);
    margin: 0 0 16px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.error-404__text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0 0 32px;
}

/* ========== FOOTER ========== */

.footer {
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo img {
    height: 32px;
    width: auto;
}

.footer__logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-cta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer__heading {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer__nav-title {
    margin: 0 0 16px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.footer__links a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer__disclaimer {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer__disclaimer strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.footer__age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--accent-cta);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cta);
    margin-bottom: 12px;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a {
    font-size: 0.84rem;
    color: var(--text-muted);
}

.footer__bottom-links a:hover {
    color: var(--text-secondary);
}

/* ========== PAGE CONTENT (legal/info pages) ========== */

.page-header {
    padding: calc(var(--header-h) + 32px) 0 28px;
    text-align: center;
    background: linear-gradient(180deg, rgba(69, 88, 255, 0.08), transparent);
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 4px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb__sep {
    opacity: 0.5;
    user-select: none;
}

.breadcrumb span:last-child {
    color: var(--text-primary);
}

.page-header h1 {
    font-size: var(--h1);
    margin: 0;
}

.page-header p {
    color: var(--text-secondary);
    margin: 8px 0 0;
    font-size: 0.95rem;
}

.page-header h1 + p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.page-content {
    padding: 50px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: var(--h2);
    margin: 36px 0 14px;
}

.page-content h3 {
    font-size: var(--h3);
    margin: 36px 0 14px;
}

.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0;
}

.page-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content ul {
    margin: 12px 0 20px 24px;
    list-style: disc;
}

.page-content ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1199px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 64px;
    }

    .header__nav,
    .header__actions {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 50vh;
        padding: calc(var(--header-h) + 32px) 16px 40px;
    }

    .hero.hero--page {
        min-height: auto;
        padding: calc(var(--header-h) + 12px) 16px 16px;
    }

    .hero__stats {
        gap: 16px 24px;
        max-width: 280px;
    }

    .hero__stat-value {
        font-size: 1.4rem;
    }

    .section {
        padding: 50px 0;
    }
    .section--originals {
        padding: 20px 0 16px;
    }
    .section--originals .originals-title {
        margin-bottom: 12px;
    }
    .section--slots {
        padding: 0 0 16px;
    }
    .slots-header {
        margin-bottom: 12px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .content-block__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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


    .page-content {
        padding: 30px 20px 60px;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .btn--lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}
