        :root {
            --primary: #800020;
            --dark: #1a1a1a;
            --light: #ffffff;
            --gray: #f4f4f4;
            --text: #333333;
            --accent: #ffd700;
        }

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

        .header {
            background: #ffffff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1);
            border-bottom: 1px solid #e8e8e8;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .main-nav { display: none; }

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

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

        .icon-item {
            background: #f4f4f4;
            border-radius: 8px;
            padding: 7px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            color: #1a1a1a;
            text-decoration: none;
            transition: 0.2s;
            cursor: pointer;
            border: 1px solid #e0e0e0;
        }

        .icon-item:hover {
            background: #ebebeb;
            transform: translateY(-1px);
        }

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

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

        .gift-indicator {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 9px;
            height: 9px;
            background: #00cc44;
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 6px #00cc44;
        }

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

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

        @media (max-width: 768px) {
            .header-icons { gap: 6px; }
            .icon-item { padding: 6px 10px; font-size: 0.82rem; }
            .icon-coin, .icon-gift { font-size: 1.05rem; }
            .icon-text { font-size: 0.78rem; }
        }

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

        .burger-btn span {
            width: 28px;
            height: 3px;
            background: #1a1a1a;
            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: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            border-top: 1px solid #e8e8e8;
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease;
            display: flex;
            flex-direction: column;
            z-index: 998;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .mobile-menu.open { height: 360px; padding: 10px 20px; }

        .mobile-menu a {
            color: #1a1a1a;
            text-decoration: none;
            padding: 14px 0;
            border-bottom: 1px solid #eee;
            font-weight: 600;
            font-size: 0.95rem;
        }

        @media (min-width: 1024px) {
            .main-nav { display: flex; gap: 6px; }
            .main-nav a { 
                color: #333;
                text-decoration: none; 
                font-size: 0.9rem; 
                font-weight: 600; 
                padding: 6px 12px;
                border-radius: 6px;
                transition: 0.2s;
                display: flex;
                align-items: center;
                gap: 4px;
            }
            .main-nav a:hover { background: #f4f4f4; color: #111; }
            .burger-btn { display: none; }
        }

        .hero { 
            padding: 40px 20px 10px; 
            background-color: #f0efea;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Ctext x='10' y='40' font-size='28' fill='%23b0a090' opacity='0.09' font-family='serif'%3E%E2%99%A0%3C/text%3E%3Ctext x='90' y='30' font-size='22' fill='%23b0a090' opacity='0.08' font-family='serif'%3E%E2%99%A5%3C/text%3E%3Ctext x='50' y='90' font-size='26' fill='%23b0a090' opacity='0.08' font-family='serif'%3E%E2%99%A3%3C/text%3E%3Ctext x='120' y='100' font-size='22' fill='%23b0a090' opacity='0.08' font-family='serif'%3E%E2%99%A6%3C/text%3E%3Ctext x='15' y='130' font-size='20' fill='%23b0a090' opacity='0.07' font-family='serif'%3E%E2%99%A5%3C/text%3E%3Ctext x='110' y='155' font-size='24' fill='%23b0a090' opacity='0.07' font-family='serif'%3E%E2%99%A0%3C/text%3E%3C/svg%3E");
            background-size: 160px 160px;
            text-align: left;
            border-bottom: 1px solid #ddddd8;
        }
        
        .hero-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .hero h1 { 
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 16px;
            line-height: 1.25;
            font-weight: 800;
        }
        
        .hero p { 
            max-width: 100%;
            color: #444;
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Hero meta row — дата + автор */
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 18px;
            margin-bottom: 22px;
            font-size: 0.875rem;
            color: #666;
        }

        .hero-meta .meta-date { color: #555; }
        .hero-meta .meta-sep { color: #ccc; }
        .hero-meta .meta-author-link {
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
        }
        .hero-meta .meta-author-link:hover { text-decoration: underline; }
        
        /* Old classes kept for compatibility but hidden */
        .author-box { display: none; }
        .info-box { display: none; }
        
        .author-avatar { display: none; }
        .author-info { display: none; }
        .author-label { display: none; }
        .author-name { display: none; }
        .verified-badge { display: none; }
        .info-content { display: none; }
        .info-label { display: none; }
        .info-value { display: none; }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.55rem;
            }
        }

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

        /* ===== НОВІ СТИЛІ КАРТОК ===== */
        .casino-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: box-shadow 0.2s;
        }
        
        .casino-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        }

        /* Основний рядок картки */
        .card-main {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 18px 18px 14px 18px;
        }

        /* Номер */
        .casino-number {
            position: absolute;
            top: 0;
            left: 0;
            width: 28px;
            height: 28px;
            background: #f0f0f0;
            color: #555;
            border-bottom-right-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
        }

        /* Рейтинг-бейдж справа вгорі */
        .rating-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: #f5a623;
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 10px;
            border-bottom-left-radius: 8px;
        }
        .rating-badge.high { background: #e8a020; }
        .rating-badge.top { background: #e8a020; }

        /* Лого */
        .logo-box {
            width: 200px;
            min-width: 200px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

        /* Назва казино */
        .casino-name-label {
            font-size: 0.8rem;
            font-weight: 700;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 4px;
        }

        /* Бонус по центру */
        .bonus-center {
            flex: 1;
            min-width: 0;
        }

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

        /* Кнопка */
        .cta-section { flex-shrink: 0; }

        .btn-casino {
            background: #e53935;
            color: white;
            padding: 13px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: background 0.2s;
            white-space: nowrap;
            display: inline-block;
        }

        .btn-casino:hover { background: #c62828; }

        /* Нижній рядок */
        .card-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 8px 16px 10px 16px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.8rem;
        }

        .recenzja-link {
            color: #0066cc;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 3px;
            font-weight: 500;
        }

        .recenzja-link:hover { text-decoration: underline; }
        .recenzja-link svg { width: 12px; height: 12px; fill: #0066cc; }

        /* На мобільному — лого+назва вгорі, бонус під ними, кнопка на всю ширину */
        @media (max-width: 640px) {
            .card-main {
                flex-wrap: wrap;
                gap: 10px;
            }
            .logo-box {
                width: 90px;
                min-width: 90px;
                height: 60px;
            }
            .bonus-center { order: 2; width: 100%; }
            .cta-section { order: 3; width: 100%; }
            .btn-casino { display: block; text-align: center; width: 100%; }
        }

        .content-section { padding: 20px 20px 20px 20px; max-width: 1100px; margin: 0 auto; }
        .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: 1rem; 
            line-height: 1.8; 
            color: #444; 
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .content-section h3 { margin-top: 20px; margin-bottom: 15px; border-left: 4px solid #1a1a1a; 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: #666;
            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: #ffffff;
            border: 1px solid #eee;
            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: var(--dark); margin: 0; font-weight: 700; }

        .table-wrapper { overflow-x: auto; margin: 25px 0; }
        table { width: 100%; border-collapse: collapse; min-width: 600px; }
        th { background: #dc2626b3; color: white; padding: 15px; text-align: left; }
        td { padding: 15px; border-bottom: 1px solid #ddd; text-align: justify; }

        .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: #e8f5e9; }
        .cons { background: #ffebee; }

        .faq-item { background: var(--gray); margin-bottom: 15px; padding: 20px; border-radius: 10px; }
        .faq-q { font-weight: 800; margin-bottom: 10px; color: var(--dark); }

        .footer {
            background: #f0efea;
            color: #333;
            padding: 50px 20px 0;
            border-top: 1px solid #ddddd8;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #ddddd8;
        }

        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            color: #1a1a1a;
            margin-bottom: 14px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
            max-width: 320px;
        }

        .footer-col h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #999;
            margin-bottom: 16px;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .footer-nav a {
            color: #333;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .footer-nav a:hover { color: #000; }

        .footer-regulators {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
        }

        .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%);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: #888;
        }

        .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: #333; }

        @media (max-width: 768px) {
            .footer-regulators { gap: 15px; }
            .footer-regulators img { height: 32px; }
            .footer-bottom { flex-direction: column; align-items: flex-start; }
        }
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #6b7280;
            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: #4b5563;
            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;
        }
