        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f5f0;
            padding-bottom: 50px;
        }
        .navbar {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            padding: 15px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffeb3b;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #2196f3;
            color: white;
            margin-right: 10px;
        }
        .btn-download:hover {
            background-color: #1976d2;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #4caf50;
            color: white;
        }
        .btn-login:hover {
            background-color: #388e3c;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            cursor: pointer;
        }
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 30px;
        }
        h1 {
            font-size: 42px;
            color: #d84315;
            margin: 40px 0 25px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 32px;
            color: #e64a19;
            margin: 50px 0 20px;
            border-bottom: 3px solid #ffccbc;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 24px;
            color: #ff7043;
            margin: 35px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            color: #424242;
            text-align: justify;
        }
        strong {
            color: #d84315;
        }
        .game-img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .intro-section {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .feature-box {
            background-color: #fff8e1;
            border-left: 5px solid #ffb74d;
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .feature-box h3 {
            margin-top: 0;
            color: #f57c00;
        }
        .festival-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .festival-card {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .festival-card:hover {
            transform: translateY(-5px);
        }
        .festival-card h3 {
            color: #e64a19;
            text-align: center;
            margin-bottom: 15px;
        }
        .footer {
            background-color: #263238;
            color: white;
            padding: 60px 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-section h3 {
            color: #ffccbc;
            margin-bottom: 25px;
            font-size: 22px;
            border-bottom: 2px solid #ff7043;
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffeb3b;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 14px;
            color: #bdbdbd;
        }
        .daman-recommend {
            background: linear-gradient(135deg, #66bb6a, #43a047);
            color: white;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            text-align: center;
            box-shadow: 0 5px 20px rgba(72,187,120,0.3);
        }
        .daman-recommend h2 {
            color: white;
            border-bottom: 3px solid #81c784;
            margin-bottom: 25px;
        }
        .daman-recommend p {
            color: white;
            font-size: 19px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                right: 0;
                top: 80px;
                height: calc(100vh - 80px);
                background: linear-gradient(135deg, #ff7e5f, #feb47b);
                flex-direction: column;
                align-items: center;
                width: 50%;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
                padding-top: 50px;
            }
            .nav-links li {
                margin: 20px 0;
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                transform: translateX(0);
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            .logo {
                font-size: 24px;
            }
            .nav-links {
                width: 70%;
            }
            .container {
                padding: 20px 15px;
            }
            .intro-section {
                padding: 25px;
            }
            h1 {
                font-size: 32px;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 26px;
                margin: 40px 0 15px;
            }
            .btn {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
        @media (max-width: 576px) {
            .nav-links {
                width: 100%;
            }
            .navbar-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            .btn-download {
                margin-right: 0;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            p {
                font-size: 16px;
            }
            .daman-recommend {
                padding: 25px 15px;
            }
            .footer {
                padding: 40px 15px;
            }
        }
