        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', sans-serif;
            line-height: 1.8;
            color: #333;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #FF9933; 
            --secondary: #006400; 
            --accent: #000080; 
            --light: #f9f9f9;
            --dark: #1a1a1a;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease-in-out;
        }
        body {
            background-color: var(--light);
            padding-bottom: 60px;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: var(--shadow);
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: white;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
            font-family: 'Arial Black', sans-serif;
        }
        .logo span {
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 35px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .main-nav li a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            padding: 12px 18px;
            border-radius: 8px;
            transition: var(--transition);
            font-size: 17px;
        }
        .main-nav li a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 34px;
            color: white;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0 25px;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .btn {
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 800;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 15px 10px;
            transition: var(--transition);
            font-size: 17px;
            text-align: center;
            min-width: 200px;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 5px 0 #000050;
        }
        .btn-login {
            background-color: var(--secondary);
            color: white;
            box-shadow: 0 5px 0 #004d00;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .btn:active {
            transform: translateY(2px);
            box-shadow: none;
        }
        .container {
            max-width: 1320px;
            margin: 45px auto;
            padding: 0 30px;
        }
        h1 {
            font-size: 46px;
            color: var(--dark);
            margin: 35px 0 25px;
            border-bottom: 5px solid var(--primary);
            padding-bottom: 20px;
            font-weight: 900;
            text-align: left;
        }
        h2 {
            font-size: 36px;
            color: var(--secondary);
            margin: 45px 0 25px;
            font-weight: 800;
            position: relative;
            padding-left: 20px;
        }
        h2::before {
            content: "▪";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 28px;
        }
        h3 {
            font-size: 28px;
            color: var(--accent);
            margin: 35px 0 20px;
            font-weight: 700;
        }
        p {
            margin: 20px 0;
            font-size: 18px;
            text-align: justify;
            padding: 0 10px;
            color: #444;
            line-height: 1.9;
        }
        strong {
            color: var(--secondary);
            font-weight: 800;
        }
        .highlight {
            background-color: #FFF9E6;
            padding: 6px 10px;
            border-radius: 6px;
            border-left: 4px solid var(--primary);
            font-weight: 600;
        }
        .icon-text {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow);
            border: 3px solid #eee;
            loading: lazy;
        }
        ul {
            margin: 30px 45px;
            list-style-type: "➤ ";
        }
        li {
            margin: 15px 0;
            font-size: 18px;
            padding-left: 12px;
        }
        .categories {
            margin: 45px 0;
            padding: 25px;
            background-color: #f0f8ff;
            border-radius: 12px;
            border: 1px solid #e6f7ff;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 35px 0;
            align-items: center;
        }
        .tag-link {
            background-color: var(--primary);
            color: white;
            padding: 12px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            transition: var(--transition);
            font-weight: 600;
        }
        .tag-link:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 30px 0;
        }
        .footer-text {
            color: #e0e0e0;
            text-align: center;
            margin-bottom: 35px;
        }
        .footer-text h3 {
            color: white;
            font-size: 30px;
            margin-bottom: 25px;
        }
        .copyright {
            text-align: center;
            margin-top: 35px;
            padding-top: 30px;
            border-top: 1px solid #444;
            font-size: 16px;
            color: #bbb;
        }
        .daman-reco {
            background-color: #e8f5e9;
            padding: 30px;
            border-radius: 12px;
            margin: 45px 0;
            border-left: 7px solid var(--accent);
            box-shadow: var(--shadow);
        }
        .daman-link {
            color: var(--accent);
            font-weight: 800;
            text-decoration: none;
            border-bottom: 2px dotted var(--accent);
        }
        .daman-link:hover {
            text-decoration: none;
            border-bottom: 2px solid var(--accent);
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 30px 0;
                display: none;
                box-shadow: 0 12px 20px rgba(0,0,0,0.15);
            }
            .main-nav.active {
                display: flex;
            }
            .main-nav li {
                text-align: center;
                margin: 15px 0;
                width: 100%;
            }
            .main-nav li a {
                display: block;
                width: 85%;
                margin: 0 auto;
                padding: 15px;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 28px;
            }
            h3 {
                font-size: 24px;
            }
            p {
                font-size: 17px;
            }
            .container {
                margin: 30px auto;
                padding: 0 20px;
            }
            .btn {
                width: 95%;
                margin: 12px auto;
                display: block;
            }
            .logo {
                font-size: 28px;
            }
        }
        img {
            loading: lazy;
            max-width: 100%;
        }
        .section {
            margin-bottom: 60px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }
        .last-section {
            border-bottom: none;
        }
        @media (prefers-reduced-motion: reduce) {
            * {
                transition: none !important;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
