:root {
            --primary: #E63946;
            --secondary: #FFB703;
            --accent: #023E8A;
            --text-dark: #1D3557;
            --text-light: #F8F9FA;
            --bg-light: #F1FAEE;
            --bg-dark: #0F172A;
            --shadow: 0 4px 12px rgba(0,0,0,0.15);
            --transition: all 0.3s ease-in-out;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            line-height: 1.8;
            color: var(--text-dark);
            background-color: var(--bg-light);
            padding-bottom: 6rem;
            word-spacing: 0.05em;
            letter-spacing: -0.01em;
        }
        header {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 1.2rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            font-size: 2.2rem;
            font-weight: 900;
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .nav-links a:hover {
            color: var(--secondary);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            font-size: 1.05rem;
            text-align: center;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--text-light);
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #c1121f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 57, 70, 0.3);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--bg-dark);
        }
        .btn-login:hover {
            background-color: #e6a800;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 183, 3, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--secondary);
        }
        .container {
            max-width: 1300px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        .intro-section {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
            border-top: 5px solid var(--primary);
        }
        .intro-section h1 {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 2rem;
            text-align: center;
            line-height: 1.3;
        }
        .intro-section .subtitle {
            font-size: 1.2rem;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 2.5rem;
            font-style: italic;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .intro-img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2.5rem 0;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        .intro-content p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            text-align: justify;
            line-height: 1.9;
        }
        .intro-content strong {
            color: var(--primary);
            font-weight: 600;
        }
        .key-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 8px;
        }
        .info-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--accent);
        }
        .info-card h4 {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        .info-card h4 svg {
            margin-right: 0.8rem;
        }
        .info-card p {
            font-size: 1.05rem;
            color: var(--text-dark);
        }
        section {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            margin-bottom: 4rem;
            box-shadow: var(--shadow);
        }
        section h2 {
            font-size: 2.4rem;
            color: var(--accent);
            margin-bottom: 2.5rem;
            padding-bottom: 1rem;
            border-bottom: 3px solid var(--secondary);
            display: flex;
            align-items: center;
        }
        section h2 span {
            margin-right: 1rem;
            color: var(--primary);
        }
        section h3 {
            font-size: 1.8rem;
            color: var(--text-dark);
            margin: 2.5rem 0 1.5rem;
            color: var(--accent);
            display: flex;
            align-items: center;
        }
        section h3::before {
            content: '🔥';
            margin-right: 1rem;
        }
        section h4 {
            font-size: 1.4rem;
            color: var(--primary);
            margin: 2rem 0 1rem;
        }
        section p {
            font-size: 1.1rem;
            margin-bottom: 1.8rem;
            text-align: justify;
            line-height: 1.8;
        }
        section ul {
            margin-left: 2.5rem;
            margin-bottom: 2rem;
        }
        section li {
            font-size: 1.08rem;
            margin-bottom: 1.2rem;
            line-height: 1.8;
        }
        .section-img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        }
        .grid-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        .grid-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        .grid-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .grid-card h4 {
            font-size: 1.4rem;
            color: var(--accent);
            margin-bottom: 1.2rem;
            text-align: center;
        }
        .testimonial-container {
            background-color: var(--bg-light);
            border-radius: 10px;
            padding: 2.5rem;
            margin: 3rem 0;
            border-left: 5px solid var(--primary);
        }
        .testimonial {
            font-style: italic;
            font-size: 1.15rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }
        .testimonial-author {
            font-weight: 600;
            color: var(--accent);
            font-size: 1.1rem;
            text-align: right;
        }
        .quote-mark {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.3;
            position: relative;
            top: 1rem;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 3rem auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: white;
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--primary);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--primary);
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--primary);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--primary) transparent transparent;
        }
        .right::after {
            left: -16px;
        }
        .timeline-content {
            padding: 2rem;
            background-color: white;
            position: relative;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        .timeline-content h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .timeline-content p {
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .bottom-section {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 4rem 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-top: 5rem;
        }
        .bottom-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .category-section h3,
        .tags-section h3,
        .recommendation-section h3 {
            font-size: 1.6rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(255, 183, 3, 0.3);
        }
        .category-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .category-links a {
            color: var(--text-light);
            background-color: rgba(230, 57, 70, 0.2);
            padding: 0.7rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.05rem;
        }
        .category-links a:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .tags-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
        }
        .tags-links a {
            color: var(--bg-dark);
            background-color: var(--secondary);
            padding: 0.6rem 1.1rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
        }
        .tags-links a:hover {
            background-color: #e6a800;
            transform: translateY(-2px);
        }
        .recommendation-content {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 8px;
        }
        .recommendation-content p {
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        .recommendation-content strong {
            color: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 1rem;
            color: #ccc;
        }
        .copyright a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .copyright a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        @media (max-width: 1024px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item::before {
                left: 60px;
                border: medium solid var(--primary);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--primary) transparent transparent;
            }
            .left::after, .right::after {
                left: 15px;
            }
            .right {
                left: 0%;
            }
            .intro-section h1 {
                font-size: 2.5rem;
            }
            section h2 {
                font-size: 2.1rem;
            }
            section h3 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: var(--bg-dark);
                padding: 2.5rem;
                gap: 2rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .btn-container {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
                width: 100%;
            }
            .btn-download {
                margin-right: 0;
                width: 100%;
            }
            .btn-login {
                width: 100%;
            }
            .intro-section {
                padding: 2rem;
            }
            .intro-section h1 {
                font-size: 2.2rem;
            }
            .intro-img, .section-img {
                height: 280px;
            }
            section {
                padding: 2rem;
            }
            section h2 {
                font-size: 1.9rem;
            }
            section h3 {
                font-size: 1.5rem;
            }
            .grid-layout {
                grid-template-columns: 1fr;
            }
            .key-info {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.7rem;
            }
            .logo span {
                font-size: 1.9rem;
            }
            .intro-section {
                padding: 1.5rem;
            }
            .intro-section h1 {
                font-size: 1.9rem;
            }
            .intro-section .subtitle {
                font-size: 1.05rem;
            }
            .intro-img, .section-img {
                height: 220px;
            }
            section {
                padding: 1.5rem;
            }
            section h2 {
                font-size: 1.7rem;
            }
            section h3 {
                font-size: 1.4rem;
            }
            .bottom-section {
                padding: 2.5rem 1.5rem;
            }
            .bottom-container {
                gap: 2rem;
            }
        }
        .text-highlight {
            background-color: rgba(255, 183, 3, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .callout {
            background-color: rgba(230, 57, 70, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2.5rem 0;
            border-left: 4px solid var(--primary);
        }
        .callout p {
            margin-bottom: 0;
            font-weight: 500;
        }
        .spacing {
            margin: 2rem 0;
        }
