/* ============================================
   MODERN CASINO DESIGN 2026
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --success: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   MODERN HEADER
   ============================================ */

.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.header-top {
    background: var(--gradient-dark);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    font-size: 36px;
    -webkit-text-fill-color: initial;
}

.trust-badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.badge i {
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.btn-outline, .btn-primary {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-outline:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Bonus Bar */
.bonus-bar {
    background: linear-gradient(90deg, #ec4899, #f59e0b, #6366f1);
    padding: 12px 0;
    overflow: hidden;
}

.bonus-marquee {
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bonus-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    white-space: nowrap;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.bonus-fire {
    font-size: 20px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bonus-amount {
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-modern {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--dark);
}

.hero-background-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
}

.badge-pulse {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: var(--primary);
    animation: badgePulse 2s infinite;
    opacity: 0;
}

@keyframes badgePulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-main {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-main:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-main:hover:before {
    left: 100%;
}

.btn-hero-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.5);
}

.btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-subtext {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 600;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Hero Visual */
.hero-image-wrapper {
    position: relative;
}

.hero-main-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.3);
    animation: floatCard 3s infinite ease-in-out;
}

.float-card i {
    font-size: 24px;
    color: var(--primary);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: -1s;
}

.card-3 {
    bottom: 10%;
    left: 0%;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-modern {
    padding: 100px 0;
    background: var(--dark-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card-modern {
    background: var(--dark);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-card-modern:hover:before {
    transform: scaleX(1);
}

.feature-card-modern.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.feature-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-modern.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card-modern p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-card-modern.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.feature-list i {
    color: var(--success);
    font-size: 12px;
}

/* ============================================
   GAMES SHOWCASE - UNIFIED CARD DESIGN
   ============================================ */

.games-showcase-modern {
    padding: 100px 0;
    background: var(--dark);
}

.games-grid-modern {
    display: grid;
    /* Убран repeat(auto-fill), делаем ровно 4 колонки */
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.game-card-modern {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.game-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.game-badge-hot, .game-badge-new {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.game-badge-hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: var(--white);
}

.game-badge-new {
    background: var(--success);
    color: var(--white);
}

.game-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.game-image-wrapper {
    position: relative;
    width: 100%;
    /* Фиксированная высота для всех карточек */
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.game-card-modern:hover .game-image-wrapper img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card-modern:hover .game-overlay {
    opacity: 1;
}

.play-button {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.game-info-modern {
    padding: 20px;
    background: var(--dark-light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-provider {
    font-size: 14px;
    color: var(--gray);
    display: block;
    margin-bottom: 12px;
}

.game-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.rtp {
    color: var(--success);
    font-weight: 600;
}

.volatility {
    color: var(--accent);
}

.show-more {
    text-align: center;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-modern {
    padding: 100px 0;
    background: var(--dark-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-block p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 16px;
}

.about-text-block strong {
    color: var(--white);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
    padding: 24px;
    background: var(--dark);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-name {
    font-size: 14px;
    color: var(--gray);
}

.about-image-container {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.about-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.floating-card i {
    font-size: 24px;
    color: var(--primary);
}

.floating-card.license {
    top: 20%;
    left: -20px;
}

.floating-card.secure {
    bottom: 20%;
    right: -20px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-modern {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-modern:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

.cta-benefit i {
    color: var(--success);
    font-size: 20px;
}

.btn-cta-main {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--white);
    color: var(--primary);
    padding: 24px 48px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-cta-main:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-icon {
    margin-left: 8px;
}

.btn-cta-subtext {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 600;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-modern {
    padding: 100px 0;
    background: var(--dark);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--dark-light);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    color: var(--primary);
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.modern-footer {
    background: var(--dark-light);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-payment {
    margin-top: 24px;
}

.payment-label {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 12px;
    font-size: 32px;
    color: var(--gray);
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contacts {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-item i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    text-align: center;
}

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--gray);
    font-size: 14px;
}

.license-info {
    margin-top: 8px;
    font-size: 13px;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-light);
    padding: 16px 24px;
    border-top: 2px solid var(--primary);
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.sticky-text {
    font-size: 16px;
}

.sticky-sub {
    background: var(--white);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .games-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .games-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .brand-section,
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title,
    .cta-title {
        font-size: 32px;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .games-grid-modern {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .hero-stats,
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-main,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card-modern {
        padding: 24px 20px;
    }
    
    .game-image-wrapper {
        height: 260px;
    }
}
/* ============================================
   ОБНОВЛЁННАЯ АНИМАЦИЯ БОНУС-БАР ДЛЯ CABURA
   ============================================ */

.bonus-bar {
    background: linear-gradient(90deg, #ec4899, #f59e0b, #6366f1);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.bonus-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.bonus-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    animation: marquee-seamless 25s linear infinite;
    /* Начинаем с правого края */
    transform: translateX(100%);
}

@keyframes marquee-seamless {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.bonus-fire {
    font-size: 20px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bonus-amount {
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .bonus-content {
        gap: 15px;
        font-size: 13px;
        animation-duration: 30s;
    }
    
    .bonus-fire {
        font-size: 16px;
    }
    
    .bonus-amount {
        font-size: 14px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .bonus-content {
        gap: 10px;
        font-size: 11px;
        animation-duration: 35s;
    }
    
    .bonus-fire {
        font-size: 14px;
    }
    
    .bonus-amount {
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* Отключение анимации для пользователей с prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .bonus-content {
        animation: none;
        transform: translateX(0);
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ КНОПКИ-ССЫЛКИ ДЛЯ CABURA
   ============================================ */

/* Ссылки внутри текста */
.inline-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Кнопки внутри карточек преимуществ */
.btn-feature {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Кнопка после карточек преимуществ */
.features-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-features-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-features-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* Дополнительная кнопка в Hero */
.hero-cta-extra {
    text-align: center;
    margin-top: 20px;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* Кнопки в About */
.btn-about-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-light);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.btn-about-inline:hover {
    background: var(--primary);
    color: var(--white);
}

.about-cta {
    margin-top: 30px;
}

.btn-about-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-about-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.about-image-cta {
    margin-top: 20px;
    text-align: center;
}

.btn-about-image {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-about-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Вторая кнопка в CTA */
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Кнопки в FAQ */
.btn-faq-answer {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-faq-answer:hover {
    background: var(--primary);
    color: var(--white);
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-faq-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-faq-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

/* Кнопки в футере */
.btn-footer {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-footer-contact {
    display: block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-light);
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-footer-contact:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-light);
}

.btn-footer-final {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin: 20px auto 0;
    max-width: 300px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-footer-final:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Ссылка в бонус-баре */
.bonus-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
}

.bonus-link:hover .bonus-amount {
    transform: scale(1.05);
}

/* Вторая кнопка "Смотреть все игры" */
.btn-show-more-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-show-more-secondary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   ИСПРАВЛЕНИЯ МОБИЛЬНОЙ АДАПТАЦИИ
   ============================================ */

/* Предотвращение переполнения текста */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title,
.section-title,
.cta-title,
.hero-bonus-title {
    word-break: break-word;
    hyphens: auto;
}

/* Фикс для длинных слов в карточках */
.feature-card-modern h3,
.feature-card-modern p,
.bonus-card h3,
.bonus-card p,
.condition-card h3,
.condition-card p {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Фикс для кнопок на мобильных */
@media (max-width: 768px) {
    .btn-hero-main,
    .btn-hero-secondary,
    .btn-cta-main,
    .btn-cta-secondary,
    .btn-about-main,
    .btn-about-image,
    .btn-features-main,
    .btn-faq-main,
    .btn-footer-final {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .btn-feature,
    .btn-faq-answer,
    .btn-footer,
    .btn-footer-contact {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Фикс для текста в карточках */
    .feature-card-modern,
    .bonus-card,
    .condition-card,
    .faq-item {
        word-break: break-word;
    }
    
    /* Фикс для заголовков */
    .hero-title {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    
    .section-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .cta-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    /* Фикс для описаний */
    .hero-description,
    .section-subtitle,
    .cta-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Фикс для бонус-бара */
    .bonus-content {
        font-size: 12px !important;
        gap: 8px !important;
    }
    
    .bonus-amount {
        font-size: 13px !important;
        padding: 4px 10px !important;
    }
    
    /* Фикс для статистики */
    .stat-value {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
    
    /* Фикс для галереи игр */
    .game-title {
        font-size: 14px !important;
    }
    
    .game-provider {
        font-size: 11px !important;
    }
    
    .game-meta {
        font-size: 10px !important;
    }
    
    /* Фикс для футера */
    .footer-logo {
        font-size: 20px !important;
    }
    
    .footer-column h4 {
        font-size: 14px !important;
    }
    
    .footer-links a {
        font-size: 13px !important;
        display: block;
        padding: 3px 0;
    }
    
    .footer-warning {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    /* Ещё более агрессивные фиксы для очень маленьких экранов */
    .hero-title {
        font-size: 22px !important;
    }
    
    .section-title,
    .cta-title {
        font-size: 20px !important;
    }
    
    .hero-description,
    .section-subtitle,
    .cta-description {
        font-size: 13px !important;
    }
    
    .bonus-content {
        font-size: 11px !important;
        gap: 5px !important;
    }
    
    .bonus-amount {
        font-size: 12px !important;
    }
    
    /* Фикс для кнопок */
    .btn-hero-main,
    .btn-cta-main {
        font-size: 14px !important;
        padding: 14px 20px !important;
    }
    
    .btn-text {
        font-size: 14px !important;
    }
    
    .btn-subtext {
        font-size: 12px !important;
    }
    
    /* Фикс для карточек */
    .feature-card-modern,
    .bonus-card,
    .condition-card {
        padding: 20px 15px !important;
    }
    
    .feature-card-modern h3,
    .bonus-card h3,
    .condition-card h3 {
        font-size: 16px !important;
    }
    
    .feature-card-modern p,
    .bonus-card p,
    .condition-card p {
        font-size: 13px !important;
    }
    
    /* Фикс для FAQ */
    .faq-question {
        font-size: 14px !important;
        padding: 15px !important;
    }
    
    .faq-answer {
        font-size: 13px !important;
        padding: 0 15px 15px !important;
    }
    
    /* Фикс для футера */
    .footer-logo {
        font-size: 18px !important;
    }
    
    .footer-desc {
        font-size: 12px !important;
    }
    
    .footer-warning {
        font-size: 11px !important;
    }
    
    .footer-copyright {
        font-size: 11px !important;
    }
}

/* ============================================
   АНИМАЦИЯ БОНУС-БАР (исправленная)
   ============================================ */

.bonus-bar {
    background: linear-gradient(90deg, #ec4899, #f59e0b, #6366f1);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.bonus-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    animation: marquee-seamless 25s linear infinite;
    transform: translateX(100%);
}

@keyframes marquee-seamless {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.bonus-fire {
    font-size: 20px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bonus-amount {
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
}

/* Адаптация бонус-бара для мобильных */
@media (max-width: 768px) {
    .marquee-content {
        gap: 15px;
        font-size: 13px;
        animation-duration: 30s;
    }
    
    .bonus-fire {
        font-size: 16px;
    }
    
    .bonus-amount {
        font-size: 14px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        gap: 10px;
        font-size: 11px;
        animation-duration: 35s;
    }
    
    .bonus-fire {
        font-size: 14px;
    }
    
    .bonus-amount {
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* Отключение анимации для prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
        transform: translateX(0);
        white-space: normal;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ АДАПТИВНЫЕ ФИКСЫ
   ============================================ */

/* Предотвращение горизонтального скролла */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 0 16px;
}

/* Фикс для изображений */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Фикс для сеток на мобильных */
@media (max-width: 768px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
    }
    
    .features-grid-modern,
    .bonus-grid,
    .conditions-grid,
    .steps-container {
        grid-template-columns: 1fr !important;
    }
    
    .games-grid-modern {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 480px) {
    .games-grid-modern {
        grid-template-columns: 1fr !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .hero-cta-group {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .cta-benefits {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.faq-question:focus,
.btn-hero-main:focus,
.btn-cta-main:focus,
.btn-outline:focus,
.btn-primary:focus,
.btn-feature:focus,
.btn-about-main:focus,
.btn-faq-main:focus,
.btn-footer:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* ============================================
   СТАТИЧНАЯ БОНУС-СТРОКА (без анимации)
   ============================================ */

.bonus-bar {
    background: linear-gradient(90deg, #ec4899, #f59e0b, #6366f1);
    padding: 12px 0;
    overflow: hidden;
}

/* Статичный контейнер - без анимации */
.bonus-marquee-static {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    white-space: nowrap;
    /* Без animation и transform */
}

.bonus-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    transition: opacity 0.3s ease;
}

.bonus-link:hover {
    opacity: 0.9;
}

.bonus-fire {
    font-size: 20px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bonus-amount {
    background: var(--white);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 16px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .bonus-marquee-static {
        gap: 15px;
        font-size: 13px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .bonus-fire {
        font-size: 16px;
    }
    
    .bonus-amount {
        font-size: 14px;
        padding: 4px 12px;
    }
    
    .bonus-link {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .bonus-marquee-static {
        gap: 10px;
        font-size: 11px;
    }
    
    .bonus-fire {
        font-size: 14px;
    }
    
    .bonus-amount {
        font-size: 12px;
        padding: 3px 10px;
    }
}

/* Сохраняем анимацию только для иконок огня */
@media (prefers-reduced-motion: reduce) {
    .bonus-fire {
        animation: none;
    }
}