* {
            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;
        }
        header {
            background-color: #3498db;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .hero {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 60px 20px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        .hero h1 {
            font-size: 40px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ffffff;
            color: #3498db;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin: 0 10px;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #ffd700;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .content-section {
            background-color: white;
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .content-section h2 {
            color: #3498db;
            font-size: 30px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #aed6f1;
            display: flex;
            align-items: center;
        }
        .content-section h2 span {
            margin-right: 10px;
        }
        .content-section h3 {
            color: #2980b9;
            font-size: 22px;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        .content-section h3 span {
            margin-right: 8px;
        }
        .content-section p {
            margin-bottom: 18px;
            font-size: 17px;
            line-height: 1.9;
        }
        .highlight {
            font-weight: bold;
            color: #3498db;
            text-decoration: underline dotted;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border: 5px solid #edf2f7;
        }
        .image-caption {
            margin-top: 12px;
            font-style: italic;
            color: #64748b;
            font-size: 15px;
        }
        .stats-box {
            background-color: #ebf5fb;
            border-left: 4px solid #3498db;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .stats-box p {
            margin-bottom: 12px;
            font-size: 17px;
        }
        .stats-box strong {
            color: #2980b9;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 25px 0;
        }
        .tag {
            background-color: #dbeafe;
            color: #2563eb;
            padding: 6px 18px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
            border: 1px solid #bfdbfe;
        }
        .tag:hover {
            background-color: #3498db;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 35px 0;
            padding: 15px;
            background-color: #ebf5fb;
            border-radius: 10px;
        }
        .game-type-nav a {
            color: #2980b9;
            text-decoration: none;
            margin-right: 25px;
            font-weight: 500;
            transition: all 0.3s;
            padding: 5px 0;
        }
        .game-type-nav a:hover {
            color: #3498db;
            border-bottom: 2px solid #3498db;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 19px;
            margin-bottom: 20px;
            color: #ffd700;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffd700;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            margin-top: 25px;
            font-size: 14px;
            color: #bdc3c7;
        }
        .quote-box {
            background-color: #fff8e1;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #ffc107;
            position: relative;
        }
        .quote-box p {
            font-style: italic;
            color: #5d4037;
            margin-bottom: 10px;
        }
        .quote-box .author {
            font-weight: bold;
            text-align: right;
            color: #3e2723;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #3498db;
                padding: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 30px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 85%;
            }
            .content-section {
                padding: 25px;
            }
            .content-section h2 {
                font-size: 25px;
            }
            .content-section h3 {
                font-size: 20px;
            }
            .game-type-nav a {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
