        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            line-height: 1.8;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: #f59e0b;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #cbd5e1;
            border-radius: 2px;
            transition: 0.3s;
        }
        .nav-bar {
            display: flex;
            gap: 30px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover, .nav-links a.active {
            background: rgba(59, 130, 246, 0.2);
            color: #60a5fa;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            border-bottom: 1px solid #334155;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-container {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #f8fafc;
            line-height: 1.2;
            border-left: 5px solid #f59e0b;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #e2e8f0;
            padding-bottom: 10px;
            border-bottom: 2px solid #475569;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #cbd5e1;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(245, 158, 11, 0.15);
            border-left: 4px solid #f59e0b;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .widget h3 {
            margin-top: 0;
            color: #f59e0b;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #475569;
            background: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #60a5fa;
        }
        button, .btn {
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
        }
        button:hover, .btn:hover {
            background: linear-gradient(90deg, #2563eb, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
            text-decoration: none;
        }
        .featured-image {
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            max-height: 500px;
            object-fit: cover;
            width: 100%;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        .image-caption {
            font-style: italic;
            color: #94a3b8;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .content-link {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            padding: 8px 15px;
            border-radius: 6px;
            margin: 5px;
            border: 1px dashed #3b82f6;
        }
        .site-footer {
            background: #0f172a;
            border-top: 2px solid #334155;
            margin-top: 60px;
            padding: 40px 0 20px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .nav-links { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-bar {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .nav-bar.active {
                left: 0;
            }
            .nav-links {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.8rem;
            }
        }
        .game-card {
            background: rgba(45, 55, 72, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #10b981;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateX(10px);
            box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
        }
        .rating-stars {
            color: #f59e0b;
            font-size: 1.2rem;
            margin: 10px 0;
        }
        .tag {
            display: inline-block;
            background: #475569;
            color: #cbd5e1;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
        }
