/* ============================================
   R7 Casino Landing Page — Styles
   Dark theme + Orange/Yellow accents
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #14141e;
    --bg-card-hover: #1c1c2a;
    --bg-elevated: #1e1e2e;

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b82;

    --accent: #f5a623;
    --accent-light: #ffc857;
    --accent-dark: #d48b0f;
    --accent-glow: rgba(245, 166, 35, 0.3);
    --accent-gradient: linear-gradient(135deg, #f5a623, #ff6b35);
    --accent-gradient-text: linear-gradient(135deg, #ffc857, #f5a623, #ff8c42);

    --green: #34d399;
    --green-bg: rgba(52, 211, 153, 0.1);
    --red: #f87171;
    --red-bg: rgba(248, 113, 113, 0.1);
    --blue: #60a5fa;
    --yellow: #fbbf24;

    --border-color: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-width: 1200px;
    --section-padding: 120px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    display: block;
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent-gradient);
    color: #000;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--accent-glow);
    color: #000;
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 166, 35, 0.05);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--border-color);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.logo-r7 {
    font-size: 28px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.logo-text {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-badge {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 4px;
    padding: 2px 6px;
    margin-left: 4px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.25), transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 18s ease-in-out infinite;
}

.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 30px); }
    66% { transform: translate(20px, -20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -40px); }
    66% { transform: translate(-20px, 20px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    background: var(--bg-card-hover);
}

.stat-card__number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    display: block;
    font-family: var(--font-mono);
}

.stat-card__plus {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.stat-card__label {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card__stars {
    color: var(--yellow);
    font-size: 12px;
    margin-top: 4px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Card */
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.hero-card__dots {
    display: flex;
    gap: 6px;
}

.hero-card__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hero-card__dots span:nth-child(1) { background: #ff5f57; }
.hero-card__dots span:nth-child(2) { background: #ffbd2e; }
.hero-card__dots span:nth-child(3) { background: #28ca42; }

.hero-card__title {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.hero-card__body {
    padding: 20px;
}

.hero-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-card__row:last-child {
    border-bottom: none;
}

.hero-card__row--highlight {
    padding-top: 14px;
    border-bottom: none;
}

.hero-card__label {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-card__value {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.hero-card__value--green {
    color: var(--green);
}

.hero-card__value--gold {
    color: var(--yellow);
    font-size: 16px;
}

.hero-card__divider {
    height: 1px;
    background: var(--accent);
    opacity: 0.3;
    margin: 8px 0;
}

/* Scroll Hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollHint 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

@keyframes scrollHint {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* === SECTION COMMON === */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Alternate section bg */
.section--mirror,
.section--calculator,
.section--faq {
    background: var(--bg-secondary);
}

/* === OVERVIEW SECTION === */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.overview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s ease;
}

.overview-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.overview-card--main {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 24px;
}

.overview-card--main .overview-card__icon {
    grid-row: 1 / 3;
}

.overview-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(245, 166, 35, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.overview-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.overview-card p:last-child {
    margin-bottom: 0;
}

/* Info Table */
.info-table-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.info-table__title {
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

.info-table {
    padding: 8px 0;
}

.info-table__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    transition: background 0.2s ease;
}

.info-table__row:hover {
    background: rgba(245, 166, 35, 0.03);
}

.info-table__row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.info-table__key {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-table__val {
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

/* === MIRROR SECTION === */
.mirror-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mirror-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mirror-info > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.mirror-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mirror-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mirror-feature__icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mirror-feature strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.mirror-feature p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.mirror-checker__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.mirror-checker__card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mirror-checker__card > p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.mirror-result {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.mirror-result__status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mirror-result__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.mirror-result__indicator.online {
    background: var(--green);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}

.mirror-result__indicator.offline {
    background: var(--red);
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

.mirror-result__text {
    font-weight: 600;
    font-size: 15px;
}

.mirror-result__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mirror-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 13px;
    transition: all 0.3s ease;
}

.mirror-link:hover {
    border-color: var(--accent);
}

.mirror-link__status {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-family: var(--font-main);
}

.mirror-link__status.online {
    background: var(--green-bg);
    color: var(--green);
}

.mirror-link__status.slow {
    background: rgba(251, 191, 36, 0.1);
    color: var(--yellow);
}

.mirror-checker__tips {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.mirror-checker__tips h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.mirror-checker__tips ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mirror-checker__tips li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.mirror-checker__tips li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* === BONUSES SECTION === */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bonus-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bonus-card--welcome {
    border-color: rgba(245, 166, 35, 0.3);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.05) 100%);
}

.bonus-card__ribbon {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--accent-gradient);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.bonus-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.bonus-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card__amount {
    font-size: 36px;
    font-weight: 800;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.bonus-card__sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bonus-card__conditions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-card__conditions li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.bonus-card__conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.bonus-warning {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-md);
    color: var(--yellow);
}

.bonus-warning svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-warning p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.bonus-warning strong {
    color: var(--yellow);
}

/* === CALCULATOR SECTION === */
.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.calc-field {
    margin-bottom: 20px;
}

.calc-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline: none;
}

.calc-field input:focus,
.calc-field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.calc-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23a0a0b8' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.calc-field select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.calc-field__hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.calculator__result {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.calc-result__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.calc-result__item {
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.calc-result__label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.calc-result__value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-mono);
}

.calc-result__value--accent {
    color: var(--accent);
}

.calc-result__value--warn {
    color: var(--red);
}

.calc-result__note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.calc-result__note svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

/* Calculator Tips */
.calculator-tips h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 28px;
}

.tip-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-item__num {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    font-family: var(--font-mono);
    flex-shrink: 0;
    line-height: 1;
    min-width: 48px;
}

.tip-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.tip-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* === GAMES SECTION === */
.games-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.game-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s ease;
}

.game-category:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-4px);
}

.game-category__visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.game-category__icon {
    font-size: 40px;
}

.game-category__count {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(245, 166, 35, 0.1);
    padding: 4px 12px;
    border-radius: 100px;
}

.game-category h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.game-category p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.game-category__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.game-category__tags span {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Providers */
.providers-section {
    text-align: center;
}

.providers-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.provider-badge {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.provider-badge:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(245, 166, 35, 0.05);
}

/* === WINS SECTION === */
.wins-ticker {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    padding: 16px 0;
}

.wins-ticker::before,
.wins-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
}

.wins-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.wins-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.wins-ticker__track {
    display: flex;
    gap: 24px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    flex-shrink: 0;
}

.ticker-item__game {
    font-size: 13px;
    font-weight: 500;
}

.ticker-item__amount {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-mono);
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.win-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all 0.3s ease;
}

.win-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-3px);
}

.win-card__game {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.win-card__provider {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.win-card__amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--green);
    font-family: var(--font-mono);
    margin-bottom: 8px;
}

.win-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.win-card__date {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
}

/* === REVIEWS SECTION === */
.reviews-summary {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.reviews-summary__score {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews-summary__number {
    font-size: 64px;
    font-weight: 800;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.reviews-summary__stars {
    font-size: 24px;
    color: var(--yellow);
    margin: 8px 0;
}

.reviews-summary__count {
    font-size: 13px;
    color: var(--text-muted);
}

.reviews-summary__bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-bar__label {
    width: 36px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: right;
}

.rating-bar__track {
    flex: 1;
    height: 10px;
    background: var(--bg-tertiary);
    border-radius: 100px;
    overflow: hidden;
}

.rating-bar__fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 100px;
    transition: width 1s ease;
}

.rating-bar__pct {
    width: 36px;
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

/* Review Cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(245, 166, 35, 0.15);
    transform: translateY(-3px);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 15px;
    font-weight: 600;
}

.review-card__date {
    font-size: 12px;
    color: var(--text-muted);
}

.review-card__rating {
    margin-left: auto;
    color: var(--yellow);
    font-size: 14px;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.review-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}

.review-tag--pos {
    background: var(--green-bg);
    color: var(--green);
}

.review-tag--neg {
    background: var(--red-bg);
    color: var(--red);
}

.review-tag--neu {
    background: rgba(251, 191, 36, 0.1);
    color: var(--yellow);
}

/* === STEPS SECTION === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
    transform: translateY(-4px);
}

.step-card__number {
    font-size: 48px;
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    display: block;
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.step-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* === PAYMENTS SECTION === */
.payments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.payment-group {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.payment-group h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.payment-method:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.payment-method__name {
    font-weight: 600;
    font-size: 14px;
}

.payment-method__info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.payment-method__info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* === FAQ SECTION === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 166, 35, 0.2);
}

.faq-item.active {
    border-color: rgba(245, 166, 35, 0.3);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-item__question:hover {
    background: var(--bg-card-hover);
}

.faq-item__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 400px;
}

.faq-item__answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* === RESPONSIBLE SECTION === */
.responsible-block {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.responsible-block__icon {
    color: var(--accent);
    margin-bottom: 24px;
}

.responsible-block h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.responsible-block p {
    max-width: 700px;
    margin: 0 auto 24px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.responsible-block__badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.resp-badge {
    padding: 8px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* === FOOTER === */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 350px;
}

.footer__links h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.footer__links a {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* === LOADING SPINNER === */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(245, 166, 35, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === ANIMATIONS (scroll reveal) === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin: 0 auto 32px;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }

    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 600px;
        margin: 0 auto 40px;
    }

    .section__title {
        font-size: 34px;
    }

    .hero__title {
        font-size: 42px;
    }

    .mirror-layout,
    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card--main {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .games-categories {
        grid-template-columns: 1fr;
    }

    .wins-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payments-grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .header__nav.open {
        display: flex;
    }

    .header__nav .nav-link {
        font-size: 20px;
    }

    .header__burger {
        display: flex;
        z-index: 1001;
    }

    .header__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .section__title {
        font-size: 28px;
    }

    .section__desc {
        font-size: 16px;
    }

    .wins-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .calc-result__grid {
        grid-template-columns: 1fr;
    }

    .info-table__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 20px;
    }

    .info-table__val {
        text-align: left;
    }

    .hero__scroll-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 26px;
    }

    .stat-card__number {
        font-size: 22px;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .bonus-card {
        padding: 24px;
    }

    .bonus-card__amount {
        font-size: 28px;
    }

    .overview-card,
    .game-category,
    .step-card,
    .review-card {
        padding: 24px;
    }

    .calculator-card {
        padding: 24px;
    }
}
