        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }
        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            padding-bottom: 40px;
        }
        header {
            background-color: #1a237e;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffd700;
            display: inline-block;
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
            float: right;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .nav-links li a:hover {
            background-color: #3949ab;
        }
        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: #ff9800;
            color: white;
            margin-right: 10px;
        }
        .btn-login {
            background-color: #4caf50;
            color: white;
        }
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            transition: all 0.3s;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            float: right;
        }
        main {
            padding: 30px 0;
        }
        .page-title {
            font-size: 2.2rem;
            color: #1a237e;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 10px;
        }
        .section {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .section-title {
            font-size: 1.8rem;
            color: #1a237e;
            margin: 20px 0 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .subsection-title {
            font-size: 1.4rem;
            color: #3949ab;
            margin: 18px 0 12px;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        strong {
            color: #1a237e;
            font-weight: 700;
        }
        ul {
            margin: 15px 0 15px 30px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 5px solid #ffd700;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .img-container {
            margin: 25px 0;
            text-align: center;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #1a237e;
            color: white;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ffd700;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section ul li a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-section ul li a:hover {
            color: #ffd700;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #e0e0e0;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #283593;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 20px 0;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .page-title {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .subsection-title {
                font-size: 1.2rem;
            }
        }
        .emoji {
            font-size: 1.2rem;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            color: #1a237e;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px 5px 5px 0;
            font-size: 0.9rem;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #bbdefb;
        }
        .game-type {
            display: inline-block;
            background-color: #ffecb3;
            color: #e65100;
            padding: 6px 12px;
            border-radius: 4px;
            margin: 5px 5px 5px 0;
            font-size: 0.95rem;
            text-decoration: none;
        }
        .game-type:hover {
            background-color: #ffe082;
        }
        .author-bio {
            background-color: #f5fafe;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .author-bio img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
        }
        .recommendation {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px solid #c8e6c9;
        }
        .recommendation h4 {
            color: #2e7d32;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
