:root {
            --primary-dark: #0a0a0f;
            --secondary-dark: #1a1a2a;
            --accent-red: #cc3333;
            --accent-blue: #3399cc;
            --text-primary: #e0e0f0;
            --text-secondary: #b0b0cc;
            --border-color: #2a2a3a;
            --shadow-color: rgba(0, 0, 20, 0.5);
            --transition-speed: 0.3s;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle at 20% 30%, #1a1a2a 0%, #0a0a0f 70%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: color var(--transition-speed) ease;
        }
        a:hover {
            color: var(--accent-red);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--text-primary);
        }
        .logo span {
            color: var(--accent-red);
        }
        .logo:hover {
            opacity: 0.9;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin: 1rem 0;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-blue);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding: 0.5rem 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-red);
            transition: width var(--transition-speed) ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-dark);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            box-shadow: 0 10px 20px var(--shadow-color);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile .nav-link {
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-mobile .nav-link:last-child {
            border-bottom: none;
        }
        .main-article {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        .article-content {
            background-color: rgba(26, 26, 42, 0.7);
            border-radius: 8px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px var(--shadow-color);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .article-tag {
            background-color: var(--accent-red);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        h1 {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            text-shadow: 0 2px 10px var(--shadow-color);
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-red);
            color: var(--text-primary);
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: var(--accent-blue);
        }
        .lead-paragraph {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 3px solid var(--accent-blue);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            hyphens: auto;
        }
        .highlight-box {
            background-color: rgba(51, 153, 204, 0.1);
            border-left: 4px solid var(--accent-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .gameplay-tip {
            background-color: rgba(204, 51, 51, 0.1);
            border: 1px solid var(--accent-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 8px;
        }
        .gameplay-tip::before {
            content: '💡 PRO TIP: ';
            font-weight: bold;
            color: var(--accent-red);
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image {
            width: 100%;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px var(--shadow-color);
            transition: transform var(--transition-speed) ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-style: italic;
        }
        blockquote {
            font-size: 1.1rem;
            color: var(--text-secondary);
            border-left: 4px solid var(--accent-red);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        .keyword {
            font-weight: bold;
            color: var(--accent-blue);
            background-color: rgba(51, 153, 204, 0.1);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: rgba(26, 26, 42, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
        }
        .widget-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--accent-blue);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            margin-top: 1rem;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.8rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-right: none;
            border-radius: 4px 0 0 4px;
            color: var(--text-primary);
        }
        .search-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color var(--transition-speed) ease;
        }
        .search-button:hover {
            background-color: #b32b2b;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.5rem;
            color: #ffd700;
        }
        .star {
            cursor: pointer;
            transition: transform var(--transition-speed) ease;
        }
        .star:hover {
            transform: scale(1.2);
        }
        .rating-form {
            margin-top: 1rem;
        }
        .rating-submit {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            transition: background-color var(--transition-speed) ease;
        }
        .rating-submit:hover {
            background-color: #2a8ab8;
        }
        .quick-links ul {
            list-style: none;
            margin-left: 0;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .quick-links li:last-child {
            border-bottom: none;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-color);
        }
        .comment-form {
            background-color: rgba(26, 26, 42, 0.7);
            padding: 2rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--primary-dark);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--text-primary);
            font-family: inherit;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color var(--transition-speed) ease;
        }
        .submit-button:hover {
            background-color: #b32b2b;
        }
        .comment {
            background-color: rgba(26, 26, 42, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-color);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .comment-author {
            font-weight: bold;
            color: var(--accent-blue);
        }
        .footer-links {
            background-color: var(--secondary-dark);
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            padding: 1rem;
            background-color: rgba(10, 10, 15, 0.5);
            border-radius: 4px;
            border: 1px solid var(--border-color);
            transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
        }
        .web-link:hover {
            transform: translateY(-3px);
            border-color: var(--accent-blue);
        }
        .site-footer {
            background-color: var(--primary-dark);
            padding: 2rem 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        .copyright {
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
            width: 100%;
        }
        @media (max-width: 1024px) {
            .main-article {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .nav-desktop {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-content {
                padding: 1.5rem;
            }
            .links-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }
