        * {
            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-color: #1a237e;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #ffd600;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover {
            color: #ffd600;
        }
        .daman-link {
            color: #ff6b00 !important;
            font-weight: 600;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        .btn-container {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        .btn {
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #2e7d32;
            color: white;
        }
        .btn-download:hover {
            background-color: #1b5e20;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: #ff6b00;
            color: white;
        }
        .btn-login:hover {
            background-color: #e65100;
            transform: translateY(-2px);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .page-header {
            text-align: center;
            margin: 40px 0;
        }
        .page-header h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        .page-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        .section {
            margin: 60px 0;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        .section h2 {
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd600;
        }
        .section h3 {
            font-size: 1.7rem;
            color: #ff6b00;
            margin: 30px 0 15px;
        }
        .section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .section ul, .section ol {
            margin: 20px 0 20px 40px;
        }
        .section li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: 700;
            color: #1a237e;
        }
        .cultural-note {
            background-color: #fff8e1;
            border-left: 4px solid #ffd600;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .cultural-note h4 {
            color: #e65100;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .image-caption {
            margin-top: 10px;
            font-size: 0.95rem;
            color: #666;
            font-style: italic;
        }
        .game-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        .game-table th, .game-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .game-table th {
            background-color: #f5f5f5;
            font-weight: 600;
            color: #1a237e;
        }
        .game-table tr:hover {
            background-color: #f9f9f9;
        }
        .footer {
            background-color: #1a237e;
            color: white;
            padding: 50px 20px;
            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 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffd600;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links li a:hover {
            color: #ffd600;
        }
        .recommendation {
            background-color: #283593;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .recommendation h4 {
            color: #ffd600;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #3949ab;
            font-size: 0.95rem;
            color: #bdbdbd;
        }
        @media (max-width: 900px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a237e;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .page-header h1 {
                font-size: 2.2rem;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.5rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 10px;
            }
        }
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }
            .section {
                padding: 20px;
            }
            .page-header h1 {
                font-size: 1.9rem;
            }
            .logo {
                font-size: 1.5rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }
