/* === CSS RESET & BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #156bc0;
            --secondary-color: #FFB400;
            --dark-bg: #003586;
            --dark-gray: #156bc0;
            --medium-gray: #6c6c6c;
            --light-gray: #ffffff;
            --border-gray: #d9d9d9;
            --text-color: #003586;
            --white: #ffffff;
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        body {
            font-family: var(--font-secondary);
            color: var(--text-color);
            font-size: 16px;
            line-height: 1.5;
            background: #fff;
            -webkit-font-smoothing: antialiased;
        }
        
        p {
            margin-bottom: 16px;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-primary);
            font-weight: 800;
            line-height: 1.2;
        }

        .imgcontent{
            display: block;
            margin: 0 auto;
            margin-bottom: 20px;
            max-width: 500px;
            width: 100%;
            border-radius: 8px;
        }
        
        /* === HEADER === */
        .main-header {
            background-color: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--dark-bg);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            height: 64px;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            max-height: 72px;
            width: auto;
        }
        
        .main-nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 36px;
            margin: 0;
        }
        
        .nav-menu a {
            /* color: var(--light-gray); */
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--medium-gray);
        }
        
        .nav-search {
            position: relative;
        }
        
        .nav-search input {
            background: transparent;
            border: none;
            border-bottom: 1px solid transparent;
            color: var(--white);
            padding: 5px 10px;
            width: 150px;
            transition: border-color 0.3s;
        }
        
        .nav-search input:focus {
            outline: none;
            border-bottom-color: var(--border-gray);
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            background: none;
            border: none;
        }
        
        .mobile-toggle span {
            width: 20px;
            height: 3px;
            background: var(--white);
        }
        
        /* === CONTAINER === */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* === HERO SECTION === */
        .hero-section {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            padding: 60px 0 40px;
        }
        
        .hero-content h1 {
            font-size: 38px;
            color: var(--text-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-lead {
            font-size: 18px;
            line-height: 22px;
            color: var(--text-color);
            margin-bottom: 30px;
            /* max-width: 800px; */
        }
        
        .trust-indicators {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--white);
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .trust-badge svg {
            width: 20px;
            height: 20px;
            fill: var(--secondary-color);
        }
        
        /* === SECTION TITLE === */
        .section {
            padding: 30px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
        }
        
        .section-title h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-color);
            text-transform: uppercase;
            background: var(--white);
            padding-right: 20px;
            position: relative;
            z-index: 1;
            margin: 0;
        }
        
        .section-title h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-color);
            text-transform: uppercase;
            background: var(--white);
            padding-right: 20px;
            position: relative;
            z-index: 1;
            margin: 0;
        }
        
        .section-title h4 {
            font-size: 18px;
            font-weight: 800;
            color: var(--text-color);
            text-transform: uppercase;
            background: var(--white);
            padding-right: 20px;
            position: relative;
            z-index: 1;
            margin: 0;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 10px;
            height: 2px;
            background-color: var(--primary-color);
            z-index: 0;
        }
        
        /* === CASINO CARDS (TOP 10) === */
        .casino-section{
            padding: 60px 0 20px;
        }
                  /* TOP 3 VERTICAL CARDS */
        .top-casino-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .casino-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }

        .casino-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .casino-card-header {
            position: relative;
            padding: 20px;
            background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
        }

        .casino-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-color);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
        }

        .casino-logo {
            width: 100%;
            max-width: 180px;
            height: 80px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .casino-card-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .casino-rating {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

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

        .rating-score {
            font-weight: 700;
            font-size: 18px;
            color: var(--text-color);
        }

        .casino-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-color);
            line-height: 1.2;
        }

        .casino-description {
            font-size: 14px;
            line-height: 18px;
            color: var(--medium-gray);
            margin-bottom: 16px;
        }

        .casino-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .casino-features li {
            padding: 8px 0;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid #f0f0f0;
        }

        .casino-features li::before {
            content: '✓';
            color: var(--secondary-color);
            font-weight: 700;
            flex-shrink: 0;
        }

        .casino-cta {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }

        .btn {
            display: block;
            padding: 12px 24px;
            border-radius: var(--radius);
            font-weight: 700;
            font-size: 14px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            flex: 1;
            text-decoration: none;
        }

        .btn-primary {
            background: var(--secondary-color);
            color: var(--white);
            border: none;
        }

        .btn-primary:hover {
            background: #519218;
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-color);
            border: 1px solid var(--border-gray);
        }

        .btn-secondary:hover {
            background: #f5f5f5;
        }

        /* HORIZONTAL LIST (Competitor Style) */
        .toplist {
            margin-top: 60px;
        }

        .toplist-row {
            display: grid;
            grid-template-columns: 200px 1fr 1fr auto;
            gap: 20px;
            align-items: center;
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .toplist-row:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }

        .toplist-col-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .toplist-col-logo img {
            max-height: 80px;
            max-width: 180px;
            object-fit: contain;
            border-radius: 5px;
        }

        .toplist-col-oneliner {
            font-weight: 600;
            color: var(--text-color);
            font-size: 16px;
            line-height: 1.4;
        }

        .toplist-col-usp {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .toplist-col-usp li {
            padding-left: 20px;
            position: relative;
            font-size: 14px;
            color: var(--medium-gray);
            line-height: 1.4;
        }

        .toplist-col-usp li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .toplist-col-cta a {
            background: var(--secondary-color);
            color: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            white-space: nowrap;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .toplist-col-cta a:hover {
            background: #519218;
            transform: translateX(3px);
        }

        .cta-animation {
            display: inline-block;
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

        .toplist-col-cta a:hover .cta-animation {
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .top-casino-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .toplist-row {
                grid-template-columns: 150px 1fr 1fr auto;
                gap: 15px;
                padding: 15px;
            }
        }

        @media (max-width: 768px) {
            .top-casino-grid {
                grid-template-columns: 1fr;
            }

            .toplist-row {
                grid-template-columns: 1fr;
                gap: 15px;
                text-align: center;
            }

            .toplist-col-logo {
                justify-content: center;
            }

            .toplist-col-usp {
                align-items: flex-start;
            }

            .toplist-col-cta {
                text-align: center;
            }

            .toplist-col-cta a {
                display: block;
                width: 100%;
            }

            .casino-cta {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .casino-card-header {
                padding: 15px;
            }

            .casino-card-body {
                padding: 15px;
            }

            .casino-logo {
                height: 60px;
            }

            .btn {
                padding: 10px 16px;
                font-size: 13px;
            }
        }      
        
        /* === COMPARISON TABLE === */
        .comparison-table {
            overflow-x: auto;
            margin: 40px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
        }
        
        thead {
            background: var(--dark-gray);
            color: var(--white);
        }
        
        th {
            padding: 16px;
            text-align: left;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
        }
        
        td {
            padding: 16px;
            border-bottom: 1px solid var(--border-gray);
            font-size: 14px;
        }
        
        tbody tr:hover {
            background: #f9f9f9;
        }
        
        /* === CONTENT BLOCKS === */
        .content-block {
            margin: 40px 0;
        }
        
        .content-block h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        
        .content-block h3 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: var(--text-color);
        }
        
        .content-block p {
            font-size: 18px;
            line-height: 22px;
            margin-bottom: 16px;
            color: var(--text-color);
        }
        
        .content-block ul,
        .content-block ol {
            margin: 20px 0;
            padding-left: 35px;
        }
        
        .content-block li {
            margin-bottom: 12px;
            line-height: 1.6;
        }
        
        /* === LISTS (ul, ol) === */
        .section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul),
        .section ol:not(.pros ol):not(.cons ol) {
            margin: 20px 0;
            padding-left: 0;
            list-style: none;
        }
        
        .section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li,
        .section ol:not(.pros ol):not(.cons ol) li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
        }
        
        .section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 20px;
            line-height: 1.2;
        }
        
        .section ol:not(.pros ol):not(.cons ol) {
            counter-reset: list-counter;
        }
        
        .section ol:not(.pros ol):not(.cons ol) li {
            counter-increment: list-counter;
        }
        
        .section ol:not(.pros ol):not(.cons ol) li::before {
            content: counter(list-counter) '.';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* Nested lists */
        .section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) ul,
        .section ol:not(.pros ol):not(.cons ol) ol {
            margin-top: 8px;
            margin-bottom: 8px;
            margin-left: 20px;
        }
        
        .section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) ul li::before {
            content: '◦';
            color: var(--medium-gray);
            font-size: 16px;
        }
        
        .section ol:not(.pros ol):not(.cons ol) ol li::before {
            content: counter(list-counter, lower-alpha) '.';
        }
        
        /* === ALERT BOXES === */
        .alert-box {
            padding: 20px;
            border-radius: 4px;
            margin: 25px 0;
        }
        
        .alert-warning {
            background: #fff3cd;
            border-color: #ffc107;
            color: #856404;
        }
        
        .alert-info {
            background: #E8F0FF;
            /* color: #0c5460; */
        }
        
        .alert-success {
            background: #d4edda;
            border-color: var(--secondary-color);
            color: #155724;
        }
        
        /* .alert-box strong:first-child { */
        .alert-box .alert-title {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        /* === PROS & CONS === */
        .pros-cons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .pros, .cons {
            padding: 20px;
            border-radius: 4px;
        }
        
        .pros {
            background: #e8f5e9;
            border: 1px solid var(--secondary-color);
        }
        
        .cons {
            background: #ffebee;
            border: 1px solid #ef5350;
        }
        
        .pros h3, .cons h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .pros ul, .cons ul {
            list-style: none;
            padding: 0;
        }
        
        .pros li::before {
            content: '✓ ';
            color: var(--secondary-color);
            font-weight: 700;
            margin-right: 8px;
        }
        
        .cons li::before {
            content: '✗ ';
            color: #ef5350;
            font-weight: 700;
            margin-right: 8px;
        }
        
        /* === TWO COLUMN LISTS === */
        .two-column-lists {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .two-column-lists > div {
            background: #f8f9fa;
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            padding: 20px;
        }
        
        .two-column-lists > div h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 0;
            color: var(--text-color);
        }
        
        .two-column-lists > div ul,
        .two-column-lists > div ol {
            margin: 0;
            padding-left: 0;
            list-style: none;
        }
        
        .two-column-lists > div ul li,
        .two-column-lists > div ol li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
        }
        
        .two-column-lists > div ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 20px;
            line-height: 1.2;
        }
        
        .two-column-lists > div ol {
            counter-reset: list-counter;
        }
        
        .two-column-lists > div ol li {
            counter-increment: list-counter;
        }
        
        .two-column-lists > div ol li::before {
            content: counter(list-counter) '.';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* === INFO CARDS (Risk/Steg blocks) === */
        .info-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .info-card h3,
        .info-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
            margin-top: 0;
        }
        
        .info-card .steg-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
            margin-top: 0;
            display: block;
        }
        
        .info-card p {
            margin-bottom: 12px;
        }
        
        .info-card ul,
        .info-card ol {
            margin: 12px 0;
            padding-left: 0;
            list-style: none;
        }
        
        .info-card ul li,
        .info-card ol li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 8px;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .info-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 20px;
        }
        
        .info-card ol {
            counter-reset: card-counter;
        }
        
        .info-card ol li {
            counter-increment: card-counter;
        }
        
        .info-card ol li::before {
            content: counter(card-counter) '.';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        /* Responsive for two-column-lists and info-cards */
        @media (max-width: 768px) {
            .two-column-lists {
                grid-template-columns: 1fr;
            }
            
            .info-card {
                padding: 15px;
            }
        }
        
        /* === BONUS CARDS === */
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .bonus-card {
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: 4px;
            padding: 20px;
            transition: border-color 0.3s;
        }
        
        .bonus-card:hover {
            border-color: var(--primary-color);
        }
        
        .bonus-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary-color);
        }
        
        .bonus-amount {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-color);
            margin-bottom: 10px;
        }
        
        /* === LICENSE BADGES === */
        .license-badges {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin: 30px 0;
        }
        
        .license-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            min-width: 120px;
        }
        
        .license-badge img {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }
        
        .license-name {
            font-size: 12px;
            text-align: center;
            font-weight: 600;
        }
        
        /* === FAQ ACCORDION === */
        .faq-section {
            margin: 50px 0;
        }
        
        .faq-item {
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            margin-bottom: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px;
            background: #f8f8f8;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: #f0f0f0;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            font-weight: 300;
        }
        
        .faq-question.active::after {
            content: '−';
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 20px;
            background: var(--white);
        }
        /* === AUTHOR BIO SECTION === */
