* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #0a3d62, #3c6382);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #f8c291;
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1400px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f8c291;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0a3d62;
            font-size: 2.4rem;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #f8c291;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #0a3d62;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            border-left: 5px solid #e74c3c;
            padding-left: 15px;
        }
        h3 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #bdc3c7;
        }
        p {
            margin: 18px 0;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 15px 10px 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(231, 76, 60, 0.2);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(231, 76, 60, 0.3);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        ul {
            margin: 20px 0 20px 40px;
        }
        li {
            margin: 10px 0;
            font-size: 1.05rem;
        }
        .tag {
            display: inline-block;
            background-color: #ecf0f1;
            padding: 6px 14px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            color: #2c3e50;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #dfe6e9;
            transform: translateY(-2px);
        }
        .game-type {
            margin: 20px 0;
        }
        .game-type a {
            color: #2980b9;
            text-decoration: none;
            font-weight: 600;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        .game-type a:hover {
            color: #e74c3c;
        }
        .footer {
            background-color: #0a3d62;
            color: #ffffff;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer h3 {
            color: #f8c291;
            border-bottom: 1px solid #3c6382;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #b2bec3;
            padding-top: 20px;
            border-top: 1px solid #3c6382;
        }
        .copyright a {
            color: #f8c291;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0a3d62;
                padding: 25px 20px;
                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: 2rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px auto;
                width: 90%;
            }
            .image-container {
                margin: 25px 0;
            }
        }
