        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #f0f8fb;
            color: #2d3748;
            padding-bottom: 50px;
        }
        .navbar {
            background-color: #9f7aea;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: #fbbf24;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #fbbf24;
        }
        .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: 12px 24px;
            background-color: #3182ce;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 10px 5px;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #2b6cb0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #10b981;
        }
        .btn-download:hover {
            background-color: #059669;
        }
        .btn-login {
            background-color: #f59e0b;
            color: #2d3748;
        }
        .btn-login:hover {
            background-color: #d97706;
        }
        h1 {
            font-size: 2.5rem;
            color: #9f7aea;
            margin: 30px 0 20px;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 10px;
            font-weight: 800;
        }
        h2 {
            font-size: 2rem;
            color: #3182ce;
            margin: 25px 0 15px;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            color: #10b981;
            margin: 20px 0 10px;
            font-weight: 600;
        }
        .intro {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .content-section {
            background-color: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        p {
            margin: 12px 0;
            font-size: 1.05rem;
            text-align: justify;
            color: #4a5568;
        }
        ul, ol {
            margin: 18px 0 18px 35px;
        }
        li {
            margin: 10px 0;
            font-size: 1.02rem;
            color: #4a5568;
        }
        strong {
            color: #9f7aea;
            font-weight: 600;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        .highlight {
            background-color: #fef7fb;
            border-left: 5px solid #9f7aea;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .stats-table th, .stats-table td {
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            text-align: left;
        }
        .stats-table th {
            background-color: #9f7aea;
            color: white;
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        .stats-table tr:hover {
            background-color: #f0f8fb;
        }
        footer {
            background-color: #2d3748;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .footer-section h4 {
            font-size: 1.25rem;
            margin-bottom: 20px;
            color: #fbbf24;
            font-weight: 600;
        }
        .footer-section a {
            color: #e2e8f0;
            text-decoration: none;
            display: block;
            margin: 10px 0;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #fbbf24;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #4a5568;
            color: #cbd5e0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background-color: #9f7aea;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .intro, .content-section {
                padding: 20px;
            }
        }
        .para-space {
            margin-bottom: 18px;
        }
        .emoji {
            font-size: 1.25rem;
            margin: 0 8px;
        }
        .tag {
            display: inline-block;
            padding: 8px 16px;
            background-color: #e8f4f8;
            border-radius: 25px;
            margin: 8px 8px 8px 0;
            text-decoration: none;
            color: #3182ce;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d1e7dd;
            color: #2b6cb0;
            transform: translateY(-1px);
        }
        img {
            loading: lazy;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f0f8fb;
        }
        ::-webkit-scrollbar-thumb {
            background: #9f7aea;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #805ad5;
        }
