        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Verdana', 'Garamond', sans-serif;
            line-height: 1.8; 
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
            scroll-padding-top: 85px; 
        }
        body {
            background-color: #1a1a2e; 
            color: #f0f0f0;
            padding-bottom: 60px;
        }
        header {
            background-color: #16213e; 
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.4);
        }
        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            color: #e94560; 
            display: inline-block;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        .logo span {
            color: #ffffff;
            font-weight: 500;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
            float: right;
        }
        .nav-links li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .nav-links li a:hover {
            background-color: #e94560;
            color: #feca57; 
        }
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s ease;
        }
        .btn-download {
            background-color: #0abde3; 
            color: white;
            margin-right: 15px;
        }
        .btn-login {
            background-color: #27ae60; 
            color: white;
        }
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-4px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            float: right;
            color: #feca57;
        }
        main {
            padding: 40px 0;
        }
        .page-title {
            font-size: 2.5rem;
            color: #e94560;
            margin-bottom: 30px;
            border-bottom: 5px solid #feca57;
            padding-bottom: 15px;
            font-family: 'Georgia', serif;
        }
        .section {
            background-color: #252a41; 
            padding: 35px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .section-title {
            font-size: 2rem;
            color: #e94560;
            margin: 25px 0 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Georgia', serif;
        }
        .subsection-title {
            font-size: 1.6rem;
            color: #0abde3; 
            margin: 22px 0 16px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify; 
        }
        strong {
            color: #e94560;
            font-weight: 800;
        }
        ul {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        .highlight-box {
            background-color: #303650;
            border-left: 7px solid #e94560;
            padding: 22px;
            margin: 28px 0;
            border-radius: 0 10px 10px 0;
        }
        .img-container {
            margin: 35px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
            loading: lazy; 
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
        }
        th, td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid #444;
        }
        th {
            background-color: #e94560;
            color: white;
            font-weight: 700;
        }
        tr:hover {
            background-color: #303650;
        }
        footer {
            background-color: #16213e;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #feca57;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section ul li a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #feca57;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #e94560;
            font-size: 1rem;
            color: #ccc;
        }
        .game-categories {
            margin: 30px 0;
        }
        .category-link, .tag-link {
            display: inline-block;
            padding: 8px 16px;
            margin: 0 8px 8px 0;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .category-link {
            background-color: #0abde3;
            color: white;
        }
        .tag-link {
            background-color: #303650;
            color: #feca57;
        }
        .category-link:hover, .tag-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        .expert-note {
            background-color: #303650;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid #444;
        }
        .expert-note h4 {
            color: #feca57;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .recommendation {
            background-color: #2d4059;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px solid #0abde3;
        }
        .recommendation h4 {
            color: #0abde3;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1a1a2e;
                position: absolute;
                top: 88px;
                left: 0;
                padding: 30px 0;
                gap: 25px;
            }
            .nav-links.active {
                display: flex;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .page-title {
                font-size: 2.1rem;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .subsection-title {
                font-size: 1.4rem;
            }
            p, li {
                font-size: 1.05rem;
            }
        }
        .emoji {
            font-size: 1.4rem;
        }
        br {
            margin-bottom: 10px;
        }
        .section + .section {
            margin-top: 15px;
        }
