* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .nav-container {
            background-color: #2c3e50;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #f1c40f;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 10px;
        }
        .logo span {
            color: #fff;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-links a:hover {
            background-color: #34495e;
        }
        .nav-links .daman-link {
            background-color: #f1c40f;
            color: #2c3e50;
            font-weight: 600;
        }
        .nav-links .daman-link:hover {
            background-color: #f39c12;
        }
        .hamburger {
            display: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 10px 5px;
        }
        .btn-download {
            background-color: #27ae60;
            color: #fff;
        }
        .btn-login {
            background-color: #3498db;
            color: #fff;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            font-size: 36px;
            color: #2c3e50;
            margin: 30px 0;
            text-align: center;
            font-weight: 800;
            border-bottom: 3px solid #f1c40f;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 28px;
            color: #2980b9;
            margin: 40px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "🏁";
            margin-right: 10px;
        }
        h3 {
            font-size: 22px;
            color: #e67e22;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 15px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #d35400;
        }
        .keyword {
            font-weight: 800;
            color: #2c3e50;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .img-container {
            margin: 30px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        ul, ol {
            margin: 20px 0 20px 40px;
            font-size: 18px;
        }
        li {
            margin-bottom: 10px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 2px solid #ddd;
        }
        .stats-table th {
            background-color: #34495e;
            color: #fff;
            font-weight: 600;
        }
        .stats-table tr:hover {
            background-color: #f1f1f1;
        }
        .review-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: 600;
            color: #2980b9;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 8px;
        }
        .review-location {
            color: #7f8c8d;
            font-size: 16px;
            margin-bottom: 10px;
        }
        .genre-section, .tag-section {
            margin: 40px 0;
        }
        .genre-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .genre-item, .tag-item {
            background-color: #ecf0f1;
            padding: 8px 15px;
            border-radius: 20px;
        }
        .genre-item a, .tag-item a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
        }
        .genre-item a:hover, .tag-item a:hover {
            color: #e67e22;
        }
        footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-note {
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
        }
        .copyright {
            text-align: center;
            font-size: 16px;
            color: #bdc3c7;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                text-align: right;
                margin-bottom: 10px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p, ul, ol {
                font-size: 16px;
            }
            .btn {
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
