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

:root {
    --primary: #24bf92;
    --primary-dark: #1a9d75;
    --primary-glow: #2dd4a5;

    --bg-0: #07080d;
    --bg-1: #0c0e14;
    --bg-2: #121520;
    --card: rgba(24, 27, 36, 0.9);
    --stroke: rgba(255, 255, 255, 0.08);
    --stroke-strong: rgba(255, 255, 255, 0.14);

    --text: #ffffff;
    --text-1: rgba(255, 255, 255, 0.86);
    --text-2: rgba(255, 255, 255, 0.66);

    --shadow-1: 0 8px 28px rgba(0, 0, 0, 0.45);
    --shadow-2: 0 18px 60px rgba(0, 0, 0, 0.60);

    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 22px;

    --gradient-primary: linear-gradient(135deg, #24bf92 0%, #1a9d75 100%);
    --gradient-bg: radial-gradient(1200px 800px at 20% 0%, rgba(36,191,146,0.20) 0%, rgba(36,191,146,0) 55%),
                   radial-gradient(900px 700px at 90% 10%, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0) 55%),
                   linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 60%, var(--bg-0) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--gradient-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; }

.content-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
}

/* Sticky Mobile Bar */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 14, 20, 0.92);
    backdrop-filter: blur(14px);
    padding: 14px 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    gap: 12px;
    border-top: 1px solid var(--stroke);
}

.sticky-btn {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    border-radius: 14px;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login-mobile {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(36, 191, 146, 0.55);
}

.btn-login-mobile:hover {
    background: var(--primary);
    color: white;
}

.btn-register-mobile {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid rgba(36, 191, 146, 0.55);
    box-shadow: 0 4px 16px rgba(36, 191, 146, 0.4);
}

.btn-register-mobile:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* Header */
.site-header {
    background: rgba(12, 14, 20, 0.70);
    backdrop-filter: blur(14px);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--stroke);
}

.header-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-part1,
.logo-part2 {
    height: 34px;
    width: auto;
}

.main-navigation {
    display: flex;
    gap: 18px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    color: var(--text-1);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    transition: color 0.18s ease;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.18s ease;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-item:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header-btn {
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    border-radius: 14px;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-signin {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(36, 191, 146, 0.55);
}

.btn-signin:hover {
    background: var(--primary);
    color: white;
}

.btn-signup {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid rgba(36, 191, 146, 0.55);
    box-shadow: 0 4px 12px rgba(36, 191, 146, 0.4);
}

.btn-signup:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

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

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

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

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-navigation {
    background: rgba(12, 14, 20, 0.95);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--stroke);
}

.mobile-nav-item {
    color: var(--text-1);
    text-decoration: none;
    padding: 14px 14px;
    font-weight: 900;
    font-size: 15px;
    border-radius: 14px;
    transition: background 0.18s ease, color 0.18s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.mobile-nav-item:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.06);
    border-color: rgba(36, 191, 146, 0.25);
}

.mobile-nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.mobile-cta {
    padding: 14px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(36, 191, 146, 0.55);
}

.mobile-cta.primary {
    background: var(--gradient-primary);
    color: white;
}

.mobile-cta.ghost {
    background: transparent;
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 8, 13, 0.92) 0%, rgba(12, 14, 20, 0.82) 60%, rgba(7, 8, 13, 0.95) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 52px 18px 56px;
    width: 100%;
}

.hero-text {
    max-width: 620px;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    background: rgba(7, 8, 13, 0.55);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-2);
}

.hero-label {
    display: inline-block;
    background: rgba(36, 191, 146, 0.14);
    color: rgba(255, 255, 255, 0.92);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 16px;
    border: 1px solid rgba(36, 191, 146, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: clamp(34px, 6.2vw, 56px);
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero-subheading {
    font-size: clamp(16px, 2.25vw, 20px);
    color: var(--text-1);
    margin-bottom: 18px;
    font-weight: 650;
    line-height: 1.6;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.hero-btn {
    padding: 14px 16px;
    text-decoration: none;
    font-weight: 950;
    font-size: 14px;
    border-radius: 14px;
    transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(36, 191, 146, 0.5);
    border: 1px solid rgba(36, 191, 146, 0.55);
}

.primary-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.secondary-btn {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(36, 191, 146, 0.55);
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--stroke);
    color: var(--text-1);
    font-weight: 800;
    font-size: 13px;
}

@media (min-width: 520px) {
    .hero-buttons {
        grid-template-columns: 1fr 1fr;
        max-width: 520px;
    }
}

@media (min-width: 960px) {
    .hero-wrapper { min-height: 680px; }
    .hero-text {
        padding: 0;
        border: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }
}

/* Main Wrapper */
.main-wrapper { padding: 22px 0 44px; }

.section {
    padding: 46px 0;
}

.section-alt {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--stroke);
    border-bottom: 1px solid var(--stroke);
}

.section-title-block {
    text-align: left;
    margin-bottom: 18px;
}

.main-title {
    font-size: clamp(22px, 4.8vw, 38px);
    font-weight: 950;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.15;
}

.main-subtitle {
    font-size: 14px;
    color: var(--text-2);
    margin-top: 8px;
    max-width: 68ch;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
}

.feature-card {
    background: rgba(24, 27, 36, 0.72);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-1);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(36, 191, 146, 0.12);
    border: 1px solid rgba(36, 191, 146, 0.22);
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0 18px;
}

