/* === CSS RESET & BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #061129;
            --secondary-color: #ff6600;
            --dark-bg: #151515;
            --dark-gray: #343434;
            --medium-gray: #6c6c6c;
            --light-gray: #949494;
            --border-gray: #d9d9d9;
            --text-color: #464646;
            --white: #ffffff;
            --font-primary: 'Exo', sans-serif;
            --font-secondary: 'proxima-nova', -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;
        }
        
        /* Links in content */
        .section p a,
        .section li a,
        .content-block p a,
        .content-block li a {
            color: var(--secondary-color);
            text-decoration: underline;
            transition: color 0.3s;
        }
        
        .section p a:hover,
        .section li a:hover,
        .content-block p a:hover,
        .content-block li a:hover {
            color: var(--primary-color);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-primary);
            font-weight: 800;
            line-height: 1.2;
        }
        
        /* Scroll offset for anchor links to prevent header overlap */
        h2[id] {
            scroll-margin-top: 100px;
        }

        .imgcontent{
            display: block;
            margin: 0 auto;
            margin-bottom: 20px;
            max-width: 500px;
            width: 100%;
            border-radius: 8px;
        }
        
        /* === HEADER === */
        .main-header {
            background-color: var(--dark-bg);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--primary-color);
        }
        
        .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: 55px;
            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(--white);
        }
        
        .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: 15px 0;
        }
        
        .section-alt {
            background-color: #f8f9fa;
        }
        
        .section-alt .section-title h2,
        .section-alt .section-title h3 {
            background: #f8f9fa;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .section-title h1 {
            font-size: 28px;
            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 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::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-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .casino-card {
            background: var(--white);
            border: 1px solid var(--border-gray);
            border-radius: 4px;
            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);
        }
        
        .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;
        }
        
        .casino-cta {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }
        
        .btn {
            display: block;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 14px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-transform: uppercase;
            flex: 1;
        }
        
        .btn-primary {
            background: var(--secondary-color);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: #519218;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-color);
            border: 1px solid var(--border-gray);
        }
        
        .btn-secondary:hover {
            background: #f5f5f5;
        }
        
        /* === COMPARISON TABLE === */
        .comparison-table {
            overflow-x: auto;
            margin: 15px 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);
        }
        .container h3 {
            margin-bottom: 10px;
        }
        
        .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: 10px 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: 5px;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-color);
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: break-word;
        }
        
        .section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li a,
        .section ol:not(.pros ol):not(.cons ol) li a {
            word-wrap: break-word;
            overflow-wrap: break-word;
            word-break: break-all;
            hyphens: auto;
        }
        
        .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):not(.info-block ol) {
            counter-reset: list-counter;
        }
        
        .section ol[start="2"]:not(.pros ol):not(.cons ol):not(.info-block ol) {
            counter-reset: list-counter 1;
        }
        
        .section ol[start="3"]:not(.pros ol):not(.cons ol):not(.info-block ol) {
            counter-reset: list-counter 2;
        }
        
        .section ol[start="4"]:not(.pros ol):not(.cons ol):not(.info-block ol) {
            counter-reset: list-counter 3;
        }
        
        .section ol[start="5"]:not(.pros ol):not(.cons ol):not(.info-block ol) {
            counter-reset: list-counter 4;
        }
        
        .section ol[start="6"]:not(.pros ol):not(.cons ol):not(.info-block ol) {
            counter-reset: list-counter 5;
        }
        
        .section ol[start="7"]:not(.pros ol):not(.cons ol):not(.info-block ol) {
            counter-reset: list-counter 6;
        }
        
        .section ol:not(.pros ol):not(.cons ol):not(.info-block ol) > li {
            counter-increment: list-counter;
        }
        
        .section ol:not(.pros ol):not(.cons ol):not(.info-block 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: #d1ecf1;
            color: #0c5460;
        }
        
        .alert-success {
            background: #d4edda;
            border-color: var(--secondary-color);
            color: #155724;
        }
        
        .alert-box strong {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        /* === CUSTOM BLOCKQUOTES === */
        blockquote {
            margin: 25px 0;
            padding: 20px 24px;
            border-radius: 6px;
            border-left: 4px solid;
            position: relative;
            font-style: normal;
        }
        
        blockquote p {
            margin: 0;
            line-height: 1.6;
            font-size: 15px;
        }
        
        blockquote p:not(:last-child) {
            margin-bottom: 12px;
        }
        
        /* Tip Author Blockquote */
        blockquote.tip-author {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-left-color: #2196f3;
            color: #0d47a1;
            box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
        }
        
        blockquote.tip-author::before {
            content: '💬';
            position: absolute;
            top: 18px;
            left: 20px;
            font-size: 20px;
        }
        
        blockquote.tip-author p {
            padding-left: 32px;
        }
        
        /* Let Op (Warning) Blockquote */
        blockquote.let-op {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-left-color: #ff9800;
            color: #e65100;
            box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
        }
        
        blockquote.let-op::before {
            content: '⚠️';
            position: absolute;
            top: 18px;
            left: 20px;
            font-size: 20px;
        }
        
        blockquote.let-op p {
            padding-left: 32px;
        }
        
        /* Expert Blockquote */
        blockquote.expert {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-left-color: var(--secondary-color);
            color: #1b5e20;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
        }
        
        blockquote.expert::before {
            content: '💬';
            position: absolute;
            top: 18px;
            left: 20px;
            font-size: 20px;
        }
        
        blockquote.expert p {
            padding-left: 32px;
        }
        
        blockquote.expert p:first-child {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        blockquote.expert .expert-rating {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(27, 94, 32, 0.2);
            font-weight: 700;
            font-size: 14px;
            color: #2e7d32;
        }
        
        blockquote.expert-note {
            background: var(--primary-color);
            border: none;
            border-radius: 8px;
            padding: 24px;
            margin: 30px 0;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .expert-avatar {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .expert-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .expert-content {
            flex: 1;
            min-width: 0;
        }
        
        .expert-content p {
            color: var(--white);
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 12px 0;
            font-style: normal;
        }
        
        .expert-content cite {
            color: #ffa726;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            display: block;
        }
        
        @media (max-width: 767px) {
            blockquote.expert-note {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
                gap: 16px;
            }
            
            .expert-avatar {
                width: 56px;
                height: 56px;
            }
            
            .expert-content p {
                font-size: 15px;
            }
            
            .expert-content cite {
                font-size: 13px;
            }
        }
        
        @media (max-width: 480px) {
            blockquote.expert-note {
                padding: 16px;
                gap: 12px;
            }
            
            .expert-content p {
                font-size: 14px;
                margin-bottom: 10px;
            }
        }
        
        /* === REASONS GRID === */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }
        
        .reason-card {
            background: var(--white);
            border-radius: 8px;
            border: 2px solid;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .reason-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }
        
        .reason-card-header {
            padding: 18px 20px;
            border-bottom: 2px solid;
        }
        
        .reason-card-title {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            text-transform: none;
            line-height: 1.3;
            font-family: var(--font-primary);
        }
        
        .reason-card-body {
            padding: 20px;
            flex: 1;
        }
        
        .reason-card-body p {
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .reason-card-body ul,
        .reason-card-body ol {
            margin: 0;
            padding-left: 20px;
            list-style-position: outside;
        }
        
        .reason-card-body li {
            margin-bottom: 10px;
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-color);
        }
        
        .reason-card-footer {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            font-weight: 600;
            font-size: 14px;
        }
        
        /* Positive Card (Green) */
        .reason-card-positive {
            border-color: #4caf50;
        }
        
        .reason-card-positive .reason-card-header {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            border-bottom-color: #4caf50;
        }
        
        .reason-card-positive .reason-card-title {
            color: #1b5e20;
        }
        
        /* Warning Card (Orange) */
        .reason-card-warning {
            border-color: #ff9800;
        }
        
        .reason-card-warning .reason-card-header {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-bottom-color: #ff9800;
        }
        
        .reason-card-warning .reason-card-title {
            color: #e65100;
        }
        
        /* Info Card (Blue) */
        .reason-card-info {
            border-color: #2196f3;
        }
        
        .reason-card-info .reason-card-header {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border-bottom-color: #2196f3;
        }
        
        .reason-card-info .reason-card-title {
            color: #0d47a1;
        }
        
        @media (max-width: 768px) {
            .reasons-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        /* === POSITION CARDS === */
        .position-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 25px 0;
        }
        
        .position-card {
            display: flex;
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s, transform 0.3s;
        }
        
        .position-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }
        
        .position-card-label {
            min-width: 140px;
            max-width: 140px;
            padding: 20px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            border-right: 2px solid var(--border-gray);
            font-weight: 700;
            font-size: 16px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            font-family: var(--font-primary);
        }
        
        .position-card-content {
            flex: 1;
            padding: 20px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-color);
            display: flex;
            align-items: center;
        }
        
        @media (max-width: 600px) {
            .position-card {
                flex-direction: column;
            }
            
            .position-card-label {
                min-width: 100%;
                max-width: 100%;
                border-right: none;
                border-bottom: 2px solid var(--border-gray);
            }
        }
        
        /* === INFO BLOCKS GRID === */
        .info-blocks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin: 25px 0;
        }
        
        .info-block {
            background: var(--white);
            border: 2px solid var(--border-gray);
            border-radius: 6px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.3s, transform 0.3s;
        }
        
        .info-block:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .info-block-title {
            margin: 0 0 15px 0;
            font-size: 16px;
            font-weight: 600;
            font-family: var(--font-primary);
            color: var(--primary-color);
            line-height: 1.3;
        }
        
        .info-block ul {
            margin: 0;
            padding-left: 20px;
            list-style-position: outside;
        }
        
        .info-block li {
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-color);
        }
        
        .info-block ol {
            margin: 0;
            padding-left: 0;
            list-style: none;
            counter-reset: info-list-counter;
        }
        
        .info-block ol > li {
            counter-increment: info-list-counter;
            position: relative;
            padding-left: 30px;
        }
        
        .info-block ol > li::before {
            content: counter(info-list-counter) '.';
            position: absolute;
            left: 0;
            font-weight: 700;
            font-size: 16px;
            line-height: 1.6;
            color: var(--secondary-color);
        }
        
        .info-block ol ul li {
            counter-increment: none;
            padding-left: 0;
        }
        
        .info-block ol ul li::before {
            content: none;
        }
        
        .grid2 {
            grid-template-columns: repeat(2, 1fr);
        }
        .grid4 {
            grid-template-columns: repeat(4, 1fr);
        }
        
        @media (max-width: 1024px) {
            .info-blocks-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .info-blocks-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        /* === 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-cons-title {
            margin: 0 0 15px 0;
            font-size: 18px;
            font-weight: 700;
            font-family: var(--font-primary);
            line-height: 1.3;
        }
        
        .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;
        }
        
        /* === 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-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;
}

.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 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(--white);
        }
        
        /* Archive column specific styles */
        .footer-archive ul {
            column-count: 2;
            column-gap: 20px;
        }
        
        .footer-archive li {
            margin-bottom: 8px;
            break-inside: avoid;
        }
        
        .footer-archive a {
            font-size: 13px;
        }
        
        .footer-archive h3 {
            margin-bottom: 12px;
            font-size: 16px;
        }
        
        .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;
            }
            
            .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;
            }
            
            .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;
}

