* {
            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, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #ff4444;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ff4444;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: #ff6666;
            text-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            color: #ff4444;
            background: rgba(255, 68, 68, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(0, 0, 0, 0.95);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid #333;
            transition: background 0.3s ease;
        }
        .nav-mobile a:hover {
            background: rgba(255, 68, 68, 0.1);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            margin-top: 80px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            color: #ccc;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ff4444;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 2rem 0;
            min-height: calc(100vh - 400px);
        }
        .article-content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 2rem;
        }
        h1 {
            color: #ff4444;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        h2 {
            color: #333;
            font-size: 2rem;
            margin: 2rem 0 1rem 0;
            border-bottom: 2px solid #ff4444;
            padding-bottom: 0.5rem;
        }
        h3 {
            color: #555;
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem 0;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(135deg, #ff4444, #ff6666);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            margin: 2rem auto;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .game-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://via.placeholder.com/800x400') center/cover;
            opacity: 0.8;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-button {
            background: #ff4444;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #ff6666;
        }
        .interaction-section {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }
        .rating-form, .comment-form {
            margin-bottom: 2rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #ccc;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 1rem;
            margin: 0.5rem 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        button[type="submit"] {
            background: #ff4444;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        button[type="submit"]:hover {
            background: #ff6666;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
        }
        .web-link a {
            color: #ff4444;
            text-decoration: none;
            font-weight: bold;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 3rem 0 1rem 0;
            margin-top: 2rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h3 {
            color: #ff4444;
            margin-bottom: 1rem;
            border-bottom: none;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #ff4444;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .header-content {
                padding: 0.5rem 0;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content {
            animation: fadeIn 0.8s ease-out;
        }
        .hover-effect {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-effect:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }
