        /* Reset and Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary-color: #e11d48;
            --secondary-color: #be123c;
            --accent-color: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --bg-white: #ffffff;
            --border-color: #e5e7eb;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
        }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        a { text-decoration: none; color: var(--primary-color); transition: color 0.3s ease; }
        a:hover { color: var(--secondary-color); }
        img { max-width: 100%; height: auto; display: block; }

        /* Header */
        .header {
            background-color: var(--bg-white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 700; color: var(--primary-color); }
        .logo img { width: 40px; height: 40px; border-radius: 8px; }
        .logo-text { color: var(--text-dark); }
        .nav-menu { position: relative; }
        .mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
        .mobile-menu-toggle span { width: 25px; height: 3px; background-color: var(--text-dark); border-radius: 3px; transition: all 0.3s ease; }
        .nav-list { display: flex; list-style: none; gap: 2rem; align-items: center; }
        .nav-list li a { color: var(--text-dark); font-weight: 500; padding: 0.5rem 0; display: inline-block; position: relative; }
        .nav-list li a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
        .nav-list li a:hover::after { width: 100%; }
        .nav-list li a:hover { color: var(--primary-color); }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(40, 10, 20, 0.88) 0%, rgba(120, 20, 55, 0.82) 40%, rgba(60, 12, 30, 0.90) 100%),
                        url('./bato-bg1.png') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            position: relative;
        }
        .hero-content { max-width: 900px; margin: 0 auto; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 1rem; font-weight: 800; text-shadow: 2px 2px 8px rgba(0,0,0,0.5); }
        .hero-subtitle { font-size: 1.5rem; margin-bottom: 1rem; opacity: 1; color: #ffd4dc; }
        .hero-notice { font-size: 1.1rem; margin-bottom: 2.5rem; background: rgba(225, 29, 72, 0.5); border: 1px solid rgba(255,255,255,0.25); padding: 0.75rem 1.5rem; border-radius: 8px; display: inline-block; color: #fff; }
        .hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
        .btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 1rem; transition: all 0.3s ease; box-shadow: var(--shadow-md); position: relative; overflow: hidden; border: none; cursor: pointer; }
        .btn-primary { background-color: white; color: var(--primary-color); }
        .btn-primary:hover { background-color: var(--bg-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
        .btn-secondary { background-color: rgba(255,255,255,0.2); color: white; backdrop-filter: blur(10px); }
        .btn-secondary:hover { background-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
        .icon { font-size: 1.2rem; }
        .copyright-hero { margin-top: 2rem; opacity: 0.7; font-size: 0.95rem; color: #f5c4cf; }

        /* Content Sections */
        section { padding: 4rem 0; }
        section h2 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--text-dark); text-align: center; font-weight: 700; }
        section h3 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--text-dark); font-weight: 600; }
        section p { font-size: 1.125rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1.5rem; }

        /* Intro Section */
        .intro-section { background-color: var(--bg-light); }
        .intro-content { max-width: 1000px; margin: 0 auto; }
        .intro-text { margin-bottom: 3rem; }
        .intro-image img { border-radius: 12px; box-shadow: var(--shadow-lg); margin: 0 auto; width: 100%; max-height: 450px; object-fit: cover; }

        /* Reason Section */
        .reason-section { background-color: var(--bg-white); }
        .reason-content { max-width: 1000px; margin: 0 auto; }
        .problem-list { margin: 1.5rem 0; padding-left: 2rem; }
        .problem-list li { margin-bottom: 0.75rem; color: var(--text-light); font-size: 1.125rem; }
        .highlight { font-weight: 600; color: var(--text-dark); }
        .mission-statement { font-size: 1.25rem; font-weight: 600; color: var(--primary-color); padding: 1.5rem; background-color: var(--bg-light); border-radius: 8px; border-left: 4px solid var(--primary-color); margin: 2rem 0; }
        .reason-image { margin-top: 3rem; }
        .reason-image img { border-radius: 12px; box-shadow: var(--shadow-lg); margin: 0 auto; width: 100%; max-height: 450px; object-fit: cover; }

        /* Mission Section */
        .mission-section { background-color: var(--bg-light); }
        .mission-content { max-width: 1000px; margin: 0 auto; }
        .mission-intro { text-align: center; font-size: 1.2rem; margin-bottom: 2rem; }
        .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
        .value-card { background-color: var(--bg-white); padding: 2rem; border-radius: 12px; box-shadow: var(--shadow-md); transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
        .value-icon { font-size: 3rem; margin-bottom: 1rem; }
        .value-card h4 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-dark); }
        .value-card p { font-size: 1rem; margin-bottom: 0; }
        .mission-conclusion, .mission-final { text-align: center; font-weight: 500; color: var(--text-dark); }

        /* Related Searches Section */
        .related-section { background-color: var(--bg-white); }
        .related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
        .related-card { background: var(--bg-light); border: 2px solid var(--border-color); border-radius: 12px; padding: 1.5rem; transition: all 0.3s ease; }
        .related-card:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
        .related-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--primary-color); text-align: left; }
        .related-card p { font-size: 0.95rem; margin-bottom: 0; }
        .related-card .tag { display: inline-block; background: var(--primary-color); color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; margin-top: 0.75rem; }

        /* Popular Series Section */
        .popular-section { background-color: var(--bg-light); }
        .popular-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
        .popular-card { background: var(--bg-white); border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow-md); transition: all 0.3s ease; text-align: center; }
        .popular-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
        .popular-card .rank { font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.5rem; }
        .popular-card h4 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--text-dark); }
        .popular-card .genre-tag { font-size: 0.85rem; color: var(--primary-color); font-weight: 600; }
        .popular-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }
        .popular-card .rating { font-size: 0.9rem; color: var(--accent-color); font-weight: 700; margin-top: 0.5rem; }

        /* FAQ Section */
        .faq-section { background-color: var(--bg-white); }
        .faq-list { max-width: 900px; margin: 0 auto 3rem; }
        .faq-item { background-color: var(--bg-light); padding: 1.5rem; border-radius: 8px; margin-bottom: 1.5rem; border-left: 4px solid var(--primary-color); }
        .faq-item h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-dark); text-align: left; }
        .faq-item p { margin-bottom: 0; font-size: 1rem; }
        .blog-banner { margin: 3rem 0; text-align: center; overflow: hidden; border-radius: 12px; }
        .blog-banner img { border-radius: 12px; box-shadow: var(--shadow-lg); margin: 0 auto; width: 100%; max-height: 400px; object-fit: cover; transition: transform 0.4s ease; }
        .blog-banner img:hover { transform: scale(1.02); }
        .platform-description { max-width: 900px; margin: 2rem auto 0; text-align: center; }
        .responsible { font-style: italic; margin-top: 2rem; }

        /* About Platform Section */
        .about-platform { background-color: var(--bg-light); text-align: center; }
        .platform-intro { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
        .platform-icon { width: 60px; height: 60px; border-radius: 12px; }
        .about-platform p { max-width: 900px; margin: 0 auto 1.5rem; }

        /* Footer */
        .footer { background-color: var(--text-dark); color: white; padding: 3rem 0 1.5rem; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
        .footer-column h3 { font-size: 1.25rem; margin-bottom: 1rem; color: white; }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 0.75rem; }
        .footer-column ul li a { color: rgba(255,255,255,0.8); transition: color 0.3s ease; }
        .footer-column ul li a:hover { color: white; }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
        .footer-bottom p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.95rem; }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle { display: flex; }
            .nav-list { position: absolute; top: 100%; right: 0; background-color: var(--bg-white); flex-direction: column; width: 250px; box-shadow: var(--shadow-lg); border-radius: 8px; padding: 1rem; gap: 0.5rem; display: none; }
            .nav-list.active { display: flex; }
            .nav-list li { width: 100%; }
            .nav-list li a { display: block; padding: 0.75rem; border-radius: 4px; }
            .nav-list li a:hover { background-color: var(--bg-light); }
            .hero h1 { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.25rem; }
            section h2 { font-size: 2rem; }
            .hero-buttons { flex-direction: column; align-items: stretch; }
            .btn { justify-content: center; }
            .values-grid { grid-template-columns: 1fr; }
            .related-grid { grid-template-columns: 1fr; }
            .popular-grid { grid-template-columns: 1fr 1fr; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .hero-subtitle { font-size: 1.125rem; }
            section h2 { font-size: 1.75rem; }
            section p { font-size: 1rem; }
            .container { padding: 0 15px; }
            .popular-grid { grid-template-columns: 1fr; }
        }

        /* Animations */
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        section { animation: fadeIn 0.6s ease-out; }
        html { scroll-behavior: smooth; }

        /* Blog Teaser Section */
        .blog-teaser { background-color: var(--bg-light); }
        .blog-teaser-intro { text-align: center; max-width: 780px; margin: 0 auto 2.5rem; color: var(--text-light); font-size: 1.1rem; }
        .blog-teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
        .blog-teaser-card { display: flex; flex-direction: column; gap: 0.75rem; background: var(--bg-white); border: 2px solid var(--border-color); border-radius: 12px; padding: 1.5rem; color: var(--text-dark); transition: all 0.3s ease; }
        .blog-teaser-card:hover { border-color: var(--primary-color); box-shadow: var(--shadow-lg); transform: translateY(-4px); color: var(--text-dark); }
        .blog-teaser-card h3 { font-size: 1.2rem; color: var(--text-dark); margin: 0; }
        .blog-teaser-card p { font-size: 0.95rem; color: var(--text-light); margin: 0; line-height: 1.6; }
        .blog-teaser-tag { display: inline-block; align-self: flex-start; background: var(--bg-light); color: var(--primary-color); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; }
        .blog-teaser-cta { margin-top: auto; color: var(--primary-color); font-weight: 600; font-size: 0.95rem; }
        .blog-teaser-card-cta { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-color: var(--primary-color); color: white; }
        .blog-teaser-card-cta h3, .blog-teaser-card-cta p, .blog-teaser-card-cta .blog-teaser-cta { color: white; }
        .blog-teaser-card-cta .blog-teaser-tag { background: rgba(255,255,255,0.2); color: white; }
        .blog-teaser-card-cta:hover { color: white; transform: translateY(-4px); box-shadow: var(--shadow-xl); }
        @media (max-width: 768px) { .blog-teaser-grid { grid-template-columns: 1fr; } }