/* Casino Offers Section */
.casino-offers-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.offers-grid {
    display: flex;
    flex-direction: column;
    counter-reset: casino-counter 0;
    gap: 8px;
}

.casino-offer-item {
    position: relative;
    display: grid;
    align-items: center;
    padding-left: 46px;
    counter-increment: casino-counter 1;
    border-radius: 4px;
    background-color: var(--primary-color);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.24), 0 4px 16px 0 rgba(0, 0, 0, 0.36);
    gap: 16px;
    grid-template-areas: 'logo rating main';
    grid-template-columns: 187px 162px auto;
    grid-template-rows: 1fr;
    transition: transform 0.2s, box-shadow 0.2s;
}

.casino-offer-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 8px 20px 0 rgba(0, 0, 0, 0.4);
}

.casino-offer-item::before {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    content: counter(casino-counter);
    color: var(--white);
    border-radius: 4px 2px 2px 4px;
    background: var(--dark-gray);
}

.casino-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 187px;
    height: 90px;
    grid-area: logo;
}

.casino-brand-logo img {
    width: 127px;
    height: 52px;
    object-fit: contain;
}

.casino-score-block {
    display: flex;
    align-items: center;
    gap: 16px;
    grid-area: rating;
}

.score-value {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    text-align: center;
    color: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 2px;
    background: var(--dark-gray);
}

