* {
            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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #4a5568;
            text-decoration: none;
        }
        .logo:hover {
            color: #667eea;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-mobile {
            display: none;
        }
        @media (max-width: 768px) {
            .nav-mobile {
                display: block;
            }
        }
        .nav-link {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: #667eea;
        }
        .hamburger {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #4a5568;
        }
        .mobile-menu {
            display: none;
            background: white;
            padding: 1rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.9);
            padding: 1rem 0;
            margin-top: 80px;
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb-link {
            text-decoration: none;
            color: #667eea;
        }
        main {
            background: white;
            margin: 2rem auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        .content-section {
            padding: 3rem 2rem;
        }
        .content-section h2 {
            color: #4a5568;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-left: 4px solid #667eea;
            padding-left: 1rem;
        }
        .content-section h3 {
            color: #4a5568;
            margin: 2rem 0 1rem 0;
            font-size: 1.5rem;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 4px solid #667eea;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            height: 400px;
            background: #f7fafc;
            border-radius: 10px;
            margin: 2rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a5568;
            border: 2px dashed #cbd5e0;
        }
        .search-section {
            background: #f7fafc;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            gap: 1rem;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
        }
        .search-button {
            background: #667eea;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #5a67d8;
        }
        .rating-section {
            background: #fff5f5;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px solid #fed7d7;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #e2e8f0;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #f6ad55;
        }
        .comments-section {
            background: #f0fff4;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 2px solid #c6f6d5;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .comment-input {
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 1rem;
            min-height: 100px;
            resize: vertical;
        }
        .submit-button {
            background: #48bb78;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            align-self: flex-start;
            transition: background 0.3s ease;
        }
        .submit-button:hover {
            background: #38a169;
        }
        .footer-links {
            background: #2d3748;
            padding: 3rem 2rem;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.2);
        }
        .web-link a {
            color: #e2e8f0;
            text-decoration: none;
        }
        .web-link a:hover {
            color: white;
        }
        footer {
            background: #1a202c;
            color: white;
            text-align: center;
            padding: 2rem;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 2rem 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        .interactive-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            margin: 1rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .interactive-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
