* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #ff7043;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 24px;
            font-weight: 900;
            color: #ffffff;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #ffe0b2;
        }
        .hamburger {
            display: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn-download {
            background-color: #2e7d32;
            color: white;
            margin-right: 15px;
        }
        .btn-download:hover {
            background-color: #235e27;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
        }
        .btn-login {
            background-color: #1976d2;
            color: white;
        }
        .btn-login:hover {
            background-color: #1565c0;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
        }
        .btn-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        h1 {
            font-size: 36px;
            color: #d84315;
            margin: 40px 0 30px;
            text-align: center;
            font-weight: 900;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 28px;
            color: #e64a19;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffccbc;
        }
        h3 {
            font-size: 22px;
            color: #ff5722;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        strong {
            color: #d84315;
            font-weight: 700;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            margin: 30px auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }
        .section {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        ul, ol {
            margin: 20px 0 20px 30px;
            font-size: 17px;
        }
        li {
            margin-bottom: 12px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0;
        }
        .tag {
            background-color: #ffccbc;
            padding: 8px 18px;
            border-radius: 25px;
        }
        .tag a {
            color: #d84315;
            text-decoration: none;
            font-weight: 600;
        }
        .tag a:hover {
            color: #e64a19;
            text-decoration: underline;
        }
        .categories {
            margin: 30px 0;
        }
        .category-link {
            color: #1976d2;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 600;
        }
        .category-link:hover {
            color: #1565c0;
            text-decoration: underline;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 19px;
            margin-bottom: 20px;
            color: #ffccbc;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            margin-top: 30px;
            font-size: 15px;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #ff7043;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p, ul, ol {
                font-size: 16px;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
            }
        }
