        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', 'Tahoma', sans-serif;
            line-height: 1.75; 
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            background-color: #f8f5f0; 
            color: #2a2a2a;
            padding-bottom: 70px;
        }
        header {
            background: linear-gradient(135deg, #ff6b00 0%, #ffffff 50%, #008000 100%);
            color: #000080; 
            padding: 1.3rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.18);
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.12);
        }
        .logo span {
            color: #ff0000; 
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        .nav-links a {
            color: #000080;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.08rem;
            transition: all 0.35s ease;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ff6b00;
            border-bottom: 2px solid #008000;
        }
        .hamburger {
            display: none;
            font-size: 1.9rem;
            cursor: pointer;
            color: #000080;
        }
        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 0.7rem 0;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            text-align: center;
        }
        .btn-download {
            background-color: #ff6b00;
            color: white;
            border: 1px solid #e05a00;
        }
        .btn-login {
            background-color: #008000;
            color: white;
            border: 1px solid #006600;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .btn-download:hover {
            background-color: #e05a00;
        }
        .btn-login:hover {
            background-color: #006600;
        }
        .container {
            max-width: 1300px;
            margin: 3rem auto;
            padding: 0 2rem;
        }
        section {
            margin: 4rem 0;
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border-top: 5px solid #ff6b00;
        }
        h1 {
            font-size: 3rem;
            color: #000080;
            margin-bottom: 2.5rem;
            border-bottom: 4px solid #ff6b00;
            padding-bottom: 1rem;
            font-weight: 800;
        }
        h2 {
            font-size: 2.3rem;
            color: #008000;
            margin: 3rem 0 1.5rem;
            font-weight: 700;
            position: relative;
            padding-left: 1.2rem;
        }
        h2::before {
            content: "🏏";
            position: absolute;
            left: -0.8rem;
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.7rem;
            color: #ff6b00;
            margin: 2.2rem 0 1.2rem;
            font-weight: 700;
        }
        h4 {
            font-size: 1.4rem;
            color: #000080;
            margin: 1.8rem 0 1rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            max-width: 1000px;
            text-align: justify;
        }
        strong {
            color: #000080;
            font-weight: 700;
        }
        em {
            color: #008000;
            font-style: italic;
        }
        ul {
            margin: 1.5rem 0 1.5rem 3rem;
        }
        li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 12px;
            margin: 2.5rem 0;
            object-fit: cover;
            border: 4px solid #f8f5f0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            loading: lazy; 
        }
        .highlight-box {
            background-color: #fff9e6;
            border-left: 6px solid #ff6b00;
            padding: 2rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        .daman-recommendation {
            background-color: #e6ffe6;
            padding: 2.5rem;
            border-radius: 12px;
            margin: 3rem 0;
            border: 3px solid #008000;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 3rem 0;
        }
        .tag {
            background-color: #e6f0ff;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            text-decoration: none;
            color: #000080;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.25s ease;
        }
        .tag:hover {
            background-color: #ffe6cc;
            transform: scale(1.08);
        }
        .external-link {
            color: #008000;
            font-weight: 700;
            text-decoration: none;
            border-bottom: 1px dashed #008000;
        }
        .external-link:hover {
            text-decoration: none;
            border-bottom: 1px solid #008000;
        }
        footer {
            background-color: #000080;
            color: white;
            padding: 3rem;
            margin-top: 5rem;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-sections {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 3rem;
        }
        .footer-links {
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #ff6b00;
            text-decoration: none;
            font-size: 1.1rem;
        }
        .footer-links a:hover {
            text-decoration: underline;
            color: #ffcc99;
        }
        .game-categories {
            margin: 2rem 0;
        }
        .game-categories a {
            color: #ff6b00;
            text-decoration: none;
            margin-right: 1.5rem;
            font-size: 1.05rem;
        }
        .game-categories a:hover {
            text-decoration: underline;
        }
        .copyright {
            margin-top: 2rem;
            font-size: 1.05rem;
            color: #e6e6e6;
            border-top: 1px solid #1a1a99;
            padding-top: 2rem;
            text-align: center;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: white;
                padding: 2.5rem;
                gap: 2rem;
                box-shadow: 0 8px 20px rgba(0,0,0,0.15);
                border-bottom: 5px solid #ff6b00;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 1.5rem;
            }
            section {
                padding: 2rem 1.8rem;
                margin: 3rem 0;
            }
            .game-img {
                margin: 2rem 0;
            }
            .btn {
                padding: 0.9rem 1.8rem;
                width: 100%;
            }
            .tags-container {
                gap: 1rem;
            }
            .tag {
                padding: 0.7rem 1.2rem;
                font-size: 0.95rem;
            }
            .footer-sections {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-links {
                gap: 2rem;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            .btn, .tag, .nav-links a {
                transition: none;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f8f5f0;
        }
        ::-webkit-scrollbar-thumb {
            background: #ff6b00;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e05a00;
        }
