  /* Base & Mobile-First Styles [citation:2][citation:5] */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe UI Emoji', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
            line-height: 1.7;
            color: #333;
            background: #fff;
            padding-top: 80px; /* Offset for fixed header */
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        /* Ensure images are responsive [citation:2] */
        .responsive-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        /* Typography */
        h1, h2, h3, h4 { 
            color: #d32f2f; 
            line-height: 1.3;
            margin-top: 1.5em;
        }
        h1 { font-size: 2.2rem; margin-top: 0; }
        h2 { font-size: 1.8rem; border-bottom: 3px solid #ffeb3b; padding-bottom: 0.5rem; display: inline-block; }
        h3 { font-size: 1.4rem; }
        @media (min-width: 768px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.2rem; }
            h3 { font-size: 1.6rem; }
        }
        
        p { margin-bottom: 1.2rem; }
        a { color: #d32f2f; text-decoration: none; transition: color 0.2s; }
        a:hover { color: #b71c1c; text-decoration: underline; }
        
        /* Buttons */
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #d32f2f, #b71c1c);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #b71c1c, #d32f2f);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
            text-decoration: none;
            color: white;
        }
        .btn-secondary {
            background: linear-gradient(135deg, #ffb300, #ff8f00);
            box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
        }
        .btn-secondary:hover {
            background: linear-gradient(135deg, #ff8f00, #ffb300);
            box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
        }
        
        /* Header & Logo */
        header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo-img {
            height: 50px;
            width: auto;
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: #d32f2f;
        }
        .logo-text span { color: #ffb300; }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            font-weight: 600;
            color: #555;
            padding: 5px 0;
            position: relative;
        }
        nav a:hover, nav a.active { color: #d32f2f; }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffb300;
            transition: width 0.3s;
        }
        nav a:hover::after { width: 100%; }
        /* Mobile Navigation */
        .menu-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: #d32f2f; }
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                padding: 20px;
                display: none;
            }
            nav ul.active { display: flex; }
            nav li { margin: 10px 0; }
        }
        
        /* Hero Section */
        .hero {
            padding: 60px 0;
            background: linear-gradient(135deg, rgba(255, 235, 59, 0.1) 0%, rgba(211, 47, 47, 0.05) 100%);
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 { margin-bottom: 20px; }
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
        }
        .badge {
            background: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .badge .icon { color: #ffb300; font-weight: bold; }
        
        /* Content Cards & Grids */
        .section { padding: 50px 0; }
        .cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 30px;
        }
        @media (min-width: 768px) {
            .cards-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 992px) {
            .cards-grid.three-col { grid-template-columns: repeat(3, 1fr); }
        }
        .card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-top: 5px solid #ffb300;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        /* Steps */
        .steps-container {
            counter-reset: step-counter;
            margin-top: 30px;
        }
        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            padding-left: 70px;
            position: relative;
        }
        .step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background: #d32f2f;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        /* Screenshots */
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .screenshot {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .screenshot:hover { transform: scale(1.03); }
        
        /* Review Cards */
        .review-card {
            background: #f9f9f9;
            border-left: 4px solid #ffb300;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .stars { color: #ffb300; font-weight: bold; }
        
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }
        .faq-question {
            font-weight: 700;
            color: #d32f2f;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        .faq-item.active .faq-question::after { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-top: 0;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding-top: 15px;
        }
        
        /* Age Gate Modal */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
        }
        .modal-content {
            background: white;
            max-width: 500px;
            width: 100%;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }
        .modal-content h2 { border: none; }
        
        /* Floating Download Button [citation:2] */
        .floating-download {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 100;
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        @media (max-width: 768px) {
            .floating-download {
                bottom: 15px;
                right: 15px;
                left: 15px;
                position: fixed;
                animation: none;
            }
            .floating-download .btn { width: 100%; }
        }
        
        /* Footer */
        footer {
            background: #1a1a1a;
            color: #ccc;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (min-width: 768px) {
            .footer-content { grid-template-columns: repeat(3, 1fr); }
        }
        .footer-links a { display: block; margin-bottom: 10px; color: #aaa; }
        .footer-links a:hover { color: #ffb300; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #888;
        }
        
        /* Utility */
        .text-center { text-align: center; }
        .mb-30 { margin-bottom: 30px; }
        .mt-40 { margin-top: 40px; }
        .highlight { background-color: #fff9e6; padding: 2px 5px; border-radius: 3px; }
        .disclaimer {
            background: #fff8e1;
            border-left: 4px solid #ffb300;
            padding: 20px;
            border-radius: 5px;
            margin: 25px 0;
            font-size: 0.95rem;
        }