.games-grid.compact { margin-top: 16px; }

.game-card {
    background: rgba(24, 27, 36, 0.70);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
    border: 1px solid var(--stroke);
}

.game-card:hover {
    transform: translateY(-2px);
    border-color: rgba(36, 191, 146, 0.35);
    filter: brightness(1.02);
}

.game-image {
    aspect-ratio: 16/10;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.game-info {
    padding: 12px 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-info h4 {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.game-badge {
    background: rgba(36, 191, 146, 0.14);
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(36, 191, 146, 0.22);
}

.game-badge.hot {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.22);
}

.game-badge.trending {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.22);
}

.game-badge.new {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.22);
}

.section-cta-center {
    text-align: center;
}

.big-cta-btn {
    display: inline-block;
    padding: 14px 18px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 950;
    font-size: 14px;
    transition: transform 0.18s ease, filter 0.18s ease;
    box-shadow: 0 6px 20px rgba(36, 191, 146, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(36, 191, 146, 0.55);
}

.big-cta-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* Bonus Section */
.bonus-section {
    padding: 0;
    background: transparent;
}

.bonus-content {
    text-align: left;
    margin-bottom: 14px;
}

.bonus-content p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 70ch;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.bonus-card {
    background: rgba(24, 27, 36, 0.72);
    padding: 16px;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid var(--stroke);
    transition: transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card.deluxe {
    border-color: rgba(36, 191, 146, 0.55);
    box-shadow: var(--shadow-1);
}

.bonus-card:hover {
    transform: translateY(-2px);
    border-color: rgba(36, 191, 146, 0.35);
    filter: brightness(1.02);
}

.bonus-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(36, 191, 146, 0.12);
    border: 1px solid rgba(36, 191, 146, 0.22);
    margin-bottom: 10px;
    font-size: 18px;
}

.bonus-card h4 {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 950;
}

.bonus-amount {
    font-size: 28px;
    font-weight: 950;
    color: var(--primary);
    margin-bottom: 8px;
}

.bonus-card p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 14px;
    line-height: 1.65;
}

.bonus-cta {
    display: inline-block;
    padding: 12px 14px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 950;
    font-size: 13px;
    transition: transform 0.18s ease, filter 0.18s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(36, 191, 146, 0.55);
}

.bonus-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* CTA Panel */
.section-cta { padding-top: 10px; }

.cta-panel {
    background: rgba(24, 27, 36, 0.72);
    border: 1px solid rgba(36, 191, 146, 0.22);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-2);
    display: grid;
    gap: 14px;
}

.cta-copy h2 {
    font-size: clamp(18px, 4.2vw, 28px);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 950;
    line-height: 1.15;
}

.cta-copy p {
    margin-top: 8px;
    color: var(--text-2);
    font-size: 14px;
}

.cta-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,0.04);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 13px;
}

.step-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(36, 191, 146, 0.16);
    border: 1px solid rgba(36, 191, 146, 0.28);
    color: var(--text);
    font-weight: 950;
    font-size: 12px;
}

.cta-actions {
    display: grid;
    gap: 8px;
}

.ghost-link {
    display: inline-block;
    color: var(--text-2);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

.ghost-link:hover { color: var(--primary); }

/* Trust + payments */
.trust-content { text-align: left; margin-top: 12px; }

.trust-content p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 70ch;
}

.trust-content {
    margin-bottom: 14px;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
}

.trust-badge {
    background: rgba(24, 27, 36, 0.72);
    padding: 14px;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid var(--stroke);
    transition: transform 0.18s ease, border-color 0.18s ease;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
}

.trust-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(36, 191, 146, 0.35);
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(36, 191, 146, 0.12);
    border: 1px solid rgba(36, 191, 146, 0.22);
    font-size: 18px;
}

.trust-badge h4 {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.trust-badge p {
    font-size: 13px;
    color: var(--text-2);
}

/* Payments strip */
.payments-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--stroke);
}

.payments-strip img {
    height: 22px;
    width: auto;
    opacity: 0.86;
    filter: saturate(0.95);
}

/* Footer */
.site-footer {
    background: rgba(12, 14, 20, 0.75);
    padding: 42px 0 22px;
    border-top: 1px solid var(--stroke);
}

.footer-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.footer-about {
    max-width: 520px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-logo-1,
.footer-logo-2 {
    height: 36px;
    width: auto;
}

.footer-about p {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.footer-license {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}

.footer-license strong {
    color: var(--primary);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 950;
}

.footer-col a {
    display: block;
    color: var(--text-1);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.18s ease;
    font-weight: 700;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--stroke);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-2);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-notice {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-overlay { display: block !important; }
    
    .header-actions {
        display: none;
    }
    
    .sticky-mobile-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 90px;
    }
}

@media (min-width: 720px) {
    .content-container { padding: 0 24px; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
    .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .bonus-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .trust-badges { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cta-panel { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
    .cta-actions { justify-items: start; }
    .footer-main { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

@media (min-width: 1025px) {
    .hero-content-wrapper { padding: 74px 24px 86px; }
    .games-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .trust-badges { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .footer-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Simple reveal animation (JS toggles .is-inview) */
[data-animate] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate].is-inview {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}

/* Markdown content (7slots-giris-2026.md) */
.md-content {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--stroke);
}

.md-content h2 {
    margin-top: 20px;
    font-size: clamp(18px, 4.2vw, 26px);
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: none;
}

.md-content h1 {
    margin: 0;
    font-size: clamp(26px, 6.2vw, 44px);
    font-weight: 980;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-transform: none;
    color: var(--text);
}

.md-content h3 {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: 0.01em;
    text-transform: none;
}

.md-content p {
    margin-top: 10px;
    color: var(--text-1);
    font-size: 14px;
    line-height: 1.75;
}

.md-content strong { color: var(--text); }

.md-content hr {
    border: 0;
    height: 1px;
    background: var(--stroke);
    margin: 18px 0;
}

.md-content ul,
.md-content ol {
    margin: 10px 0 14px;
    padding-left: 18px;
}

.md-content li {
    margin: 8px 0;
    color: var(--text-1);
    line-height: 1.7;
}

.md-content li::marker { color: rgba(36, 191, 146, 0.85); }

.md-cta {
    margin: 12px 0 6px;
}

.md-note {
    margin-top: 10px;
    color: var(--text-2);
    font-size: 12px;
}

.md-content--primary {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.table-wrap {
    margin-top: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow-1);
}

.table-wrap table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--stroke);
    text-align: left;
    vertical-align: top;
    font-size: 13px;
    color: var(--text-1);
}

.table-wrap thead th {
    background: rgba(12, 14, 20, 0.85);
    color: var(--text);
    font-weight: 950;
}

.table-wrap tbody tr:hover td {
    background: rgba(36, 191, 146, 0.06);
}

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

/* FAQ block */
.faq {
    margin-top: 18px;
}

.faq-list {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.faq-item {
    position: relative;
    padding: 0;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(24, 27, 36, 0.62);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 14px 44px 14px 14px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.01em;
    color: var(--text);
    user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-item summary.faq-question::after {
    content: '›';
    position: absolute;
    right: 14px;
    top: 12px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: rgba(36, 191, 146, 0.0);
    transition: background 0.18s ease;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

.faq-panel {
    padding: 0 14px 14px 14px;
}

.faq-panel p {
    margin: 0;
    color: var(--text-1);
    font-size: 13.5px;
    line-height: 1.7;
}

.faq-item:not([open]) .faq-panel {
    display: none;
}

.faq-item[open] summary.faq-question::after {
    transform: rotate(180deg);
    border-color: rgba(36, 191, 146, 0.28);
    background: rgba(36, 191, 146, 0.08);
    color: rgba(255,255,255,0.92);
}

.faq-item:hover {
    transform: translateY(-1px);
    border-color: rgba(36, 191, 146, 0.35);
    background: rgba(24, 27, 36, 0.74);
    box-shadow: var(--shadow-1);
}

.faq-item:hover::before {
    background: rgba(36, 191, 146, 0.85);
}

/* Tap feedback on mobile */
.faq-item:active {
    transform: translateY(0);
    filter: brightness(1.03);
}

.faq-item:focus-within {
    outline: none;
    border-color: rgba(36, 191, 146, 0.38);
}