* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 1rem 0;
            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: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo:hover {
            color: #ffd700;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 25px;
            outline: none;
            width: 250px;
        }
        .search-btn {
            background: #ffd700;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: #ffed4a;
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .breadcrumb a {
            color: #6c757d;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #495057;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
        }
        .main-content {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .sidebar {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        h1 {
            color: #1a2a6c;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h2 {
            color: #b21f1f;
            font-size: 2rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #fdbb2d;
        }
        h3 {
            color: #1a2a6c;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #fdbb2d22, #fdbb2d44);
            padding: 1.5rem;
            border-left: 4px solid #fdbb2d;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .feature-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: #b21f1f;
            margin-bottom: 1rem;
        }
        .download-section {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: white;
            padding: 3rem 2rem;
            border-radius: 10px;
            text-align: center;
            margin: 2rem 0;
        }
        .download-btn {
            display: inline-block;
            background: #ffd700;
            color: #1a2a6c;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .download-btn:hover {
            background: #ffed4a;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ced4da;
            border-radius: 5px;
            font-size: 1rem;
        }
        .submit-btn {
            background: #b21f1f;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            background: #c82333;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #ffd700;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .web-links {
            background: #343a40;
            padding: 2rem 0;
        }
        .web-links-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: #495057;
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #ffd700;
            text-decoration: none;
            font-weight: 500;
        }
        .web-link a:hover {
            color: #ffed4a;
            text-decoration: underline;
        }
        footer {
            background: #212529;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }
            .header-container {
                flex-wrap: wrap;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
            }
            nav ul.show {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .search-form {
                width: 100%;
                margin-top: 1rem;
            }
            .search-input {
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
