        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #339af0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
            padding: 15px 0;
            border-bottom: 2px solid #339af0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #339af0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: #c0c0c0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            color: #fff;
            background-color: rgba(51, 154, 240, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a2332;
            padding: 20px;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            border-top: 1px solid #333;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #c0c0c0;
            padding: 15px;
            border-bottom: 1px solid #2a3446;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            color: #339af0;
            background-color: rgba(51, 154, 240, 0.1);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a2332;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #339af0;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 8px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-hero {
            background: linear-gradient(rgba(15,20,30,0.8), rgba(15,20,30,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 60px 30px;
            border-radius: 12px;
            margin-bottom: 40px;
            text-align: center;
        }
        .article-hero h1 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        @media (max-width: 768px) {
            .article-hero h1 {
                font-size: 2.2rem;
            }
        }
        .article-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #ccc;
        }
        .article-body {
            background-color: #1a2332;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-body h2 {
            color: #4dabf7;
            margin-top: 40px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3446;
            font-size: 2rem;
        }
        .article-body h3 {
            color: #74c0fc;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #d0d0d0;
        }
        .article-body strong {
            color: #fff;
            font-weight: 700;
        }
        .article-body em {
            color: #ffd43b;
        }
        .highlight-box {
            background: linear-gradient(135deg, #2a3446, #1a2332);
            border-left: 5px solid #339af0;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box h4 {
            color: #74c0fc;
            margin-bottom: 10px;
        }
        .game-image {
            margin: 40px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.6);
            border: 2px solid #339af0;
        }
        .game-image figcaption {
            text-align: center;
            padding: 10px;
            background-color: #2a3446;
            color: #aaa;
            font-style: italic;
        }
        .interactive-section {
            background-color: #1a2332;
            padding: 40px;
            border-radius: 12px;
            margin-top: 40px;
        }
        .interactive-section h2 {
            color: #4dabf7;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #ccc;
            font-weight: 600;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: #2a3446;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: #339af0;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover {
            color: #ffd43b;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #339af0, #4dabf7);
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            background: linear-gradient(90deg, #228be6, #339af0);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(51, 154, 240, 0.3);
        }
        .btn:active {
            transform: translateY(0);
        }
        .sidebar {
            background-color: #1a2332;
            padding: 30px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            color: #74c0fc;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3446;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 15px;
        }
        .sidebar a {
            color: #ccc;
            display: block;
            padding: 12px 15px;
            background-color: #2a3446;
            border-radius: 6px;
            transition: all 0.3s;
        }
        .sidebar a:hover {
            background-color: #339af0;
            color: white;
            transform: translateX(5px);
        }
        .search-box {
            margin-bottom: 30px;
        }
        .search-box input {
            width: 100%;
            padding: 15px;
            border-radius: 6px;
            border: 1px solid #444;
            background-color: #2a3446;
            color: white;
        }
        .search-box button {
            width: 100%;
            margin-top: 10px;
            padding: 15px;
        }
        .footer-links {
            background-color: #1a2332;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: #2a3446;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #2a3a50;
        }
        .web-link a {
            color: #74c0fc;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .site-footer {
            background-color: #0f1419;
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #2a3446;
        }
        .site-footer p {
            color: #888;
            margin-bottom: 10px;
        }
        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        .text-center {
            text-align: center;
        }
        .mb-4 {
            margin-bottom: 2rem;
        }
