
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --base-font-size: 14px;
            --scale-factor: 0.875; /* 87.5% от стандартного размера */
        }

        body {
            font-size: var(--base-font-size);
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0f0f23;
            color: #ffffff;
            overflow-x: hidden;
        }

                /* Rating Stars */
        .rating-stars .star.empty {
            color:#ffd7003d;
        }
/*        .star {
            color: #ffd700;
            font-size: 1.1rem;
        }
        
        .star.empty {
            color: rgba(255,255,255,0.2);
        }*/
        
        /* Animated Background */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(45deg, #0f0f23, #1a1a3e, #0f0f23);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        /* Particles */
        .particles {
            position: fixed;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            top: -10px;
        }
        
        .particle {
            position: absolute;
            background: rgba(255, 215, 0, 0.4);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Header */
        .header {
            padding: 30px 20px 0px;
            text-align: center;
            position: relative;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
/*            width: 500px;*/
/*            height: 500px;*/
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
            z-index: -1;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #aeaeae, #757575);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .tagline {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 30px;
        }
        
        .trust-badges {
            display: flex;
            /* justify-content: center; */
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,215,0,0.3);
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        .trust-badge i {
            color: #ffd700;
        }
        
        /* Casino Cards Container */
        .casinos-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 60px;
        }
        
        /* Casino Card - с overflow-visible для badge */
        .card-body
         {
            background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            overflow: hidden;
            padding: 20px 15px 15px 15px;
        }

        /* Обертка для контента с overflow hidden */
        .card-body::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 24px;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }
        
        .card-body::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(90deg, transparent, #ffd700, transparent);
            border-radius: 24px;
            opacity: 0;
            z-index: 0; /* Изменили z-index */
            transition: opacity 0.4s ease;
            overflow: hidden;
            clip-path: inset(0 0 0 0 round 24px); /* Обрезаем по форме карточки */
        }
        
        .card-body:hover::before {
            opacity: 0.3;
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .card-body:hover {
            transform: translateY(-5px);
            border-color: rgba(255,215,0,0.3);
            box-shadow: 0 15px 40px rgba(255,215,0,0.1);
        }
        
        /* Position Badge - обновленный стиль */
        .position-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            color: #0f0f23;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 4px 15px rgba(255,215,0,0.4);
            z-index: 10;
            font-size: 10px;
        }
        
        .position-badge.top-1 {
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            animation: pulse 2s infinite;
        }
        
        .position-badge.top-2 {
            background: linear-gradient(90deg, #c0c0c0, #e0e0e0);
        }
        
        .position-badge.top-3 {
            background: linear-gradient(90deg, #cd7f32, #e0a458);
        }
        
        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) translateY(-50%) scale(1); }
            50% { transform: translateX(-50%) translateY(-50%) scale(1.05); }
        }
        
        /* Casino Main Content */
        .casino-main {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 25px;
            align-items: start;
        }
        
        .casino-logo-wrapper {
            position: relative;
            padding: 5px;
            background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,237,78,0.2));
            border-radius: 20px;
        }
        
        .casino-logo {
            width: 100px;
            height: 100px;
            border-radius: 16px;
            object-fit: contain;
            background: #1a1a3e;
            padding: 10px;
            display: block;
        }
        
        .casino-details {
            flex: 1;
        }
        
        .casino-name {
/*            font-size: 1.6rem;*/
            font-weight: 700;
            margin-bottom: 8px;
            color: #ffffff;
        }
        
        .casino-bonus {
/*            font-size: 1.1rem;*/
            color: #ffd700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .casino-bonus i {
            font-size: 1.2rem;
        }
        
        .casino-features {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
        
        .feature-tag {
            background: rgba(255,215,0,0.1);
            border: 1px solid rgba(255,215,0,0.3);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #ffed4e;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* CTA Button */
        .casino-cta {
            text-align: center;
            margin-top: 15px;
        }
        
        .btn-play {
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            color: #0f0f23;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-play:hover {
            transform: translateY(-1px);
            box-shadow: 0 0px 30px rgb(255 248 0 / 50%);
        }
        
        .btn-play i {
            font-size: 1.3rem;
        }
        
        /* Payment Methods */
        .payment-methods {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .payment-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
        }
        
        .payment-icons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .payment-icon {
            width: auto;
            height: 25px;
            background: rgba(255,255,255,0.1);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.6);
            gap: 5px;
            padding: 0px 7px;
        }

        /* Цвета для конкретных иконок */
/*.fa-cc-visa { color: #1a1f71; }*/
/*.fa-cc-mastercard { color: #eb001b; }*/
.fa-bitcoin { color: #f7931a; }
.fa-ethereum { color: #627eea; }
.fa-coins { color: #50af95; }
.fa-wallet { color: #0066cc; }
.fa-credit-card { color: #00d4aa; }

        .full-3{
            grid-column: 1 / -1;
            display: flex;
            gap: 25px;
            justify-content: space-between;
            align-content: center;
            align-items: center;
/*            justify-items: center;*/
        }
        
        /* Footer */
        .footer {
            background: rgba(0,0,0,0.5);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 60px;
        }
        
        .footer-text {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: #ffd700;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 10px 20px;
            }
            .logo {
                font-size: 2rem;
            }
            .casino-card, .offer-item{
/*                padding: 20px 15px 15px 15px;*/
            }
            .casino-main {
                grid-template-columns: 1fr 3fr;
/*                text-align: center;*/
                gap: 15px;
            }
            .casino-logo-wrapper {
                margin: 0 auto;
            }
            
            .filter-bar {
                flex-direction: column;
            }
            .casinos-container {
                padding: 10px 10px 0px;
            }
            .btn-play{
                width: 100%;
                justify-content: center;
            }
            .full-3{
                display: block;
            }
            .casino-cta {
                width: 100%;
            }
            .feature-tag{
                font-size: 10px;
            }
        }
        
        /* Loading Animation */
        .loading {
            text-align: center;
            padding: 60px 20px;
        }
        
        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255,255,255,0.1);
            border-top: 3px solid #ffd700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Error State */
        .error-box {
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            max-width: 600px;
            margin: 40px auto;
        }
        
        .error-icon {
            font-size: 3rem;
            color: #dc2626;
            margin-bottom: 15px;
        }
        
        .error-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .error-text {
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 25px; flex-wrap: wrap; } .footer-link { display: inline-block; } .footer-link img { height: 20px; /* Фиксированная высота */ width: auto; /* Ширина подстраивается */ object-fit: contain; /* Сохраняет пропорции */ vertical-align: middle; }
.guide-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
}

.guide-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.section {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.section-content {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 15px;
}

.feature-list, .payment-methods {
/*    margin: 15px 0;*/
/*    padding-left: 20px;*/
}

.feature-item, .payment-item {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.feature-item:before, .payment-item:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-container {
        padding: 15px;
    }
    
    .guide-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .section-content {
        font-size: 14px;
    }
}