/* ================================================
   Starburst Original - Main CSS
   Оптимизированная версия без дублирования
   Версия: 2.0 | Обновлено: 9 Октября 2025
   ================================================ */

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

/* Оптимизация производительности */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Оптимизация анимаций */
* {
    will-change: auto;
}

/* Оптимизация рендеринга */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
        }
        
        body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
            color: #fff;
    min-height: 100vh;
            line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
        }
        
        .container {
    max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
    position: relative;
    z-index: 1;
        }
        
        /* Header */
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(168, 85, 247, 0.2);
        }
        
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #fbbf24, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #fbbf24;
        }
        
        .cta-header {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f172a;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fbbf24;
    font-size: 28px;
    cursor: pointer;
        }
        
        /* Breadcrumbs */
        .breadcrumbs {
            padding: 100px 20px 20px;
            font-size: 14px;
            color: #9ca3af;
        }
        
        .breadcrumbs a {
            color: #d1d5db;
            text-decoration: none;
        }
        
.breadcrumbs a:hover {
    color: #fbbf24;
}

/* Main Content */
        main {
    padding: 120px 20px 60px;
    position: relative;
    z-index: 1;
        }

        /* Scroll margin для якорных ссылок (учитывает fixed header) */
        section,
        .section-alt {
            scroll-margin-top: 100px;
        }
        
        h1 {
            font-size: 56px;
            margin-bottom: 20px;
            color: #fff; /* Fallback для браузеров без поддержки градиента */
            background: linear-gradient(135deg, #fbbf24, #a855f7, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 42px;
            margin: 60px 0 30px;
            color: #fbbf24;
            text-align: center;
        }
        
        h3 {
            font-size: 28px;
            margin: 30px 0 20px;
            color: #a855f7;
        }
        
        h4 {
            font-size: 22px;
    margin: 25px 0 15px;
            color: #ec4899;
        }
        
        p {
            margin-bottom: 20px;
            color: #d1d5db;
    font-size: 17px;
        }
        
        strong {
            color: #fbbf24;
        }
        
a {
    color: #fbbf24;
    text-decoration: underline;
}

a:hover {
    color: #f59e0b;
}

/* Typography */
.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #d1d5db;
}

.section-intro {
    text-align: center;
    color: #d1d5db;
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    padding: 50px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(168, 85, 247, 0.3), transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(251, 191, 36, 0.2), transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-flex;
            align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
}

.hero-subtitle {
            font-size: 28px;
    color: #d1d5db;
    margin-bottom: 15px;
}

.hero-text {
            font-size: 18px;
            color: #9ca3af;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-stats {
            display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
            border-radius: 12px;
            text-align: center;
        }
        
.stat-value {
    font-size: 36px;
            font-weight: bold;
    margin-bottom: 5px;
            color: #fbbf24;
        }
        
.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

.cta-buttons {
            display: flex;
    gap: 20px;
    justify-content: center;
            flex-wrap: wrap;
    margin-bottom: 60px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f172a;
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
            text-decoration: none;
    font-weight: bold;
    font-size: 18px;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
/* Cards */
.card {
            background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #fbbf24;
}

.card ul {
    list-style: none;
    margin: 0;
}

.card li {
    padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
        }
        
        /* Info Boxes */
        .highlight-box {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .warning-box {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .info-box {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        
.success-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    background: rgba(168, 85, 247, 0.2);
    color: #fbbf24;
    font-weight: bold;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Lists */
ul, ol {
    margin: 20px 0 20px 30px;
            color: #d1d5db;
        }
        
        li {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* FAQ Styles */
.faq-list {
    max-width: 900px;
            margin: 0 auto;
        }

.faq-item {
    background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(251, 191, 36, 0.3);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
    transition: background 0.3s;
    color: #fff;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #d1d5db;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.faq-icon {
    transition: transform 0.3s;
    font-size: 20px;
            color: #fbbf24;
        }

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

.faq-answer a {
            color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
        }

        /* Search Box */
        .search-box {
            max-width: 600px;
            margin: 0 auto 50px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 18px 50px 18px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: #fff;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
        }

        .search-box input:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: #fbbf24;
        }

        .search-box input::placeholder {
            color: #9ca3af;
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            color: #fbbf24;
        }

        /* FAQ Categories */
        .faq-categories {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .category-btn {
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: #d1d5db;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 15px;
        }

        .category-btn:hover,
        .category-btn.active {
            background: rgba(251, 191, 36, 0.2);
            border-color: #fbbf24;
            color: #fbbf24;
        }

/* Casino Cards */
.casino-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
            overflow: hidden;
    margin-bottom: 30px;
            transition: all 0.3s;
        }

/* Casino List Styles */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

/* Адаптивные стили для больших экранов */
@media (min-width: 1200px) {
    .casino-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
    }
    
    .casino-item.featured {
        grid-column: span 2;
    }
}

.casino-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

.casino-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.2);
}

.casino-item.featured {
    border: 2px solid #fbbf24;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(168, 85, 247, 0.1));
}

.casino-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.casino-logo {
    flex-shrink: 0;
}

.casino-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

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

.stars {
            color: #fbbf24;
    font-size: 18px;
}

.rating-text {
    color: #d1d5db;
    font-size: 16px;
    font-weight: 500;
}

.casino-bonus {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.bonus-amount {
    font-size: 28px;
    font-weight: bold;
            color: #fbbf24;
    margin-bottom: 5px;
        }

.bonus-details {
            color: #d1d5db;
    font-size: 16px;
}

.casino-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
}

.feature {
    color: #d1d5db;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.casino-item .btn {
    width: 100%;
            text-align: center;
    margin: 20px 0 10px;
}

.terms {
    font-size: 12px;
            color: #9ca3af;
    text-align: center;
    margin-top: 10px;
}

/* Wins Ticker Styles */
.wins-ticker {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
}

.wins-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.win-item {
    display: flex;
    align-items: center;
                gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    animation: slideIn 0.5s ease-out;
}

.win-item:last-child {
    border-bottom: none;
}

.win-amount {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.win-details {
    flex: 1;
}

.win-player {
    color: #fbbf24;
    font-weight: 600;
    font-size: 16px;
}

.win-game {
    color: #d1d5db;
    font-size: 14px;
}

.win-time {
    color: #9ca3af;
    font-size: 12px;
    margin-left: auto;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
}

.casino-header {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(251, 191, 36, 0.2));
    padding: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.casino-rank {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
            display: flex;
            align-items: center;
    justify-content: center;
    font-size: 28px;
            font-weight: bold;
    color: #0f172a;
}

.casino-info {
    flex: 1;
    min-width: 200px;
}

.casino-name {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.stars {
            color: #fbbf24;
        }
        
.casino-bonus {
    text-align: right;
}

.bonus-amount {
    font-size: 36px;
            font-weight: bold;
    color: #fbbf24;
    line-height: 1.2;
}

.bonus-desc {
    color: #9ca3af;
    font-size: 14px;
}

.casino-body {
    padding: 30px;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
            text-align: center;
        }
        
.info-label {
            font-size: 14px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.info-value {
    font-size: 20px;
    font-weight: bold;
            color: #fbbf24;
        }
        
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 25px;
}

.pros {
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cons {
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pros h4 {
    color: #22c55e;
    margin-top: 0;
}

.cons h4 {
    color: #ef4444;
    margin-top: 0;
}

.pros ul, .cons ul {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.pros li::before {
    content: "✅ ";
    margin-right: 8px;
}

.cons li::before {
    content: "❌ ";
    margin-right: 8px;
}

.pros li, .cons li {
    padding: 8px 0;
            color: #d1d5db;
        }
        
.casino-footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.badge-sga {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.badge-ssl {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #3b82f6;
        }
        
        /* Step Cards */
        .steps-container {
            margin: 40px 0;
        }
        
        .step-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(251, 191, 36, 0.3);
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.3s;
        }
        
        .step-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #fbbf24;
            transform: translateY(-5px);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f172a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
        }
        
        .step-title {
            font-size: 26px;
            color: #fbbf24;
            margin: 10px 0 15px;
        }
        
        .step-description {
            color: #d1d5db;
            font-size: 17px;
            line-height: 1.8;
        }
        
        /* Symbol Cards */
        .symbols-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .symbol-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .symbol-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .symbol-icon {
            font-size: 64px;
            margin-bottom: 15px;
        }
        
        .symbol-name {
            font-size: 20px;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 10px;
        }
        
        .symbol-payout {
            font-size: 28px;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .symbol-desc {
            font-size: 14px;
            color: #9ca3af;
        }
        
/* Tips Grid */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .tip-card {
            background: rgba(255, 255, 255, 0.05);
            border-left: 4px solid #fbbf24;
            border-radius: 8px;
            padding: 20px;
        }
        
        .tip-icon {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .tip-title {
            font-size: 18px;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 10px;
        }
        
/* Media Placeholder */
        .media-placeholder {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(251, 191, 36, 0.3);
            border-radius: 16px;
            padding: 60px 40px;
            text-align: center;
            margin: 40px 0;
            color: #9ca3af;
        }
        
        .media-placeholder-icon {
            font-size: 72px;
            margin-bottom: 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(168, 85, 247, 0.2));
            border: 2px solid #fbbf24;
            border-radius: 16px;
            padding: 50px;
            text-align: center;
            margin: 60px 0;
        }
        
        .cta-section h3 {
            font-size: 32px;
            margin: 0 0 20px 0;
            color: #fbbf24;
        }
        
        .btn-large {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0f172a;
            padding: 18px 45px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: bold;
            font-size: 20px;
            margin: 10px;
            transition: all 0.3s;
        }
        
        .btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5);
        }
        
/* TOC */
        .toc {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
        }
        
        .toc h2 {
            margin-top: 0;
            font-size: 24px;
    text-align: left;
        }
        
        .toc ul {
            margin: 20px 0 0 0;
            list-style: none;
        }
        
        .toc li {
            margin-bottom: 12px;
        }
        
        .toc a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .toc a:hover {
            color: #fbbf24;
        }

/* Strategy Cards */
.strategy-card {
    border: 2px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.strategy-card:hover {
            transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.step-badge {
    display: inline-block;
            background: #fbbf24;
            color: #0f172a;
    padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .review-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 30px;
            transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
        }

        .review-card.fade-out {
            opacity: 0;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .reviewer-name {
            font-weight: bold;
            font-size: 18px;
            color: #fff;
        }
        
        .review-text {
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .review-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #9ca3af;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .verified {
            color: #22c55e;
            font-weight: 500;
        }

/* Filters */
        .filters {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            padding: 10px 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: #d1d5db;
            cursor: pointer;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: rgba(251, 191, 36, 0.2);
            border-color: #fbbf24;
            color: #fbbf24;
        }
        
        /* Footer */
        footer {
            background: rgba(15, 23, 42, 0.95);
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            padding: 60px 20px 30px;
            position: relative;
            z-index: 1;
    margin-top: 80px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fbbf24;
        }
        
        .footer-section ul {
            list-style: none;
    margin: 0;
    padding: 0;
        }
        
        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #fbbf24;
        }
        
        .footer-section p {
            color: #d1d5db;
            line-height: 1.6;
        }

        .disclaimer-footer {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 40px 0;
            text-align: center;
        }
        
        .disclaimer-footer strong {
            color: #ef4444;
            font-size: 18px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
        }
        
        .footer-bottom p {
            margin: 10px 0;
        }
        
        .disclaimer {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 40px 0;
            text-align: center;
        }
        
        .disclaimer strong {
            color: #ef4444;
            font-size: 18px;
        }
        
/* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
        }

        h2 {
            font-size: 32px;
            }

    h3 {
        font-size: 22px;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 23, 42, 0.98);
                padding: 20px;
                gap: 15px;
                border-top: 1px solid rgba(168, 85, 247, 0.2);
            }

            nav ul.active {
                display: flex;
            }

    .grid-2, .grid-3 {
                grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-bonus {
        text-align: center;
    }
    
    .symbols-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Мобильные стили для казино */
    .casino-list {
        gap: 20px;
    }
    
    .casino-item {
            padding: 20px;
        }
        
    .casino-header {
        flex-direction: column;
            text-align: center;
        gap: 15px;
    }
    
    .casino-bonus {
        padding: 15px;
    }
    
    .bonus-amount {
        font-size: 24px;
    }
    
    .casino-features {
        gap: 6px;
    }
    
    .feature {
        font-size: 13px;
    }
    
    /* Мобильные стили для wins-ticker */
    .wins-ticker {
        padding: 15px;
    }
    
    .win-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .win-amount {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .win-player {
            font-size: 14px;
    }
    
    .win-game {
        font-size: 12px;
    }
    
    .win-time {
        font-size: 10px;
        margin-left: 0;
    }
    
    /* Стили для планшетов */
    @media (min-width: 768px) and (max-width: 1199px) {
        .casino-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .casino-item.featured {
            grid-column: span 1;
        }
        
        .casino-header {
            flex-direction: row;
            text-align: left;
        }
        
        .win-item {
            flex-direction: row;
            text-align: left;
        }
        
    .win-time {
        margin-left: auto;
    }
}

/* Стили для средних экранов (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .casino-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .casino-item.featured {
        grid-column: span 1;
    }
    
    .casino-header {
        flex-direction: row;
            text-align: left;
        }
        
    .casino-info h3 {
        font-size: 22px;
    }
    
    .bonus-amount {
        font-size: 26px;
    }
    
    .bonus-details {
        font-size: 15px;
    }
    
    .casino-features {
        gap: 7px;
    }
    
    .feature {
        font-size: 13px;
    }
    
    .win-item {
        flex-direction: row;
        text-align: left;
    }
    
    .win-time {
        margin-left: auto;
    }
    
    .wins-ticker {
        padding: 18px;
    }
    
    .win-amount {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    .win-player {
        font-size: 15px;
    }
    
    .win-game {
        font-size: 13px;
    }
    
    .win-time {
        font-size: 11px;
    }
}

/* Стили для больших экранов (1024px+) */
@media (min-width: 1024px) {
    .casino-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
    .casino-item.featured {
        grid-column: span 2;
    }
    
    .casino-header {
        flex-direction: row;
        text-align: left;
    }
    
    .casino-info h3 {
        font-size: 26px;
    }
    
    .bonus-amount {
        font-size: 30px;
    }
    
    .bonus-details {
        font-size: 16px;
    }
    
    .casino-features {
        gap: 8px;
    }
    
    .feature {
        font-size: 14px;
    }
    
    .win-item {
        flex-direction: row;
        text-align: left;
    }
    
    .win-time {
        margin-left: auto;
    }
    
    .wins-ticker {
        padding: 25px;
    }
    
    .win-amount {
        font-size: 15px;
        padding: 8px 16px;
    }
    
    .win-player {
        font-size: 17px;
    }
    
    .win-game {
        font-size: 15px;
    }
    
    .win-time {
        font-size: 12px;
    }
}

/* Стили для очень больших экранов (1200px+) */
@media (min-width: 1200px) {
    .casino-list {
            display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 35px;
    }
    
    .casino-item.featured {
        grid-column: span 2;
    }
    
    .casino-header {
        flex-direction: row;
            text-align: left;
    }
    
    .casino-info h3 {
        font-size: 28px;
    }
    
    .bonus-amount {
        font-size: 32px;
    }
    
    .bonus-details {
        font-size: 17px;
    }
    
    .casino-features {
        gap: 9px;
    }
    
    .feature {
        font-size: 15px;
    }
    
    .win-item {
        flex-direction: row;
            text-align: left;
        }
        
    .win-time {
        margin-left: auto;
    }
    
    .wins-ticker {
        padding: 30px;
    }
    
    .win-amount {
        font-size: 16px;
        padding: 9px 18px;
    }
    
    .win-player {
            font-size: 18px;
    }
    
    .win-game {
        font-size: 16px;
    }
    
    .win-time {
        font-size: 13px;
    }
}
    
    /* Оптимизация для мобильных устройств */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Оптимизация касаний */
    button, a, input, select, textarea {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Оптимизация прокрутки */
        .container {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
        .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .card {
        padding: 25px;
    }
    
    /* Дополнительные оптимизации для маленьких экранов */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
            width: 100%;
        text-align: center;
    }
    
    /* Дополнительные стили для казино на маленьких экранах */
    .casino-item {
            padding: 15px;
    }
    
    .casino-badge {
        position: static;
            margin-bottom: 15px;
        text-align: center;
    }
    
    .casino-header {
        gap: 10px;
    }
    
    .casino-info h3 {
        font-size: 20px;
    }
    
    .bonus-amount {
            font-size: 20px;
    }
    
    .casino-features {
        gap: 4px;
    }
    
    .feature {
        font-size: 12px;
    }
    
    /* Мобильные стили для wins-ticker */
    .wins-ticker {
        padding: 15px;
    }
    
    .win-item {
        flex-direction: column;
        gap: 10px;
            text-align: center;
    }
    
    .win-amount {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .win-player {
            font-size: 14px;
        }
        
    .win-game {
        font-size: 12px;
    }
    
    .win-time {
        font-size: 10px;
        margin-left: 0;
    }
    
    /* Дополнительные стили для очень маленьких экранов */
    .casino-list {
        gap: 15px;
    }
    
    .casino-item {
        padding: 12px;
    }
    
    .casino-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .casino-info h3 {
        font-size: 18px;
    }
    
    .bonus-amount {
            font-size: 18px;
    }
    
    .bonus-details {
            font-size: 14px;
        }
        
    .casino-features {
        gap: 3px;
    }
    
    .feature {
        font-size: 11px;
    }
    
    .wins-ticker {
        padding: 12px;
    }
    
    .win-amount {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .win-player {
        font-size: 13px;
    }
    
    .win-game {
        font-size: 11px;
    }
    
    .win-time {
        font-size: 9px;
    }
}

/* Стили для очень маленьких экранов (до 360px) */
@media (max-width: 360px) {
    .casino-list {
        gap: 12px;
    }
    
    .casino-item {
        padding: 10px;
    }
    
    .casino-badge {
        font-size: 9px;
        padding: 5px 10px;
    }
    
    .casino-info h3 {
        font-size: 16px;
    }
    
    .bonus-amount {
        font-size: 16px;
    }
    
    .bonus-details {
        font-size: 12px;
    }
    
    .casino-features {
        gap: 2px;
    }
    
    .feature {
        font-size: 10px;
    }
    
    .wins-ticker {
        padding: 10px;
    }
    
    .win-amount {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .win-player {
        font-size: 12px;
    }
    
    .win-game {
        font-size: 10px;
    }
    
    .win-time {
        font-size: 8px;
    }
}

/* Стили для средних экранов (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .casino-list {
        gap: 20px;
    }
    
    .casino-item {
        padding: 18px;
    }
    
    .casino-badge {
        font-size: 11px;
        padding: 7px 14px;
    }
    
    .casino-info h3 {
        font-size: 22px;
    }
    
    .bonus-amount {
        font-size: 24px;
    }
    
    .bonus-details {
        font-size: 15px;
    }
    
    .casino-features {
        gap: 6px;
    }
    
    .feature {
        font-size: 13px;
    }
    
    .wins-ticker {
        padding: 16px;
    }
    
    .win-amount {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .win-player {
        font-size: 15px;
    }
    
    .win-game {
        font-size: 13px;
    }
    
    .win-time {
        font-size: 11px;
    }
}