* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f9ff;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #0f52ba;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ff9f1c;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            letter-spacing: 0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ff9f1c;
            border-bottom: 2px solid #ff9f1c;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        h1 {
            color: #0f52ba;
            font-size: 2.8rem;
            margin: 35px 0 25px;
            text-align: center;
            border-bottom: 4px solid #ff9f1c;
            padding-bottom: 12px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #0f52ba;
            font-size: 2.2rem;
            margin: 45px 0 22px;
            padding-left: 12px;
            border-left: 5px solid #ff9f1c;
        }
        h3 {
            color: #e63946;
            font-size: 1.7rem;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 8px;
        }
        h3::before {
            content: "🏆";
            position: absolute;
            left: -28px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 12px 12px 25px 0;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #c70039;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            border: 2px solid #e0e7ff;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #e63946;
        }
        .stats-box p {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stats-box p:last-child {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background-color: #ebf8ff;
            color: #0f52ba;
            padding: 6px 14px;
            border-radius: 25px;
            margin: 6px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #bfdbfe;
        }
        .tag:hover {
            background-color: #e63946;
            color: white;
            border-color: #e63946;
        }
        .game-type {
            display: inline-block;
            color: #e63946;
            text-decoration: none;
            margin: 0 12px 12px 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #0f52ba;
        }
        footer {
            background-color: #0f52ba;
            color: white;
            padding: 45px 0 25px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 35px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ff9f1c;
            position: relative;
            padding-bottom: 8px;
        }
        .footer-section h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #ff9f1c;
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 0.95rem;
            color: #e0e7ff;
        }
        .tip-box {
            background-color: #fff1e6;
            border-left: 4px solid #ff9f1c;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 4px;
        }
        .tip-box p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: #7c2d12;
        }
        .quote {
            font-style: italic;
            border-left: 3px solid #0f52ba;
            padding-left: 15px;
            margin: 25px 0;
            color: #4a5568;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #0f52ba;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
                padding-left: 8px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
                padding-left: 0;
            }
            h3::before {
                left: -24px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 10px 20px 0;
                width: 100%;
                text-align: center;
            }
            .stats-box {
                padding: 20px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
