* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #3a3a3a;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background-color: #e07a5f;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffffff;
            font-size: 1.9rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 22px;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 7px 14px;
            border-radius: 6px;
            transition: background-color 0.3s ease;
        }
        nav a:hover {
            background-color: #c86447;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 25px;
        }
        main {
            max-width: 1250px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            color: #bc4749;
            font-size: 2.3rem;
            text-align: center;
            margin: 35px 0;
            padding-bottom: 15px;
            border-bottom: 3px solid #f2cc8f;
        }
        h2 {
            color: #bc4749;
            font-size: 1.9rem;
            margin: 30px 0 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f2cc8f;
        }
        h3 {
            color: #81b29a;
            font-size: 1.6rem;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f2cc8f;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.15rem;
        }
        .highlight {
            font-weight: 700;
            color: #e07a5f;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            margin: 35px 0;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            background-color: #3d405b;
            color: white;
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #282a3a;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.12);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .stats-box p {
            margin: 12px 0;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f2cc8f;
            color: #3a3a3a;
            padding: 7px 18px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e07a5f;
            color: white;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            background-color: #81b29a;
            color: white;
            padding: 7px 18px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: #5a8a74;
            transform: translateY(-2px);
        }
        footer {
            background-color: #3d405b;
            color: white;
            padding: 40px 25px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #f2cc8f;
            border-bottom: 1px solid #f2cc8f;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #5a5c7a;
            font-size: 1rem;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1.15rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                gap: 18px;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p, li {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 25px;
                min-width: 150px;
                font-size: 0.95rem;
            }
            .stats-box p {
                font-size: 1.05rem;
            }
        }