.author-bio-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 40px 0;
    margin: 60px 0 0 0;
}

.author-bio-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.author-bio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.author-bio-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author-bio-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
    margin: 0;
    text-transform: none;
}

.author-bio-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--medium-gray);
}

.author-bio-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.author-bio-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 599px) {
    .author-bio-section {
        padding: 30px 0;
    }
    
    .author-bio-card {
        padding: 20px;
    }
    
    .author-bio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .author-bio-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-bio-name {
        font-size: 20px;
    }
    
    .author-bio-title {
        font-size: 14px;
    }
    
    .author-bio-content p {
        font-size: 14px;
    }
}

        /* === FOOTER === */
        footer {
            background-color: var(--dark-bg);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .footer-column-label {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 18px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 14px;
        }
        
        .footer-column a {
            color: var(--light-gray);
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--primary-color);
        }
        
        .footer-copyright {
            border-top: 1px solid var(--medium-gray);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #848484;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--dark-gray);
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .footer-social a:hover {
            background: var(--primary-color);
        }
        
        /* === RESPONSIVE === */
        @media (max-width: 999px) {
            .main-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            h3 {
                font-size: 18px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .section-title h2 {
                font-size: 20px;
            }
            
            .section-title h3 {
                font-size: 18px;
            }
            
            .section-title h4 {
                font-size: 16px;
            }
            
            .content-block h2 {
                font-size: 24px;
            }
            
            .content-block h3 {
                font-size: 20px;
            }
            
            .casino-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-wrapper {
                grid-template-columns: 1fr;
            }
            
            .footer-copyright {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }
        
        @media (max-width: 599px) {
            .section {
                padding: 30px 0;
            }
            
            .hero-section {
                padding: 30px 0 20px;
            }
            
            h1 {
                font-size: 24px;
            }
            
            h2 {
                font-size: 18px;
            }
            
            h3 {
                font-size: 16px;
            }
            
            .hero-content h1 {
                font-size: 24px;
            }
            
            .section-title h2 {
                font-size: 18px;
            }
            
            .section-title h3 {
                font-size: 16px;
            }
            
            .section-title h4 {
                font-size: 14px;
            }
            
            .content-block h2 {
                font-size: 20px;
            }
            
            .content-block h3 {
                font-size: 18px;
            }
            
            .trust-indicators {
                flex-direction: column;
                align-items: flex-start;
            }
            
            table {
                font-size: 12px;
            }
            
            th, td {
                padding: 10px;
            }
        }

        /* Author Meta */
.author-meta {
    margin: 24px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

.author-info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-full-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #050505;
}

.author-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #555;
}

.publication-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
}

.date-icon {
    width: 16px;
    height: 16px;
}

/* Disclaimer Box */
.disclaimer-box {
    border-top: 1px solid #DDD;
    padding-top: 16px;
    margin-top: 24px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
