:root {
            --primary-dark: #0a192f;
            --accent-orange: #f97316;
            --accent-blue: #38bdf8;
            --text-light: #e2e8f0;
            --text-muted: #94a3b8;
            --card-bg: #1e293b;
            --section-gap: 4rem;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .site-header {
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(56, 189, 248, 0.2);
            padding: 1rem 2rem;
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        .my-logo {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-orange);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--accent-orange), #fdba74);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
        }
        .my-logo i {
            font-size: 1.8rem;
            -webkit-text-fill-color: var(--accent-orange);
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-orange);
            background-color: rgba(249, 115, 22, 0.1);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--accent-orange);
            transition: var(--transition);
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }
        .search-form-header {
            display: flex;
            background-color: var(--card-bg);
            border-radius: 50px;
            padding: 0.3rem;
            border: 1px solid var(--text-muted);
        }
        .search-input {
            background: transparent;
            border: none;
            color: var(--text-light);
            padding: 0.5rem 1rem;
            min-width: 200px;
            outline: none;
        }
        .search-btn {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-btn:hover {
            background-color: #ea580c;
            transform: rotate(15deg);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(30, 41, 59, 0.8);
            padding: 1rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(148, 163, 184, 0.2);
        }
        .breadcrumb a {
            color: var(--accent-blue);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: var(--section-gap) auto;
        }
        .main-content {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(56, 189, 248, 0.1);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            border: 1px solid rgba(148, 163, 184, 0.2);
        }
        .widget-title {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-orange);
            font-size: 1.3rem;
        }
        .update-time {
            color: var(--accent-blue);
            font-style: italic;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        h1 {
            font-size: 3.2rem;
            color: var(--accent-orange);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-blue);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-blue);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--text-light);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-muted);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--accent-blue);
            font-weight: 600;
            margin-bottom: 2rem;
            padding-left: 1rem;
            border-left: 4px solid var(--accent-orange);
        }
        .highlight {
            background-color: rgba(249, 115, 22, 0.15);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-orange);
            margin: 2.5rem 0;
        }
        .highlight p:last-child {
            margin-bottom: 0;
        }
        .data-point {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-orange), #c2410c);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-weight: bold;
            margin: 0 0.3rem;
            font-size: 0.9rem;
        }
        .game-image {
            width: 100%;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            border: 2px solid var(--accent-blue);
            transition: var(--transition);
        }
        .game-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
        }
        .related-link {
            background-color: rgba(56, 189, 248, 0.1);
            color: var(--accent-blue);
            text-decoration: none;
            padding: 0.7rem 1.2rem;
            border-radius: var(--border-radius);
            border: 1px solid var(--accent-blue);
            transition: var(--transition);
            font-weight: 600;
        }
        .related-link:hover {
            background-color: var(--accent-blue);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        .comment-section,
        .rating-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--text-muted);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-blue);
            font-weight: 600;
        }
        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            background-color: rgba(15, 23, 42, 0.8);
            border: 1px solid var(--text-muted);
            border-radius: var(--border-radius);
            color: var(--text-light);
            font-family: inherit;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn {
            background-color: var(--accent-orange);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background-color: #ea580c;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(249, 115, 22, 0.4);
        }
        .btn-blue {
            background-color: var(--accent-blue);
        }
        .btn-blue:hover {
            background-color: #0ea5e9;
            box-shadow: 0 7px 15px rgba(56, 189, 248, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
            transform: scale(1.2);
        }
        .site-footer {
            background-color: #0f172a;
            margin-top: var(--section-gap);
            padding: 3rem 2rem;
            border-top: 3px solid var(--accent-orange);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-logo {
            font-size: 2rem;
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: 900;
            margin-bottom: 1rem;
            display: block;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        friend-link {
            display: block;
        }
        friend-link a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: var(--transition);
        }
        friend-link a:hover {
            color: var(--accent-orange);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--text-muted);
            color: var(--text-muted);
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                order: 3;
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid var(--text-muted);
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .search-form-header {
                order: 2;
                margin-left: auto;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .main-content {
                padding: 2rem;
            }
            .container {
                padding: 0 1rem;
            }
        }
        @media (max-width: 480px) {
            .site-header,
            .breadcrumb {
                padding: 1rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .search-input {
                min-width: 150px;
            }
            .main-content {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .main-content,
        .widget {
            animation: fadeIn 0.8s ease-out;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--card-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-orange);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ea580c;
        }
