        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid #334155;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.5px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .nav-link {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #3b82f6;
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #cbd5e1;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1e293b;
            padding: 20px;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav .nav-link {
            padding: 15px 0;
            border-bottom: 1px solid #334155;
        }
        .mobile-nav .nav-link:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: #1e293b;
            font-size: 0.9rem;
            border-bottom: 1px solid #334155;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb span {
            color: #cbd5e1;
            margin: 0 8px;
        }
        .hero {
            padding: 80px 20px;
            text-align: center;
            background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #0f172a 70%);
            border-bottom: 1px solid #334155;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero-subtitle {
            font-size: 1.3rem;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: #94a3b8;
            font-size: 0.95rem;
            margin-bottom: 40px;
        }
        .meta-info i {
            margin-right: 8px;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto 0;
            background: #1e293b;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #334155;
        }
        .search-container h3 {
            margin-bottom: 15px;
            color: #f1f5f9;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 14px 20px;
            border: 1px solid #475569;
            background: #0f172a;
            color: #f1f5f9;
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #3b82f6;
        }
        .search-btn {
            padding: 0 25px;
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #2563eb, #4f46e5);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #1e293b;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #334155;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #f1f5f9;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #e2e8f0;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        .article-content strong {
            color: #f1f5f9;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e40af30, #3730a330);
            border-left: 4px solid #8b5cf6;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .game-image {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #475569;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            padding: 10px;
            background: #1e293b;
        }
        .content-emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: #1e293b;
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #334155;
        }
        .sidebar-widget h3 {
            margin-bottom: 20px;
            color: #f1f5f9;
            padding-bottom: 10px;
            border-bottom: 2px solid #3b82f6;
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
            margin: 15px 0;
        }
        .star {
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
        }
        .rating-btn {
            padding: 12px;
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-btn:hover {
            background: linear-gradient(90deg, #34d399, #10b981);
        }
        .comment-form textarea {
            width: 100%;
            min-height: 120px;
            padding: 15px;
            background: #0f172a;
            border: 1px solid #475569;
            border-radius: 8px;
            color: #f1f5f9;
            margin-bottom: 15px;
            resize: vertical;
        }
        .comment-form button {
            padding: 12px 30px;
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #2563eb, #4f46e5);
        }
        .web-links-section {
            background: #1e293b;
            padding: 50px 20px;
            margin-top: 60px;
            border-top: 1px solid #334155;
            border-bottom: 1px solid #334155;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #0f172a;
            padding: 18px;
            border-radius: 8px;
            border: 1px solid #334155;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #1e293b;
            border-color: #3b82f6;
            transform: translateY(-3px);
        }
        .site-footer {
            background: #0f172a;
            padding: 50px 20px 30px;
            text-align: center;
            border-top: 1px solid #334155;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-links a {
            color: #94a3b8;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #60a5fa;
        }
        .copyright {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #334155;
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mt-40 { margin-top: 40px; }
        .flex { display: flex; }
        .justify-center { justify-content: center; }
        .gap-10 { gap: 10px; }
