* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a5276;
            padding: 15px 0;
            color: white;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #f1c40f;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: 0.3s;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f1c40f;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #f1c40f;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #1a5276;
            margin: 30px 0;
            font-size: 32px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a5276;
            margin: 40px 0 20px;
            font-size: 26px;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            position: relative;
        }
        h2::before {
            content: '✦';
            color: #f1c40f;
            margin-right: 10px;
        }
        h3 {
            color: #1a5276;
            margin: 25px 0 15px;
            font-size: 22px;
            padding-left: 10px;
            border-left: 3px solid #f1c40f;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #1a5276;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #154360;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #ebf5fb;
            border-left: 5px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .highlight {
            font-weight: bold;
            color: #1a5276;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 4px;
        }
        .tag {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #1a5276;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            color: #1a5276;
            text-decoration: none;
            margin: 0 10px 10px 0;
            font-weight: bold;
            border-bottom: 1px dashed #3498db;
        }
        .game-type:hover {
            color: #154360;
            border-bottom: 1px solid #154360;
        }
        .quote-box {
            background-color: #f8f9fa;
            border-left: 4px solid #f1c40f;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            position: relative;
        }
        .quote-box::before {
            content: '"';
            font-size: 50px;
            color: rgba(241, 196, 15, 0.2);
            position: absolute;
            top: -10px;
            left: 10px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            margin-bottom: 30px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 14px;
            color: #bdc3c7;
        }
        .tips-box {
            background-color: #fef9e7;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border: 1px solid #fdebd0;
        }
        .tips-box h4 {
            color: #d35400;
            margin-bottom: 15px;
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a5276;
                padding: 20px;
                gap: 15px;
                z-index: 100;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
                text-align: left;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
