        :root {
            --primary: #dc2626;
            --dark: #151922;
            --light: #27313e;
            --gray: #1e2733;
            --text: #d0d6e0;
            --accent: #ffd700;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background-color: #27313e; color: var(--text); line-height: 1.6; }

        .header {
            background: #151922;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #252b3a;
            box-shadow: 0 8px 32px rgba(0,0,0,0.45);
        }

        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            height: 64px;
        }

        .logo { 
            color: white; 
            text-decoration: none; 
            font-weight: 800; 
            text-transform: uppercase; 
            display: flex; 
            align-items: center; 
            gap: 10px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .main-nav { display: none; }

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

        .header-icons {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .icon-item {
            background: #dc2626;
            border-radius: 6px;
            padding: 0 18px;
            height: 38px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: background 0.2s;
            cursor: pointer;
            white-space: nowrap;
        }

        .icon-item:hover { background: #b91c1c; }

        .icon-item.icon-gift-wrapper {
            background: #222837;
            border: 1px solid #2a2f3d;
            padding: 0 14px;
            height: 38px;
            font-size: 0.88rem;
        }

        .icon-item.icon-gift-wrapper:hover { background: #2a2f3d; }

        .icon-coin, .icon-gift { font-size: 1.1rem; }

        .icon-gift-wrapper { position: relative; }

        .gift-indicator {
            position: absolute;
            top: 4px;
            right: 4px;
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

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

        .icon-text { font-size: 0.88rem; letter-spacing: 0.3px; }

        .burger-btn {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 26px;
            height: 18px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .burger-btn span {
            width: 26px;
            height: 2px;
            background: #c8cdd8;
            border-radius: 10px;
            transition: 0.3s;
        }

        .burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .burger-btn.active span:nth-child(2) { opacity: 0; }
        .burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-menu {
            position: fixed;
            top: 64px;
            left: 0;
            width: 100%;
            background: #151922;
            height: 0;
            overflow: hidden;
            transition: 0.3s ease;
            display: flex;
            flex-direction: column;
            z-index: 999;
        }

        .mobile-menu.open { 
            height: auto;
            max-height: 500px;
            border-top: 1px solid #252b3a; 
            padding: 8px 20px 16px; 
        }

        .mobile-menu a {
            color: #c8cdd8;
            text-decoration: none;
            padding: 14px 0;
            border-bottom: 1px solid #252b3a;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .mobile-menu a:last-child { border-bottom: none; }
        .mobile-menu a:hover { color: #ffffff; }

        .mob-dropdown { border-bottom: 1px solid #252b3a; }
        .mob-dropdown:last-child { border-bottom: none; }

        .mob-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            color: #c8cdd8;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            user-select: none;
        }

        .mob-dropdown-toggle:hover { color: #ffffff; }

        .mob-dropdown-arrow {
            transition: transform 0.25s;
            flex-shrink: 0;
        }

        .mob-dropdown.open .mob-dropdown-arrow {
            transform: rotate(180deg);
        }

        .mob-dropdown-items {
            display: none;
            padding-bottom: 6px;
        }

        .mob-dropdown.open .mob-dropdown-items {
            display: block;
        }

        .mob-dropdown-items a {
            padding: 10px 0 10px 14px !important;
            font-size: 0.88rem !important;
            color: #8899aa !important;
            border-bottom: 1px solid #1e2733 !important;
        }

        .mob-dropdown-items a:last-child { border-bottom: none !important; }
        .mob-dropdown-items a:hover { color: #ffffff !important; }

        @media (max-width: 768px) {
            .header-inner { height: 56px; padding: 0 16px; }
            .mobile-menu { top: 56px; }
        }

        @media (min-width: 1024px) {
            .main-nav { 
                display: flex; 
                align-items: stretch;
                gap: 0;
            }
            .main-nav a { 
                color: #c8cdd8; 
                text-decoration: none; 
                font-size: 0.95rem; 
                font-weight: 700; 
                transition: color 0.2s, background 0.2s;
                padding: 0 18px;
                display: flex;
                align-items: center;
                border-bottom: 3px solid transparent;
                white-space: nowrap;
            }
            .main-nav a:hover { 
                color: #ffffff;
                background: rgba(255,255,255,0.04);
                border-bottom-color: rgba(220,38,38,0.4);
            }
            .main-nav a.active { 
                color: #ffffff; 
                font-weight: 700;
                border-bottom-color: #dc2626;
            }
            .burger-btn { display: none; }

            /* Dropdown */
            .nav-dropdown {
                position: relative;
                display: flex;
                align-items: stretch;
            }

            .nav-dropdown > a {
                display: flex;
                align-items: center;
                gap: 5px;
                cursor: pointer;
            }

            .nav-dropdown-arrow {
                width: 10px;
                height: 10px;
                fill: currentColor;
                transition: transform 0.2s;
                flex-shrink: 0;
            }

            .nav-dropdown:hover .nav-dropdown-arrow {
                transform: rotate(180deg);
            }

            .dropdown-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: #151922;
                border: 1px solid #252b3a;
                border-top: none;
                border-radius: 0 0 8px 8px;
                box-shadow: 0 12px 32px rgba(0,0,0,0.5);
                min-width: 180px;
                z-index: 100;
            }

            .nav-dropdown:hover .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                display: block !important;
                padding: 12px 18px !important;
                color: #c8cdd8 !important;
                font-size: 0.9rem !important;
                font-weight: 700 !important;
                border-bottom: 1px solid #252b3a !important;
                border-left: none !important;
                border-right: none !important;
                border-top: none !important;
                white-space: nowrap;
                transition: color 0.2s, background 0.2s !important;
                text-decoration: none;
            }

            .dropdown-menu a:last-child {
                border-bottom: none !important;
            }

            .dropdown-menu a:hover {
                color: #ffffff !important;
                background: rgba(255,255,255,0.04) !important;
                border-bottom-color: transparent !important;
            }
        }

        .hero { 
            padding: 20px 20px 20px; 
            background: #1e2733;
            text-align: left;
            border-bottom: 2px solid #2e3d4f;
        }
        
        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero h1 { 
            font-size: 1.9rem;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.2;
            font-weight: 800;
        }
        
        .hero p { 
            max-width: 100%;
            color: #bbb;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: justify;
        }
        
        .hero-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 12px;
            flex-wrap: wrap;
        }

        .hero-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
        }

        .hero-updated {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #888;
            font-size: 0.85rem;
        }

        .hero-updated strong { color: #fff; }
        
        .author-box {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: #3a4455;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .author-info {
            display: flex;
            flex-direction: column;
        }
        
        .author-label {
            font-size: 0.85rem;
            color: #888;
        }
        
        .author-name {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .verified-badge {
            width: 16px;
            height: 16px;
            fill: #00c853;
        }
        
        .info-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.04);
            padding: 12px 15px;
            border-radius: 8px;
        }
        
        .info-box svg {
            width: 24px;
            height: 24px;
            fill: #fff;
        }
        
        .info-content {
            display: flex;
            flex-direction: column;
        }
        
        .info-label {
            font-size: 0.85rem;
            color: #888;
        }
        
        .info-value {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .hero h1 { font-size: 1.5rem; }
            .hero-bottom { 
                flex-direction: column; 
                align-items: flex-start; 
                gap: 12px; 
            }
            .hero-meta {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 16px;
                width: 100%;
            }
            .hero-meta .hero-updated {
                display: block;
                font-size: 0.78rem;
            }
            .author-box { flex-shrink: 0; }
            .author-name { font-size: 0.85rem; }
            .author-label { font-size: 0.72rem; }
            .author-avatar { width: 40px; height: 40px; }
            .author-avatar img { width: 40px; height: 40px; }
        }

        .listing { padding: 20px 20px; max-width: 1200px; margin: 0 auto; border-top: 1px solid #2e3d4f; }
        
        .listing h2 {
            margin-top: 0;
            margin-bottom: 10px;
            border-left: 5px solid #dc2626b3;
            padding-left: 15px;
            font-size: 1.6rem;
        }

        .casino-card {
            background: #1e2733;
            border: 1px solid #2a3545;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            align-items: stretch;
            position: relative;
            z-index: 10;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0,0,0,0.2);
        }

        .casino-number {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 32px;
            height: 32px;
            background: #2a3a52;
            color: white;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .brand-section { 
            display: flex; 
            flex-direction: row;
            align-items: center;
            gap: 15px;
            padding-top: 0;
        }

        .logo-box {
            width: 120px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            overflow: hidden;
            padding: 2px;
            flex-shrink: 0;
        }

        .logo-box img { 
            width: 100%; 
            height: 100%; 
            object-fit: contain;
        }

        .casino-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex: 1;
            min-width: 0;
        }

        .casino-info h3 { 
            font-size: 1.2rem; 
            color: #ffffff; 
            margin: 0;
            font-weight: 700;
            width: 100% !important;
        }

        .casino-name {
            font-size: 1.2rem; 
            color: #ffffff; 
            margin: 0;
            font-weight: 700;
            width: 100% !important;
        }

        .rating { 
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100% !important;
        }

        .rating-stars {
            color: #ffd700;
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .rating-number {
            color: #c8cdd8;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .bonus-section {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .bonus-label {
            font-size: 0.9rem;
            color: #8899aa;
            font-weight: 600;
        }

        .bonus-text {
            font-size: 1.3rem;
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
        }

        .casino-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .feature-row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .feature-row svg {
            width: 16px;
            height: 16px;
            fill: #10b981;
            flex-shrink: 0;
            min-width: 16px;
        }

        .feature-row span {
            color: #c8cdd8;
        }

        .cta-section {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-casino {
            background: #dc2626;
            color: white;
            padding: 14px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: 0.3s;
            white-space: nowrap;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .btn-casino:hover {
            background: #b91c1c;
            transform: translateY(-2px);
        }

        /* DESKTOP стилі */
        @media (min-width: 1025px) {
            .casino-card {
                flex-direction: row;
                align-items: center;
                gap: 25px;
            }
            
            .brand-section {
                width: auto;
                padding-top: 25px;
            }
            
            .logo-box {
                width: 200px;
                height: 150px;
            }
            
            .bonus-section {
                flex: 1;
            }
            
            .btn-casino {
                width: auto;
            }
        }

        .cs-wrap {
            border-top: 1px solid #2e3d4f;
            background: #27313e;
        }
        .cs-wrap.alt { background: #222c38; }

        .content-section { padding: 20px 15px; max-width: 1100px; margin: 0 auto; }

        .content-section.text-section {
            padding: 20px 15px;
        }

        .text-section > h2,
        .text-section > h3,
        .text-section > h4,
        .text-section > p,
        .text-section > ul,
        .text-section > ol,
        .text-section > .pros-cons,
        .text-section > .faq-item,
        .text-section > .image-block,
        .text-section > .feature-grid,

        .text-section > button {
            display: block;
        }

        .text-section-inner {
            background: #1e2733;
            border: 1px solid #2e3d4f;
            border-radius: 10px;
            padding: 20px 20px;
        }
        .content-section h2 { margin-top: 25px; margin-bottom: 25px; border-left: 5px solid #dc2626b3; padding-left: 15px; font-size: 1.6rem; }
        .content-section h2:first-of-type { margin-top: 0; }
        .content-section p { margin-bottom: 15px; line-height: 1.7; text-align: justify; }
        
        .hero p { 
            font-size: 1.05rem; 
            line-height: 1.8; 
            color: #ddd; 
            margin-bottom: 10px;
            text-align: justify;
        }
        
        
        .content-section h3 { margin-top: 20px; margin-bottom: 15px; border-left: 4px solid #3a4455; padding-left: 12px; font-size: 1.3rem; font-weight: 700; }
        .content-section h4 { margin-top: 20px; margin-bottom: 12px; font-size: 1.1rem; font-weight: 700; }

        /* Стилі для зображень */
        .image-block {
            text-align: center;
            margin: 30px 0;
        }

        .image-block img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .image-block a {
            display: inline-block;
        }

        .image-block img:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .image-caption {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #8899aa;
            font-style: italic;
            text-align: center;
        }

        .feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 30px 0; }
        @media (min-width: 768px) { .feature-grid { grid-template-columns: 1fr 1fr; } }

        .feature-item {
            background: #1e2733;
            border: 1px solid #2a3545;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        }

        .feature-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
        .feature-header svg { width: 28px; height: 28px; fill: var(--primary); flex-shrink: 0; }
        .feature-item h3 { font-size: 1.15rem; color: #ffffff; margin: 0; font-weight: 700; }

        .table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 25px 0; border-radius: 10px; border: 1px solid #2e3d4f; }
        table { width: 100%; border-collapse: collapse; min-width: 600px; }
        th { 
            background: #151922; 
            color: #ffffff; 
            padding: 15px 18px; 
            text-align: center;
            font-weight: 700;
            font-size: 0.95rem;
            border-right: 1px solid #2e3d4f;
            border-bottom: 2px solid #2e3d4f;
        }
        th:last-child { border-right: none; }
        td { 
            padding: 14px 18px; 
            text-align: center;
            color: #c8cdd8;
            border-right: 1px solid #2e3d4f;
            border-bottom: 1px solid #2e3d4f;
            font-size: 0.93rem;
        }
        td:last-child { border-right: none; }
        tr:last-child td { border-bottom: none; }
        tbody tr:nth-child(odd) { background: #1e2733; }
        tbody tr:nth-child(even) { background: #222c38; }
        tbody tr:hover { background: #253040; }
        td strong { color: #ffffff; }

        .pros-cons { display: grid; grid-template-columns: 1fr; gap: 20px; }
        @media (min-width: 768px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
        .pc-box { padding: 25px; border-radius: 12px; }
        .pros { background: #1a2e1e; }
        .cons { background: #2e1a1a; }

        .faq-item { background: #1e2733; margin-bottom: 15px; padding: 20px; border-radius: 10px; }
        .faq-q { font-weight: 800; margin-bottom: 10px; color: #ffffff; }

        .footer { background: #151922; color: white; padding: 50px 20px; text-align: center; border-top: 2px solid #2e3d4f; }
        
        /* Кнопка вгору */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #2a3a52;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: all 0.3s;
            z-index: 999;
        }
        
        .scroll-to-top:hover {
            background: #1e2d3f;
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }
        
        .scroll-to-top.show {
            display: flex;
        }
        
        .scroll-to-top svg {
            fill: white;
        }
        .footer-nav { 
            display: flex; 
            flex-wrap: wrap; 
            justify-content: center; 
            gap: 15px; 
            margin-bottom: 30px; 
            padding-bottom: 20px; 
            border-bottom: 1px solid #252b3a;
        }
        .footer-nav a { color: #8899aa; text-decoration: none; font-size: 0.85rem; font-weight: 600; }
        .footer-nav a:hover { color: var(--primary); }
        
        /* Regulators / Licenses section */
        .footer-regulators {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #252b3a;
            border-bottom: 1px solid #252b3a;
        }
        
        .footer-regulators img {
            height: 40px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.3s, transform 0.3s;
            filter: grayscale(100%);
        }
        
        .footer-regulators a:hover img,
        .footer-regulators img:hover {
            opacity: 1;
            transform: translateY(-2px);
            filter: grayscale(0%);
        }
        
        @media (max-width: 768px) {
            .footer-regulators {
                gap: 15px;
            }
            
            .footer-regulators img {
                height: 32px;
            }
        }
        /* BREADCRUMBS */
        .breadcrumbs {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .breadcrumbs-list {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: #8899aa;
            flex-wrap: wrap;
        }

        .breadcrumbs-list a {
            color: #c8cdd8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumbs-list a:hover {
            color: #ffffff;
        }

        .breadcrumbs-separator {
            color: #6b7a8d;
            user-select: none;
        }

        .breadcrumbs-current {
            color: #ffffff;
        }
        
        .footer-links { margin-top: 20px; padding-top: 10px; padding-bottom: 10px; }
        .footer-links a { color: #6b7a8d; text-decoration: none; margin: 0 10px; font-size: 0.8rem; }

        @media (max-width: 768px) {
            .listing h2,
            .content-section h2 { font-size: 1.3rem; }
            .content-section h3,
            .casino-info h3 { font-size: 1.1rem; }
            .bonus-text { font-size: 1.05rem; }
        }

        /* FILTRY */
        .filters-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .filter-btn {
            background: #1e2733;
            border: 1px solid #2a3545;
            color: #c8cdd8;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }

        .filter-btn:hover {
            background: #253040;
            border-color: #dc2626;
            color: #fff;
        }

        .filter-btn.active {
            background: #dc2626;
            border-color: #dc2626;
            color: #fff;
        }

        .casino-card.hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .filters-wrap { padding: 12px 16px 0; gap: 6px; }
            .filter-btn { font-size: 0.82rem; padding: 7px 13px; }
        }
		
