* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #faf5ee;
            color: #2d3436;
            line-height: 1.9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .nav-container {
            background-color: #e63946;
            padding: 18px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 28px;
            font-weight: 900;
            color: #ffd166;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 17px;
        }
        .nav-links a:hover {
            background-color: #c1121f;
            transform: translateY(-1px);
        }
        .nav-links .daman-link {
            background-color: #ffd166;
            color: #e63946;
            font-weight: 700;
            padding: 12px 18px;
            border-radius: 8px;
        }
        .nav-links .daman-link:hover {
            background-color: #ffbe0b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: #ffffff;
            cursor: pointer;
            text-align: right;
            margin-bottom: 15px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 12px 8px;
            font-size: 18px;
            text-align: center;
        }
        .btn-download {
            background-color: #2a9d8f;
            color: #ffffff;
            box-shadow: 0 3px 10px rgba(42,157,143,0.2);
        }
        .btn-login {
            background-color: #264653;
            color: #ffffff;
            box-shadow: 0 3px 10px rgba(38,70,83,0.2);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }
        .btn-download:hover {
            background-color: #21867a;
        }
        .btn-login:hover {
            background-color: #1d3557;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            font-size: 42px;
            color: #e63946;
            margin: 40px 0 30px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #ffd166;
            padding-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 32px;
            color: #264653;
            margin: 50px 0 25px;
            font-weight: 800;
            display: flex;
            align-items: center;
            border-left: 5px solid #e63946;
            padding-left: 15px;
        }
        h2::before {
            content: "🚗";
            margin-right: 12px;
            font-size: 36px;
        }
        h3 {
            font-size: 26px;
            color: #e63946;
            margin: 35px 0 20px;
            font-weight: 700;
            position: relative;
            padding-bottom: 8px;
        }
        h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: #ffd166;
        }
        h4 {
            font-size: 22px;
            color: #2a9d8f;
            margin: 25px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #e63946;
            font-size: 19px;
        }
        .keyword {
            font-weight: 900;
            color: #264653;
            text-decoration: underline;
            text-underline-offset: 6px;
            text-decoration-thickness: 2px;
        }
        .img-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .img-container:hover img {
            transform: scale(1.02);
        }
        ul, ol {
            margin: 25px 0 25px 50px;
            font-size: 18px;
            line-height: 2.1;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 10px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-table th, .stats-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 2px solid #f1faee;
        }
        .stats-table th {
            background-color: #264653;
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.005);
            transition: all 0.2s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.09);
            border-left: 6px solid #2a9d8f;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .reviewer {
            font-weight: 700;
            color: #264653;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            font-size: 20px;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 10px;
            font-size: 24px;
        }
        .review-location {
            color: #6c757d;
            font-size: 17px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .review-location::before {
            content: "📍";
            margin-right: 8px;
        }
        .review-rating {
            color: #ffc107;
            margin-bottom: 12px;
            font-size: 20px;
        }
        .genre-section, .tag-section {
            margin: 60px 0 40px;
            background-color: #ffffff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
        }
        .genre-title, .tag-title {
            font-size: 24px;
            color: #264653;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .genre-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .genre-item, .tag-item {
            background-color: #f1faee;
            padding: 10px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        .genre-item:hover, .tag-item:hover {
            background-color: #e63946;
            transform: translateY(-2px);
        }
        .genre-item a, .tag-item a {
            color: #264653;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
        }
        .genre-item:hover a, .tag-item:hover a {
            color: #ffffff;
        }
        footer {
            background-color: #264653;
            color: #ffffff;
            padding: 60px 30px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer-note {
            font-size: 20px;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.8;
            color: #f1faee;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #ffd166;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            font-size: 17px;
            color: #a8dadc;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #457b9d;
        }
        .cta-section {
            text-align: center;
            margin: 60px 0;
            padding: 40px 20px;
            background-color: #fef7fb;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.05);
        }
        .cta-title {
            font-size: 28px;
            color: #e63946;
            margin-bottom: 30px;
            font-weight: 800;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 32px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 26px;
            }
            h2::before {
                font-size: 30px;
            }
            h3 {
                font-size: 22px;
            }
            h4 {
                font-size: 20px;
            }
            p, ul, ol {
                font-size: 17px;
            }
            .btn {
                width: 100%;
                margin: 10px 0;
                padding: 16px;
                font-size: 19px;
            }
            .stats-table th, .stats-table td {
                padding: 12px 15px;
                font-size: 16px;
            }
            .review-card {
                padding: 20px;
            }
            .img-container {
                margin: 30px 0;
            }
            ul, ol {
                margin-left: 30px;
            }
            .cta-title {
                font-size: 24px;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1faee;
        }
        ::-webkit-scrollbar-thumb {
            background: #e63946;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #c1121f;
        }
