* {
            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 #e94560;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #e94560;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #fff;
        }
        .logo-text {
            background: linear-gradient(45deg, #e94560, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }
        .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: #e94560;
            background: rgba(233, 69, 96, 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;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #fff;
            text-decoration: none;
            padding: 0.5rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
            margin-top: 80px;
            border-bottom: 1px solid #333;
        }
        .breadcrumb-content {
            display: flex;
            gap: 0.5rem;
            color: #ccc;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #e94560;
            text-decoration: none;
        }
        main {
            padding: 2rem 0;
            min-height: calc(100vh - 400px);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid #333;
        }
        .article-header h1 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            color: #ccc;
            font-size: 0.9rem;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 15px;
            border: 1px solid #333;
            backdrop-filter: blur(10px);
        }
        .content-section h2 {
            color: #e94560;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-left: 4px solid #e94560;
            padding-left: 1rem;
        }
        .content-section h3 {
            color: #ff6b6b;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.4rem;
        }
        .content-section p {
            color: #ccc;
            margin-bottom: 1rem;
            line-height: 1.8;
            text-align: justify;
        }
        .content-section ul, .content-section ol {
            color: #ccc;
            margin: 1rem 0;
            padding-left: 2rem;
        }
        .content-section li {
            margin-bottom: 0.5rem;
        }
        .highlight {
            background: linear-gradient(45deg, #e94560, #ff6b6b);
            color: #fff;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            font-weight: bold;
        }
        .feature-box {
            background: rgba(233, 69, 96, 0.1);
            border: 1px solid #e94560;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
        }
        .feature-box h4 {
            color: #ff6b6b;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 10px;
            margin: 2rem auto;
            display: block;
            border: 2px solid #e94560;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .search-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            gap: 0.5rem;
        }
        .search-input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #333;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #ccc;
        }
        .search-button {
            background: linear-gradient(45deg, #e94560, #ff6b6b);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            color: #fff;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .search-button:hover {
            transform: translateY(-2px);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .rating-widget, .comment-widget {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid #333;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #333;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .star.active {
            color: #ffd700;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            border: 2px solid #333;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(45deg, #e94560, #ff6b6b);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            color: #fff;
            cursor: pointer;
            font-size: 1rem;
            transition: transform 0.3s ease;
            width: 100%;
        }
        .submit-button:hover {
            transform: translateY(-2px);
        }
        .footer-links {
            background: rgba(0, 0, 0, 0.8);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #333;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-3px);
            border-color: #e94560;
        }
        .web-link a {
            color: #e94560;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: rgba(0, 0, 0, 0.9);
            color: #ccc;
            text-align: center;
            padding: 2rem 0;
            border-top: 2px solid #e94560;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
        }
        .social-links a {
            color: #ccc;
            font-size: 1.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-links a:hover {
            color: #e94560;
            transform: translateY(-3px);
        }
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 2rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .search-form {
                flex-direction: column;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
        }
        ::-webkit-scrollbar-thumb {
            background: #e94560;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ff6b6b;
        }