.score-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.star-rating-visual img {
    height: 18px;
}

.casino-brand-title {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--white);
}

.casino-offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px;
    padding: 16px 20px;
    background: var(--dark-gray);
    gap: 20px;
    grid-area: main;
    border-radius: 4px;
}

.bonus-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: var(--white);
    flex: 0 0 200px;
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--white);
    flex: 1 1 auto;
    min-width: 0;
}

.casino-features li {
    padding: 2px 0;
    padding-left: 16px;
    position: relative;
    border: none;
}

.casino-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 13px;
}

.claim-bonus-button {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 800;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    min-width: 160px;
    height: 42px;
    flex-shrink: 0;
    text-align: center;
    color: var(--white) !important;
    border-radius: 8px;
    background: var(--secondary-color);
    text-decoration: none;
    transition: background 0.3s;
}

.claim-bonus-button:hover {
    background: #e55a00;
    opacity: 1;
}

.claim-bonus-button::before {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M11.4552 1.90791L3.12187 11.9079H10.6219L9.78854 18.5746L18.1219 8.57458H10.6219L11.4552 1.90791Z' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7207 1.29638C11.9921 1.41423 12.1534 1.69694 12.1167 1.9906L11.3771 7.90792H18.1219C18.3806 7.90792 18.6159 8.05756 18.7256 8.29181C18.8353 8.52607 18.7996 8.80265 18.634 9.00137L10.3007 19.0014C10.1112 19.2287 9.79456 19.304 9.52308 19.1861C9.2516 19.0683 9.09031 18.7856 9.12702 18.4919L9.86669 12.5746H3.12187C2.8632 12.5746 2.62787 12.4249 2.51815 12.1907C2.40843 11.9564 2.44413 11.6798 2.60973 11.4811L10.9431 1.48113C11.1325 1.25377 11.4492 1.17853 11.7207 1.29638ZM4.54524 11.2412H10.6219C10.8131 11.2412 10.9951 11.3234 11.1217 11.4667C11.2482 11.6101 11.3071 11.8009 11.2834 11.9906L10.7321 16.4009L16.6985 9.24125H10.6219C10.4307 9.24125 10.2486 9.15914 10.1221 9.01578C9.99554 8.87243 9.93664 8.68164 9.96036 8.49189L10.5116 4.08155L4.54524 11.2412Z' fill='white'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .offers-grid {
        gap: 16px;
    }
    
    .casino-offer-item {
        padding-top: 8px;
        padding-left: 0;
        gap: 8px 16px;
        grid-template-areas: 'logo rating' 'main main';
        grid-template-columns: 176px auto;
    }
    
    .casino-offer-item::before {
        top: 0;
        width: 30px;
        height: 22px;
        border-radius: 4px 2px 2px;
    }
    
    .casino-brand-logo {
        width: 176px;
        height: 70px;
        padding-left: 31px;
    }
    
    .casino-brand-logo img {
        width: 127px;
        height: 52px;
    }
    
    .casino-offer-content {
        flex-direction: column;
        align-items: center;
        margin: 8px;
        padding: 16px;
        gap: 12px;
    }
    
    .bonus-description {
        font-size: 16px;
        line-height: 20px;
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .casino-features {
        font-size: 12px;
        width: 100%;
    }
    
    .casino-features li {
        padding: 2px 0;
        padding-left: 16px;
    }
    
    .claim-bonus-button {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .casino-score-block {
        gap: 12px;
    }
    
    .score-value {
        font-size: 16px;
        width: 34px;
        min-width: 34px;
        height: 34px;
    }
    
    .star-rating-visual img {
        height: 16px;
    }
    
    .casino-brand-title {
        font-size: 10px;
    }
    
    .casino-offer-content {
        flex-direction: column;
        margin: 8px;
        padding: 16px 24px;
        gap: 12px;
    }
    
    .bonus-description {
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        max-width: 100%;
    }
    
    .casino-features {
        font-size: 12px;
        max-width: 100%;
    }
    
    .casino-features li {
        padding: 3px 0;
        padding-left: 16px;
    }
    
    .claim-bonus-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 599px) {
    .claim-bonus-button {
        font-size: 15px;
        padding: 12px 20px;
        height: 42px;
    }
    
    .casino-offer-content {
        padding: 12px;
        gap: 10px;
    }
    
    .bonus-description {
        font-size: 15px;
        line-height: 19px;
    }
    
    .casino-features {
        font-size: 11px;
    }
}

/* === TABLE OF CONTENTS (TOC) === */
.toc-section {
    background: #f5f5f5;
    padding: 20px 0;
}

.toc-wrapper {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.toc-toggle {
    width: 100%;
    background: #f5f5f5;
    color: var(--text-color);
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.toc-toggle:hover {
    background: #ebebeb;
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toc-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--text-color);
}

.toc-toggle[aria-expanded="true"] .toc-icon {
    transform: rotate(180deg);
}

.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    background: #f5f5f5;
}

.toc-content[aria-hidden="false"] {
    max-height: 2000px;
    padding: 24px;
    border-top: 1px solid #e0e0e0;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 0!important;

}

.toc-list li::before {
    display: none;
}

.toc-list a {
    display: block;
    padding: 12px 16px;
    color: #000 !important;
    text-decoration: none !important;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    font-size: 15px;
    line-height: 1.4;
}

.toc-list a:hover {
    color: #000 !important;
    background: #fafafa;
    border-color: var(--secondary-color);
    transform: translateX(4px);
    text-decoration: none !important;
}

.toc-list a:active {
    transform: translateX(2px);
}

/* Responsive TOC */
@media (max-width: 1024px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }
}

@media (max-width: 767px) {
    .toc-toggle {
        font-size: 18px;
        padding: 16px 20px;
    }
    
    .toc-content[aria-hidden="false"] {
        padding: 20px;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .toc-list a {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .toc-toggle {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .toc-title {
        gap: 8px;
    }
}
