        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            padding-bottom: 50px;
        }
        .navbar {
            background-color: #e63946;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #ffb703;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #ffb703;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: white;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #023e8a;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s;
            margin: 10px 5px;
        }
        .btn:hover {
            background-color: #03045e;
        }
        .btn-download {
            background-color: #2a9d8f;
        }
        .btn-download:hover {
            background-color: #264653;
        }
        .btn-login {
            background-color: #e9c46a;
            color: #333;
        }
        .btn-login:hover {
            background-color: #f4a261;
        }
        h1 {
            font-size: 2.5rem;
            color: #e63946;
            margin: 30px 0 20px;
            border-bottom: 3px solid #ffb703;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 2rem;
            color: #023e8a;
            margin: 25px 0 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #2a9d8f;
            margin: 20px 0 10px;
        }
        .intro {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .content-section {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        p {
            margin: 10px 0;
            font-size: 1.05rem;
            text-align: justify;
        }
        ul, ol {
            margin: 15px 0 15px 30px;
        }
        li {
            margin: 8px 0;
        }
        strong {
            color: #e63946;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .highlight {
            background-color: #fff3cd;
            border-left: 5px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        .stats-table th, .stats-table td {
            padding: 12px 15px;
            border: 1px solid #ddd;
            text-align: left;
        }
        .stats-table th {
            background-color: #e63946;
            color: white;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 40px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffb703;
        }
        .footer-section a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin: 8px 0;
            transition: color 0.3s;
        }
        .footer-section a:hover {
            color: #ffb703;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #555;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #e63946;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        .para-space {
            margin-bottom: 15px;
        }
        .emoji {
            font-size: 1.2rem;
            margin: 0 5px;
        }
        .tag {
            display: inline-block;
            padding: 5px 10px;
            background-color: #e9ecef;
            border-radius: 20px;
            margin: 5px 5px 5px 0;
            text-decoration: none;
            color: #023e8a;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #dee2e6;
        }
