* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 50%, #6d28d9 100%);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            color: #ffdd00;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
            font-family: 'Georgia', serif;
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd00;
            border-bottom: 2px solid #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #6d28d9;
            margin: 35px 0 25px;
            font-size: 42px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #6d28d9;
            margin: 45px 0 20px;
            font-size: 30px;
            border-left: 5px solid #ffdd00;
            padding-left: 15px;
        }
        h3 {
            color: #8b5cf6;
            margin: 30px 0 15px;
            font-size: 24px;
            padding-left: 10px;
            border-left: 3px solid #6d28d9;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #6d28d9;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #6d28d9;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            margin: 15px 10px 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #ffdd00;
            color: #6d28d9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .game-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            margin: 35px 0;
            border-top: 5px solid #ffdd00;
        }
        .stats-box p {
            margin-bottom: 12px;
            font-size: 19px;
        }
        .tag {
            display: inline-block;
            background-color: #6d28d9;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ffdd00;
            color: #6d28d9;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #6d28d9;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .game-type:hover {
            color: #8b5cf6;
            border-bottom: 2px solid #8b5cf6;
        }
        .footer {
            background-color: #6d28d9;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer h3 {
            color: #ffdd00;
            border-left: 3px solid #ffffff;
            margin-bottom: 20px;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            font-size: 15px;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #6d28d9;
                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: 34px;
                margin: 25px 0;
            }
            h2 {
                font-size: 26px;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
                text-align: left;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 10px 0;
                padding: 12px;
            }
            .stats-box {
                padding: 20px;
            }
            .image-container {
                margin: 25px 0;
            }
        }
