/* ===== CSS Variables ===== */
:root {
    --primary: #1a1a2e;
    --primary-dark: #0f0f1a;
    --secondary: #16213e;
    --accent: #00c853;
    --accent-hover: #00e676;
    --gold: #ffd700;
    --gold-dark: #c7a600;
    --text: #e0e0e0;
    --text-light: #b0b0b0;
    --text-white: #ffffff;
    --card-bg: rgba(22, 33, 62, 0.8);
    --card-border: rgba(255, 215, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #ffd700, #ff8c00);
    --gradient-cta: linear-gradient(135deg, #00c853, #00e676);
    --gradient-dark: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(0, 200, 83, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    display: flex;
    align-items: center;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader .star-letter {
    color: var(--gold);
    font-size: 3.5rem;
    margin: 0 -2px;
}

.loader-star {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ===== Header ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

#header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.logo-m { color: var(--text-white); }
.logo-star { color: var(--gold); font-size: 2rem; margin: 0 -2px; }
.logo-text { color: var(--text-white); }

.nav-desktop {
    display: flex;
    gap: 30px;
}

.nav-desktop a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.nav-desktop a:hover {
    color: var(--text-white);
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--gradient-cta);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 200, 83, 0.6), 0 0 80px rgba(0, 200, 83, 0.2); }
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold);
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== Burger Menu ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu nav a {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.92) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(15, 15, 26, 0.9) 100%);
    z-index: 1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0.6;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 60px 0;
}

.hero-text {
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.3; }
}

/* ===== Info Table Section ===== */
.info-table-section {
    padding: 60px 0;
    background: var(--secondary);
}

.info-table-wrapper {
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
}

.info-table th {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.info-table td {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.info-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.info-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.table-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--gold);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

/* ===== About Section ===== */
.about-section {
    background: var(--gradient-dark);
}

.about-content {
    margin-bottom: 50px;
}

.about-content p, .about-extra p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

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

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 60px 0;
    background: var(--secondary);
}

.cta-banner-inner {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(255, 215, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
}

.cta-banner-text p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.cta-banner-2 {
    background: var(--primary-dark);
}

/* ===== Games Section ===== */
.games-section {
    background: var(--primary-dark);
}

.games-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.games-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

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

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

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.game-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-content {
    padding: 24px;
}

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

.game-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.game-count {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== Styled Tables ===== */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 30px;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card-bg);
}

.styled-table thead {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
}

.styled-table th {
    padding: 16px 20px;
    text-align: left;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.styled-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.styled-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.providers-section, .bonus-table-section {
    margin-top: 40px;
}

.providers-section h3, .bonus-table-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
}

.games-extra {
    margin-top: 40px;
}

.games-extra p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== Registration Section ===== */
.registration-section {
    background: var(--secondary);
}

.reg-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.reg-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-cta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 auto 20px;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

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

.reg-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== Bonuses Section ===== */
.bonuses-section {
    background: var(--gradient-dark);
}

.bonuses-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.bonuses-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.bonus-card-featured {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.bonus-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-cta);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.bonus-card-img {
    height: 100%;
    min-height: 250px;
}

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

.bonus-card-content {
    padding: 32px;
}

.bonus-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.bonus-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.bonus-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== Payments Section ===== */
.payments-section {
    background: var(--primary-dark);
}

.payments-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.payments-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.payments-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.payments-note {
    margin-top: 30px;
}

.payments-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
    padding: 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* ===== Mobile Section ===== */
.mobile-section {
    background: var(--secondary);
}

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

.mobile-image {
    position: relative;
}

.mobile-image img {
    border-radius: var(--radius-lg);
    max-height: 600px;
    object-fit: contain;
    margin: 0 auto;
}

.mobile-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.mobile-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.mobile-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mobile-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0;
}

.spec-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
}

.spec-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.spec-item li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.spec-item li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.mobile-cta {
    margin-top: 20px;
}

/* ===== Security Section ===== */
.security-section {
    background: var(--gradient-dark);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.security-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.security-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

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

.badge-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.badge-icon-large {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.badge-item span:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: var(--primary-dark);
}

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

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

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.review-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

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

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.review-author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== Advantages Detail Section ===== */
.advantages-detail-section {
    background: var(--secondary);
}

.advantages-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.advantages-table {
    margin-top: 40px;
}

.advantages-table h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
}

.advantages-extra {
    margin-top: 40px;
}

.advantages-extra p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--gradient-dark);
}

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

.faq-item {
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gold);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

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

/* ===== Final CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.final-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: #0a0a14;
    padding: 60px 0 30px;
}

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

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 12px;
}

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

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 4px 0;
}

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

.footer-age {
    display: inline-block;
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-cta);
    color: var(--primary-dark);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 900;
    box-shadow: 0 5px 20px rgba(0, 200, 83, 0.4);
    animation: glow 2s ease-in-out infinite;
    transform: translateY(100px);
    transition: transform 0.3s ease;
}

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

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    color: var(--gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Animations ===== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid .game-card:last-child {
        grid-column: span 2;
    }

    .bonus-card-featured {
        grid-column: span 2;
    }

    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-grid {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-desktop, .header-actions {
        display: none;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 48px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .games-grid .game-card:last-child {
        grid-column: span 1;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
    }

    .bonus-card-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

    .payments-content {
        grid-template-columns: 1fr;
    }

    .mobile-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mobile-image {
        order: -1;
    }

    .mobile-image img {
        max-height: 400px;
    }

    .mobile-content .section-tag {
        margin: 0 auto 16px;
    }

    .mobile-content h2 {
        font-size: 2rem;
    }

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

    .security-badges {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .cta-banner-text h3 {
        font-size: 1.5rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

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

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .back-to-top {
        bottom: 70px;
        right: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 28px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 48px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .btn {
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        text-align: center;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .mobile-specs {
        grid-template-columns: 1fr;
    }

    .security-badges {
        grid-template-columns: 1fr 1fr;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }

    .final-cta p {
        font-size: 0.9rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-banner-inner {
        padding: 20px;
    }

    .cta-banner-text h3 {
        font-size: 1.2rem;
    }

    .floating-cta {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}
