:root {
            --bg: #FFFFFF;
            --text: #111111;
            --accent-purple: #503AA8;
            --accent-yellow: #FFEE58;
            --accent-pink: #F6CFF4;
            --accent-gray: #686868;
            --light-bg: #F8F7FC;
            --card-shadow: 0 4px 20px rgba(80, 58, 168, 0.08);
            --border: #E8E5F0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.7;
            background: var(--bg);
            color: var(--text);
            letter-spacing: -0.1px;
        }

        /* Navigation */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            background: #110E20;
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 0.5rem 0;
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 90px;
            width: auto;
            display: block;
            transition: transform 0.3s ease, filter 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 12px rgba(80, 58, 168, 0.4));
        }

        .logo:hover .logo-text {
            color: #3f2d8a;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: 800;
            color: #E8E5F0;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(232,229,240,0.85);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent-yellow);
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            cursor: pointer;
        }

        .nav-dropdown > a::after {
            content: " ▾";
            font-size: 0.7rem;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 0px);
            left: 50%;
            transform: translateX(-50%);
            background: #1a1630;
            border: 1px solid #2A2545;
            border-radius: 10px;
            padding: 0.6rem 0;
            min-width: 220px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            z-index: 1001;
            max-height: 70vh;
            overflow-y: auto;
        }

        .nav-dropdown::before {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            height: 10px;
        }

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

        .dropdown-menu a {
            display: block;
            padding: 0.55rem 1.2rem;
            color: rgba(232,229,240,0.85);
            font-size: 0.88rem;
            white-space: nowrap;
            transition: background 0.15s, color 0.15s;
        }

        .dropdown-menu a:hover {
            background: rgba(123,95,212,0.2);
            color: var(--accent-yellow);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: rgba(232,229,240,0.85);
            transition: 0.3s;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, rgba(30,10,60,0.85) 0%, rgba(80,58,168,0.75) 50%, rgba(30,10,60,0.85) 100%), url('/assets/hero-bg.png') center/cover no-repeat;
            color: white;
            padding: 60px 0 50px;
            text-align: center;
        }

        .hero .container {
            max-width: 900px;
        }

        .hero-meta {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 1.5rem;
        }

        .hero-meta a {
            color: var(--accent-yellow);
            text-decoration: none;
        }

        .trusted-badge {
            display: inline-block;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .hero p {
            font-size: 1.15rem;
            line-height: 1.75;
            opacity: 0.92;
            max-width: 800px;
            margin: 0 auto;
        }

        .trust-block {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            padding: 10px 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        .trust-authors {
            display: flex;
            align-items: center;
        }

        .trust-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.4);
            object-fit: cover;
        }

        .trust-block a {
            color: var(--accent-yellow);
            text-decoration: none;
            font-weight: 600;
        }

        .trust-block a:hover {
            text-decoration: underline;
        }

        /* Stats Bar */
        .stats-bar {
            background: #1a1a2e;
            border-bottom: 1px solid #2a2a45;
            padding: 1.2rem 0;
        }

        .stats-bar-inner {
            max-width: 750px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--accent-purple);
            letter-spacing: -0.5px;
        }

        .stat-label {
            display: block;
            font-size: 0.72rem;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 2px;
        }

        /* Container */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .content-wrap {
            max-width: 900px;
            margin: 0 auto;
        }

        /* Section Styles */
        .section {
            padding: 50px 0;
        }

        .section-alt {
            background: #F8F7FC;
        }

        .section h2 {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: var(--text);
            letter-spacing: -0.5px;
        }

        .section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 2rem 0 0.8rem;
            color: var(--text);
        }

        .section h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 1.5rem 0 0.6rem;
            color: var(--accent-purple);
        }

        .section p {
            margin-bottom: 1.2rem;
            color: #333;
        }

        .section ul, .section ol {
            margin: 0.8rem 0 1.5rem 1.5rem;
            color: #333;
        }

        .section li {
            margin-bottom: 0.5rem;
        }

        /* Casino Top List */
        .toplist {
            margin: 40px 0;
        }

        .toplist-item {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin-bottom: 1rem;
            gap: 1.5rem;
            transition: box-shadow 0.3s, transform 0.15s;
            position: relative;
        }

        .toplist-item:hover {
            box-shadow: var(--card-shadow);
            transform: translateY(-2px);
        }

        .toplist-rank {
            background: var(--accent-purple);
            color: white;
            font-weight: 800;
            font-size: 0.85rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .toplist-logo-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex-shrink: 0;
            gap: 6px;
        }

        .toplist-logo {
            width: 120px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            padding: 8px;
            border: 1px solid var(--border);
        }

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

        .toplist-info {
            flex: 1;
            min-width: 0;
        }

        .toplist-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 0.2rem;
        }

        .toplist-bonus {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-purple);
        }

        .toplist-stars {
            display: flex;
            gap: 1px;
            font-size: 0;
        }

        .toplist-stars .star {
            color: #FFEE58;
            font-size: 14px;
        }

        .toplist-stars .star.half {
            position: relative;
            color: #ddd;
        }

        .toplist-stars .star.half::before {
            content: "★";
            position: absolute;
            left: 0;
            overflow: hidden;
            width: 50%;
            color: #FFEE58;
        }

        .toplist-stars .star.empty {
            color: #ddd;
        }

        .toplist-rating {
            text-align: center;
            flex-shrink: 0;
            min-width: 70px;
        }

        .toplist-score {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent-purple);
        }

        .toplist-score-label {
            font-size: 0.75rem;
            color: var(--accent-gray);
        }

        .toplist-cta {
            flex-shrink: 0;
        }

        .btn-play {
            display: inline-block;
            background: var(--accent-purple);
            color: white;
            padding: 14px 38px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background 0.3s, transform 0.15s;
        }

        .btn-play:hover {
            background: #3f2d8a;
            transform: translateY(-1px);
        }

        .toplist-badge {
            position: absolute;
            top: -8px;
            left: 20px;
            background: var(--accent-yellow);
            color: var(--text);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 2px 10px;
            border-radius: 4px;
        }

        /* Show More */
        .show-more-toggle {
            display: none;
        }

        .show-more-content {
            display: none;
        }

        .show-more-toggle:checked ~ .show-more-content {
            display: block;
        }

        .show-more-label {
            display: block;
            text-align: center;
            padding: 14px;
            background: #fff;
            border: 2px dashed var(--border);
            border-radius: 10px;
            color: var(--accent-purple);
            font-weight: 700;
            cursor: pointer;
            margin-top: 1rem;
            transition: background 0.3s;
        }

        .show-more-label:hover {
            background: #ede9f7;
        }

        .show-more-toggle:checked ~ .show-more-label {
            display: none;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0 2rem;
            font-size: 0.92rem;
        }

        .table-wrap {
            overflow-x: auto;
            border-radius: 10px;
            border: 1px solid var(--border);
            margin: 1.5rem 0 2rem;
        }

        .comparison-table th {
            background: var(--accent-purple);
            color: white;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .comparison-table td {
            padding: 0.85rem 1rem;
            border-bottom: 1px solid var(--border);
            vertical-align: middle;
        }

        .comparison-table tbody tr:nth-child(even) {
            background: #fff;
        }

        .comparison-table tbody tr:hover {
            background: #ede9f7;
        }

        /* Casino Review Cards */
        .review-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 2.5rem;
            overflow: hidden;
        }

        .review-header {
            background: linear-gradient(135deg, rgba(30,10,60,0.85) 0%, rgba(80,58,168,0.75) 50%, rgba(30,10,60,0.85) 100%), url('/assets/hero-bg.png') center/cover no-repeat;
            color: white;
            padding: 1.2rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .review-header-left {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .review-header h3 {
            color: white;
            margin: 0;
            font-size: 1.35rem;
        }

        .review-header .review-badge {
            background: rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.9);
            border: 1px solid rgba(255,255,255,0.25);
            padding: 3px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .review-header .btn-claim {
            display: inline-block;
            background: #10b981;
            color: white;
            padding: 10px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background 0.3s, transform 0.15s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .review-header .btn-claim:hover {
            background: #059669;
            transform: translateY(-1px);
        }

        .review-body {
            padding: 2rem;
        }

        .review-screenshot {
            width: 100%;
            border-radius: 10px;
            border: 1px solid var(--border);
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .review-pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin: 1.5rem 0;
        }

        .review-pros, .review-cons {
            padding: 1.2rem;
            border-radius: 10px;
        }

        .review-pros {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
        }

        .review-cons {
            background: #fef2f2;
            border: 1px solid #fecaca;
        }

        .review-pros h4, .review-cons h4 {
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.7rem;
        }

        .review-pros h4 {
            color: #16a34a;
        }

        .review-cons h4 {
            color: #dc2626;
        }

        .review-pros ul, .review-cons ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .review-pros li, .review-cons li {
            padding: 0.3rem 0;
            font-size: 0.9rem;
            color: #333;
            padding-left: 1.3rem;
            position: relative;
        }

        .review-pros li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #16a34a;
            font-weight: 700;
        }

        .review-cons li::before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: 700;
        }

        .review-bonus-breakdown {
            background: #F8F7FC;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1.2rem;
            margin: 1.2rem 0;
        }

        .review-bonus-breakdown h4 {
            color: var(--accent-purple);
            margin-bottom: 0.6rem;
        }

        .review-bonus-breakdown table {
            width: 100%;
            font-size: 0.88rem;
        }

        .review-bonus-breakdown td {
            padding: 0.4rem 0.6rem;
        }

        @media (max-width: 768px) {
            .review-pros-cons {
                grid-template-columns: 1fr;
            }

            .review-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 1.5rem;
                gap: 0.4rem;
            }

            .review-header-left {
                flex-direction: column;
                align-items: center;
                gap: 0.3rem;
            }
        }

        .review-body p {
            margin-bottom: 1rem;
            color: #333;
        }

        .review-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }

        .review-highlight {
            background: #fff;
            padding: 1rem;
            border-radius: 8px;
            border-left: 3px solid var(--accent-purple);
        }

        .review-highlight strong {
            display: block;
            font-size: 0.82rem;
            color: var(--accent-purple);
            text-transform: uppercase;
            letter-spacing: 0.3px;
            margin-bottom: 0.3rem;
        }

        .read-more-toggle {
            display: none;
        }

        .read-more-content {
            display: none;
        }

        .read-more-toggle:checked ~ .review-body .read-more-content {
            display: block;
        }

        .read-more-label {
            display: block;
            color: var(--accent-purple);
            font-weight: 700;
            cursor: pointer;
            text-align: center;
            padding: 0.8rem;
            border-top: 1px solid var(--border);
            transition: background 0.3s;
        }

        .read-more-label:hover {
            background: #fff;
        }

        .read-more-toggle:checked ~ .read-more-label::after {
            content: " ▲";
        }

        .read-more-toggle:not(:checked) ~ .read-more-label::after {
            content: " ▼";
        }

        /* Criteria Grid */
        .criteria-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .criteria-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            transition: box-shadow 0.3s;
        }

        .criteria-card:hover {
            box-shadow: var(--card-shadow);
        }

        .criteria-number {
            background: var(--accent-purple);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }

        .criteria-card h4 {
            margin: 0 0 0.6rem;
            color: var(--text);
        }

        .criteria-card p {
            font-size: 0.92rem;
            color: var(--accent-gray);
            margin: 0;
        }

        /* Pokie Types Grid */
        .pokie-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .pokie-type-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.8rem;
            text-align: center;
            transition: box-shadow 0.3s, transform 0.15s;
        }

        .pokie-type-card:hover {
            box-shadow: var(--card-shadow);
            transform: translateY(-3px);
        }

        .pokie-type-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
        }

        .pokie-type-card h4 {
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .pokie-type-card p {
            font-size: 0.9rem;
            color: var(--accent-gray);
        }

        /* FAQ */
        .faq-list {
            margin: 2rem 0;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 0.8rem;
            overflow: hidden;
        }

        .faq-toggle {
            display: none;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.1rem 1.3rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--text);
            background: #fff;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #fff;
        }

        .faq-question::after {
            content: "+";
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--accent-purple);
            transition: transform 0.3s;
        }

        .faq-toggle:checked + .faq-question::after {
            content: "−";
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-toggle:checked ~ .faq-answer {
            max-height: 500px;
        }

        .faq-answer-inner {
            padding: 0 1.3rem 1.2rem;
            color: #333;
            line-height: 1.7;
        }

        /* Footer */
        .footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer p {
            font-size: 0.88rem;
            line-height: 1.7;
            color: #999;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-yellow);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.82rem;
            color: #666;
        }

        .footer-bottom a {
            color: #888;
            text-decoration: none;
        }

        .disclaimer {
            background: #151527;
            border-radius: 8px;
            padding: 1.2rem;
            margin-top: 1.5rem;
            font-size: 0.82rem;
            color: #777;
            line-height: 1.7;
        }

        .age-badge {
            display: inline-block;
            background: #e74c3c;
            color: white;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-right: 6px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.9rem;
            }

            .toplist-item {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem;
                gap: 0.8rem;
            }

            .toplist-rank {
                position: absolute;
                top: 10px;
                left: 10px;
            }

            .toplist-badge {
                left: 50%;
                transform: translateX(-50%);
            }

            .toplist-logo-wrap {
                width: 100%;
            }

            .toplist-logo {
                width: 100px;
                height: 65px;
                margin: 0 auto;
            }

            .toplist-stars {
                justify-content: center;
            }

            .toplist-info {
                text-align: center;
            }

            .toplist-cta {
                width: 100%;
            }

            .btn-play {
                display: block;
                text-align: center;
                width: 100%;
            }

            .stats-bar-inner {
                gap: 0.5rem;
            }

            .stat-number {
                font-size: 1.1rem;
            }

            .stat-label {
                font-size: 0.6rem;
            }

            .trust-block {
                font-size: 0.72rem;
                padding: 8px 12px;
            }

            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-links.active {
                display: flex !important;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #110E20;
                padding: 1rem 1.5rem;
                border-bottom: 2px solid #503AA8;
                gap: 0;
                max-height: 85vh;
                overflow-y: auto;
                z-index: 1000;
            }

            .nav-links.active > li {
                border-bottom: 1px solid #2A2545;
            }

            .nav-links.active > li:last-child {
                border-bottom: none;
            }

            .nav-links.active > li > a {
                color: rgba(232,229,240,0.9);
                padding: 0.8rem 0;
                display: block;
                font-size: 1rem;
            }

            .nav-dropdown::before {
                display: none;
            }

            .dropdown-menu {
                position: static;
                transform: none;
                left: auto;
                background: rgba(26,22,48,0.6);
                border: none;
                border-radius: 0;
                box-shadow: none;
                min-width: 0;
                width: 100%;
                padding: 0.2rem 0;
                margin: 0;
                max-height: none;
                display: none;
            }

            .nav-dropdown:hover > .dropdown-menu {
                display: none;
            }

            .nav-dropdown.open > .dropdown-menu {
                display: block;
            }

            .dropdown-menu a {
                padding: 0.5rem 1.5rem;
                font-size: 0.85rem;
                white-space: normal;
                color: rgba(232,229,240,0.7);
            }

            .dropdown-menu a:hover {
                color: var(--accent-yellow);
                background: rgba(123,95,212,0.1);
            }

            .hero {
                padding: 30px 0 25px;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .trusted-badge {
                font-size: 0.75rem;
                padding: 4px 14px;
            }

            .logo img {
                height: 60px;
            }

            .logo-text {
                font-size: 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .review-highlights {
                grid-template-columns: 1fr;
            }

            .criteria-grid {
                grid-template-columns: 1fr;
            }
        }
    
        /* ATF-MOBILE-OPT */
        @media (max-width: 768px) {
            .hero { padding: 18px 0 12px; }
            .hero h1 { font-size: 1.15rem; margin-bottom: 0.4rem; line-height: 1.3; }
            .hero p { display: none; }
            .trust-block { display: none; }
            .trusted-badge { font-size: 0.75rem; padding: 4px 10px; margin-bottom: 6px; }
            .stats-bar { display: none; }
            .section > .container > .content-wrap > h2:first-child { font-size: 1.1rem; margin-bottom: 0.5rem; }
            .section > .container > .content-wrap > p:first-of-type { display: none; }
            .navbar { padding: 6px 0; }
            .nav-container { padding: 0 12px; }
            .logo-text { font-size: 0.7rem; }
        }
