* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #fff9f5;
            color: #333;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #ff6b6b, #ffdd59, #4ecdc4);
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffffff;
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 15px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        .nav-links a:hover {
            text-decoration: underline;
            transform: scale(1.05);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 2px solid white;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px 12px;
            border-radius: 5px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 20px;
        }
        h1 {
            color: #e63946;
            margin: 30px 0;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1d3557;
            margin: 40px 0 20px;
            font-size: 2rem;
            border-bottom: 3px dotted #ffb703;
            padding-bottom: 10px;
        }
        h3 {
            color: #219ebc;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 3px solid #fb8500;
        }
        p {
            margin: 15px 0;
            font-size: 1.1rem;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 20px 12px;
            background-color: #ffb703;
            color: #1d3557;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #fb8500;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #4cc9f0;
        }
        .btn-login:hover {
            background-color: #219ebc;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            margin: 25px 0;
            border-left: 5px solid #ff6b6b;
        }
        .tag {
            display: inline-block;
            background-color: #f1faee;
            padding: 8px 15px;
            margin: 8px;
            border-radius: 25px;
            text-decoration: none;
            color: #1d3557;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s;
            border: 1px solid #e0f7fa;
        }
        .tag:hover {
            background-color: #e0f7fa;
            transform: scale(1.05);
        }
        .footer {
            background: linear-gradient(135deg, #1d3557, #457b9d);
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types {
            margin: 25px 0;
        }
        .game-types h3 {
            color: #f1faee;
            border-left-color: #ffb703;
        }
        .game-types a {
            color: #a8dadc;
            text-decoration: none;
            margin-right: 18px;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        .game-types a:hover {
            color: #f1faee;
            text-decoration: underline;
        }
        .tags-section {
            margin: 30px 0;
        }
        .tags-section h3 {
            color: #f1faee;
            border-left-color: #ffb703;
        }
        .copyright {
            margin-top: 40px;
            font-size: 1rem;
            color: #a8dadc;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .tip-box {
            background-color: #fff0f3;
            border-left: 4px solid #ff6b6b;
            padding: 18px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box p {
            margin: 0;
            font-style: italic;
        }
        .quote {
            border-left: 4px solid #4ecdc4;
            padding: 15px 20px;
            margin: 25px 0;
            background-color: #f1faee;
            border-radius: 0 8px 8px 0;
        }
        .quote p {
            font-style: italic;
            color: #1d3557;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ff6b6b, #ffdd59);
                padding: 25px;
                border-top: 2px solid white;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 15px auto;
                width: 90%;
            }
        }
