:root {
            --primary-dark: #0a1a2a;
            --primary-accent: #00a8e8;
            --secondary-accent: #ff6b35;
            --text-light: #f5f7fa;
            --text-dim: #b8c2cc;
            --card-bg: #1e2b3a;
            --section-gap: 3rem;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary-accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark) 60%, #0c2233);
            padding: 1.5rem 0;
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(30, 43, 58, 0.7);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-dim);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .breadcrumb span {
            color: var(--text-dim);
            margin: 0 8px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-accent);
            transition: width 0.3s;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-accent);
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--card-bg);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3c50;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid #2a3c50;
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .search-box {
            display: flex;
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #2a3c50;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: #111c28;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-box button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background-color: var(--secondary-accent);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: var(--section-gap) 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px dashed var(--primary-accent);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            line-height: 1.2;
        }
        .article-meta {
            color: var(--text-dim);
            font-style: italic;
            margin-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-accent);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3c50;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--secondary-accent);
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.1), transparent);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-accent);
            margin: 2rem 0;
            font-style: italic;
        }
        .game-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: var(--border-radius);
            border: 3px solid var(--primary-accent);
            margin: 2rem auto;
            display: block;
            transition: var(--transition);
        }
        .game-img:hover {
            transform: scale(1.01);
            box-shadow: 0 0 25px rgba(0, 168, 232, 0.4);
        }
        .link-list {
            background-color: #111c28;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            margin: 2rem 0;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            list-style-type: square;
            margin-left: 1.5rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--card-bg);
            padding: 1.8rem;
            border-radius: var(--border-radius);
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--secondary-accent);
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3c50;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: gold;
            margin: 1rem 0;
            letter-spacing: 5px;
        }
        .rating-widget button {
            background-color: var(--secondary-accent);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            margin-top: 1rem;
            transition: var(--transition);
        }
        .rating-widget button:hover {
            background-color: #e55a2b;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            background-color: #111c28;
            border: 1px solid #2a3c50;
            border-radius: var(--border-radius);
            color: var(--text-light);
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: #111c28;
            border: 1px solid #2a3c50;
            border-radius: var(--border-radius);
            color: var(--text-light);
        }
        .comment-form button {
            background-color: var(--primary-accent);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .comment-form button:hover {
            background-color: #0090c9;
        }
        .site-footer {
            background-color: #0c1420;
            padding: 3rem 0 1.5rem;
            margin-top: var(--section-gap);
            border-top: 2px solid var(--primary-accent);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 0.8rem;
            border-radius: 5px;
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(0, 168, 232, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3c50;
            color: var(--text-dim);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-desktop {
                display: none;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
        }
