* {
            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 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 #00ff88;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #00ff88;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: #00cc66;
            transform: scale(1.05);
        }
        .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: #00ff88;
            background: rgba(0, 255, 136, 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(0, 255, 136, 0.1);
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            margin-top: 80px;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #00ff88;
            text-decoration: none;
        }
        .breadcrumb span {
            color: #ccc;
        }
        main {
            padding: 2rem 0;
            color: #fff;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid #00ff88;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #00ff88;
            text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
        }
        .article-meta {
            color: #ccc;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .content-section {
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border-left: 4px solid #00ff88;
        }
        h2 {
            color: #00ff88;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            border-bottom: 2px solid #00ff88;
            padding-bottom: 0.5rem;
        }
        h3 {
            color: #00cc66;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 1rem;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(0, 255, 136, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #00ff88;
            margin: 1.5rem 0;
        }
        .gameplay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .video-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .video-thumbnail {
            width: 100%;
            height: 200px;
            background: linear-gradient(45deg, #00ff88, #0077ff);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        .video-info {
            padding: 1rem;
        }
        .search-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            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: 25px 0 0 25px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .search-button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 0 25px 25px 0;
            background: #00ff88;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: #00cc66;
        }
        .comments-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            background: #00ff88;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            justify-self: start;
        }
        .submit-button:hover {
            background: #00cc66;
        }
        .rating-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .star.active {
            color: #ffd700;
        }
        .footer-links {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        .web-link {
            margin: 0.5rem 0;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            transition: background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(0, 255, 136, 0.2);
        }
        .web-link a {
            color: #00ff88;
            text-decoration: none;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #ccc;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 2px solid #00ff88;
        }
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 25px;
                margin-bottom: 1rem;
            }
            .search-button {
                border-radius: 25px;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease-out;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #00ff88;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #00cc66;
        }
