

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #f5c518;
    --accent-dark: #d4a90e;
    --accent-light: #ffe066;
    --bg: #0f0f1a;
    --bg-alt: #141428;
    --bg-card: #1c1c35;
    --bg-card-hover: #242445;
    --text: #e8e8e8;
    --text-muted: #a0a0b8;
    --text-dark: #0f0f1a;
    --white: #ffffff;
    --success: #22c55e;
    --error: #ef4444;
    --border: rgba(245, 197, 24, 0.15);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
    --shadow-accent: 0 4px 24px rgba(245, 197, 24, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

.text-accent {
    color: var(--accent);
}

.link-accent {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.trust-bar {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    white-space: nowrap;
}

.trust-item svg {
    flex-shrink: 0;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity var(--transition);
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.footer-logo-img {
    height: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(245, 197, 24, 0.08);
}

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

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.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-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 26, 0.98);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 12px 24px;
    display: block;
    color: var(--text);
    transition: color var(--transition);
}

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

.btn-mobile-cta {
    margin-top: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(245, 197, 24, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-header {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg);
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 26, 0.7) 0%,
        rgba(15, 15, 26, 0.85) 50%,
        rgba(15, 15, 26, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
    color: var(--white);
}

.hero-bonus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
}

.hero-bonus-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-bonus-amount {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(245, 197, 24, 0.3);
}

.hero-bonus-extra {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.game-category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.game-category-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.game-card-icon {
    margin-bottom: 16px;
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.game-card-count {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.game-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.games-showcase {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.showcase-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.showcase-img-wrapper:hover .showcase-overlay {
    opacity: 1;
}

.providers {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.providers-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.providers-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.provider-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.provider-sep {
    color: var(--accent);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
    border-color: var(--accent);
}

.bonus-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
    border-color: var(--accent);
}

.bonus-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.bonus-badge-alt {
    background: rgba(245, 197, 24, 0.15);
    color: var(--accent);
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.bonus-extra {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.bonus-details {
    margin-bottom: 16px;
}

.bonus-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text);
}

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

.bonus-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.bonus-terms {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.bonuses-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.about-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.about-icon {
    margin-bottom: 16px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

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

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.vip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
}

.vip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.vip-card-featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(245, 197, 24, 0.08), rgba(245, 197, 24, 0.02));
    transform: scale(1.03);
}

.vip-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.vip-tier-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.vip-bronze { background: linear-gradient(135deg, #cd7f32, #a0522d); color: #fff; }
.vip-silver { background: linear-gradient(135deg, #c0c0c0, #808080); color: #1a1a2e; }
.vip-gold { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--text-dark); }
.vip-platinum { background: linear-gradient(135deg, #e5e4e2, #b0b0b0); color: #1a1a2e; }
.vip-diamond { background: linear-gradient(135deg, #b9f2ff, #4dc9f6); color: #1a1a2e; }

.vip-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 16px;
}

.vip-perks li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-perks li:last-child {
    border-bottom: none;
}

.vip-points-info {
    text-align: center;
}

.vip-points-info p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 20px;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.payment-method {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    transition: all var(--transition);
}

.payment-method:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(245, 197, 24, 0.1);
    border-radius: 50%;
    margin: 0 auto 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
}

.payment-name {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 4px;
}

.payment-speed {
    font-size: 0.75rem;
    color: var(--success);
}

.payments-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.payment-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.payment-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.payment-info-card li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-info-card strong {
    color: var(--white);
}

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

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-badge {
    font-size: 0.75rem;
    color: var(--accent);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-text .section-title {
    text-align: left;
}

.mobile-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.mobile-features {
    margin-bottom: 32px;
}

.mobile-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.mobile-features li svg {
    flex-shrink: 0;
}

.phone-frame {
    width: 280px;
    margin: 0 auto;
    background: #1c1c35;
    border-radius: 36px;
    padding: 12px;
    border: 3px solid rgba(245, 197, 24, 0.3);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(245, 197, 24, 0.1);
}

.phone-screen {
    background: var(--bg);
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
}

.phone-header {
    padding: 20px 16px 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-bottom: 1px solid var(--border);
}

.phone-logo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ff3a5c;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.phone-content {
    padding: 16px;
}

.phone-bonus {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent);
    padding: 16px;
    background: rgba(245, 197, 24, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.phone-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.phone-game-tile {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary), var(--bg-card));
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.phone-game-tile:nth-child(1) { background: linear-gradient(135deg, #2d1b69, #1a1a2e); }
.phone-game-tile:nth-child(2) { background: linear-gradient(135deg, #1b4332, #1a1a2e); }
.phone-game-tile:nth-child(3) { background: linear-gradient(135deg, #5c1a1a, #1a1a2e); }
.phone-game-tile:nth-child(4) { background: linear-gradient(135deg, #1a3a5c, #1a1a2e); }
.phone-game-tile:nth-child(5) { background: linear-gradient(135deg, #5c4b1a, #1a1a2e); }
.phone-game-tile:nth-child(6) { background: linear-gradient(135deg, #3d1a5c, #1a1a2e); }

.phone-nav-bar {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.section-registration {
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
    padding: 100px 0;
}

.reg-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reg-info .section-title {
    text-align: left;
}

.reg-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.reg-bonus-preview {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
    text-align: center;
}

.reg-bonus-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.reg-bonus-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.reg-bonus-extra {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.reg-bonus-terms {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.reg-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.reg-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.reg-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    padding: 4px;
    transition: color var(--transition);
}

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

.form-error {
    display: none;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 4px;
}

.form-group.error .form-error {
    display: block;
}

.form-group.error input,
.form-group.error select {
    border-color: var(--error);
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--accent);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.social-login {
    display: flex;
    gap: 12px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.btn-social:hover {
    border-color: var(--accent);
    background: rgba(245, 197, 24, 0.05);
}

.form-login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    transition: color var(--transition);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.responsible-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.responsible-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.responsible-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.responsible-card ul {
    margin-bottom: 0;
}

.responsible-card li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.help-links a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.help-links a:hover {
    color: var(--accent-light);
}

.age-badge {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 8px;
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.contact-icon {
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.cert-badge {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.footer-payments span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-responsible {
    color: var(--accent) !important;
}

.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-accent);
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-top: 1px solid var(--accent);
    padding: 12px 16px;
    z-index: 800;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
}

.mobile-sticky-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.winner-notification {
    position: fixed;
    bottom: 100px;
    left: 24px;
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 12px 20px;
    z-index: 850;
    box-shadow: var(--shadow-accent);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.winner-notification.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

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

.winner-icon {
    font-size: 1.3rem;
}

.winner-text {
    font-size: 0.85rem;
    color: var(--text);
}

.winner-text strong {
    color: var(--accent);
}
