        * {
            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.8;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #93c5fd;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .logo span {
            color: #60a5fa;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #e2e8f0;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1e293b;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 15px;
            border-bottom: 1px solid #334155;
            font-weight: 600;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1635070041078-e363dbe005cb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 20px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            margin-bottom: 40px;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #f8fafc;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cbd5e1;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1rem;
            background: #f8fafc;
            color: #0f172a;
        }
        .search-box button {
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            color: white;
            border: none;
            padding: 0 35px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #2563eb, #4f46e5);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #1e293b;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 30px 0 20px;
            color: #f1f5f9;
            border-left: 5px solid #3b82f6;
            padding-left: 15px;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: #e2e8f0;
        }
        .article-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #cbd5e1;
        }
        .article-content strong {
            color: #f8fafc;
            font-weight: 700;
        }
        .highlight-box {
            background: linear-gradient(135deg, #1e40af, #3730a3);
            padding: 25px;
            border-radius: 15px;
            margin: 30px 0;
            border-left: 8px solid #60a5fa;
        }
        .game-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        .game-card {
            background: #334155;
            padding: 20px;
            border-radius: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
        }
        .featured-image {
            margin: 40px auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: #1e293b;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #f1f5f9;
            padding-bottom: 10px;
            border-bottom: 2px solid #3b82f6;
        }
        .rating-stars {
            color: #fbbf24;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .rating-form input, .rating-form select, .rating-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #0f172a;
            color: #e2e8f0;
        }
        .rating-form button, .comment-form button {
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s ease;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: linear-gradient(90deg, #059669, #047857);
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .footer-links {
            background: #1e293b;
            padding: 50px 20px;
            margin-top: 60px;
            border-radius: 20px 20px 0 0;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 25px;
            background: #334155;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #3b82f6;
            transform: scale(1.05);
        }
        .footer-links-container {
            text-align: center;
        }
        .site-footer {
            background: #0f172a;
            padding: 30px 20px;
            text-align: center;
            color: #94a3b8;
            font-size: 0.95rem;
            border-top: 1px solid #334155;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .text-center {
            text-align: center;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1rem; }
            .article-content { padding: 25px; }
            .article-content h2 { font-size: 1.7rem; }
            .game-list { grid-template-columns: 1fr; }
            .search-box { flex-direction: column; border-radius: 15px; }
            .search-box input, .search-box button { padding: 15px; border-radius: 0; }
        }
