* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.7; color: #222; background: #fefefe; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        a { color: #0066cc; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #d42e8a; text-decoration: underline; }
        img { max-width: 100%; height: auto; border-radius: 10px; }
        .btn { display: inline-block; background: linear-gradient(135deg, #0066cc, #d42e8a); color: white; padding: 12px 24px; border-radius: 30px; font-weight: bold; border: none; cursor: pointer; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0,0,0,0.15); }
        header { background: linear-gradient(90deg, #1a237e, #4a148c); color: white; padding: 15px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2.2rem; font-weight: 900; color: #ffde59; letter-spacing: 1px; }
        .logo a span { color: white; }
        .desktop-nav ul { display: flex; list-style: none; }
        .desktop-nav li { margin-left: 30px; }
        .desktop-nav a { color: white; font-weight: 600; font-size: 1.05rem; }
        .desktop-nav a:hover { color: #ffde59; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; }
        .mobile-nav { display: none; background: #2d3a8c; position: absolute; top: 100%; left: 0; width: 100%; z-index: 999; }
        .mobile-nav.active { display: block; }
        .mobile-nav ul { list-style: none; padding: 20px; }
        .mobile-nav li { margin: 15px 0; }
        .mobile-nav a { color: white; font-size: 1.2rem; display: block; padding: 10px; }
        .breadcrumb { background: #eef2ff; padding: 15px 0; font-size: 0.95rem; }
        .breadcrumb ol { display: flex; list-style: none; }
        .breadcrumb li { margin-right: 10px; }
        .breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 10px; }
        .breadcrumb a { color: #555; }
        .hero { background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(74, 20, 140, 0.85)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; color: white; text-align: center; padding: 80px 20px; border-radius: 0 0 20px 20px; margin-bottom: 40px; }
        .hero h1 { font-size: 3.2rem; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px; }
        main { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 30px 0; }
        article { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
        h1, h2, h3, h4 { color: #1a237e; margin-bottom: 20px; }
        h1 { font-size: 2.8rem; border-bottom: 4px solid #ffde59; padding-bottom: 15px; }
        h2 { font-size: 2.2rem; margin-top: 40px; padding-bottom: 10px; border-bottom: 2px dashed #ccc; }
        h3 { font-size: 1.8rem; color: #4a148c; margin-top: 30px; }
        p { margin-bottom: 25px; font-size: 1.1rem; text-align: justify; }
        .highlight { background: #fff9e6; border-left: 6px solid #ffde59; padding: 20px; margin: 30px 0; border-radius: 0 10px 10px 0; }
        .game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin: 30px 0; }
        .game-card { background: #f8f9ff; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.4s, box-shadow 0.4s; }
        .game-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
        .game-card img { width: 100%; height: 180px; object-fit: cover; }
        .game-card-content { padding: 20px; }
        .game-card h4 { font-size: 1.4rem; color: #d42e8a; }
        .rating { color: #ffcc00; margin: 10px 0; }
        .interactive-section { background: #f0f7ff; padding: 30px; border-radius: 15px; margin: 40px 0; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; font-weight: bold; color: #333; }
        input, textarea, select { width: 100%; padding: 12px; border: 2px solid #ccc; border-radius: 8px; font-size: 1rem; }
        input:focus, textarea:focus, select:focus { border-color: #0066cc; outline: none; }
        aside { background: #f8f9ff; padding: 25px; border-radius: 15px; height: fit-content; position: sticky; top: 120px; }
        .related-links ul { list-style: none; }
        .related-links li { margin: 12px 0; }
        .related-links a { color: #444; display: block; padding: 10px; background: white; border-radius: 8px; }
        .related-links a:hover { background: #eef2ff; }
        .internal-links { background: linear-gradient(90deg, #eef2ff, #fff0f5); padding: 40px 0; margin-top: 50px; }
        .web-links-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
        .web-link { background: white; padding: 12px 20px; border-radius: 30px; box-shadow: 0 4px 8px rgba(0,0,0,0.05); }
        .web-link a { color: #333; font-weight: 600; }
        footer { background: #1a237e; color: white; padding: 50px 0 20px; text-align: center; }
        .footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 30px; }
        .footer-section { flex: 1; min-width: 250px; margin: 20px; }
        .footer-section h3 { color: #ffde59; font-size: 1.5rem; margin-bottom: 20px; }
        .footer-links { list-style: none; }
        .footer-links li { margin: 10px 0; }
        .footer-links a { color: #bbdefb; }
        .copyright { border-top: 1px solid #3949ab; padding-top: 20px; font-size: 0.9rem; color: #bbdefb; }
        @media (max-width: 992px) {
            main { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.9rem; }
            .game-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
            .header-content { flex-wrap: wrap; }
        }
        @media (max-width: 480px) {
            .hero { padding: 50px 20px; }
            .hero h1 { font-size: 2rem; }
            article { padding: 20px; }
        }
