        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e94560;
            --text-color: #f1f1f1;
            --text-secondary: #b8b8b8;
            --card-bg: #0f3460;
            --border-color: #2d4059;
            --success-color: #4CAF50;
            --warning-color: #ff9800;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background: linear-gradient(135deg, var(--primary-color) 0%, #121212 100%);
            min-height: 100vh;
        }
        .header {
            background: var(--secondary-color);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid var(--accent-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            background: linear-gradient(45deg, #e94560, #ff7a8a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 0.5rem;
            border-radius: 5px;
        }
        .my-logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(233, 69, 96, 0.7);
        }
        .nav-desktop {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after {
            width: 80%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            padding: 10px;
        }
        .hamburger span {
            width: 30px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 4px;
            transition: 0.3s;
        }
        .search-container {
            position: relative;
            width: 300px;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border-color);
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .search-input:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }
        .search-button {
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: #ff5773;
            transform: scale(1.05);
        }
        .breadcrumb {
            background: rgba(15, 52, 96, 0.3);
            padding: 1rem 2rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb-nav {
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .breadcrumb-item a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb-item a:hover {
            color: var(--accent-color);
        }
        .breadcrumb-item.active {
            color: var(--accent-color);
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 3rem;
        }
        .article-content {
            background: rgba(15, 52, 96, 0.2);
            border-radius: 15px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-header {
            margin-bottom: 3rem;
            text-align: center;
            border-bottom: 2px solid var(--accent-color);
            padding-bottom: 2rem;
        }
        .article-title {
            font-size: 2.8rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .update-time {
            color: var(--accent-color);
            font-weight: 600;
        }
        .content-section {
            margin-bottom: 4rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--accent-color);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border-color);
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--accent-color);
        }
        h3 {
            font-size: 1.8rem;
            color: white;
            margin: 2.5rem 0 1.2rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #e0e0e0;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            color: var(--text-color);
            line-height: 1.9;
            text-align: justify;
        }
        .highlight {
            background: rgba(233, 69, 96, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight strong {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        .game-feature {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        .feature-icon {
            color: var(--accent-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .content-link {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dashed var(--accent-color);
            transition: all 0.3s ease;
            padding: 0 2px;
        }
        .content-link:hover {
            background: rgba(233, 69, 96, 0.1);
            border-bottom-style: solid;
            border-radius: 3px;
        }
        .article-image {
            width: 100%;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 3px solid var(--border-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .article-image:hover {
            transform: scale(1.01);
        }
        .image-caption {
            text-align: center;
            color: var(--text-secondary);
            font-style: italic;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        .sidebar-widget {
            background: rgba(15, 52, 96, 0.2);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-color);
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--border-color);
        }
        .quick-links {
            list-style: none;
        }
        .quick-link {
            margin-bottom: 1rem;
        }
        .quick-link a {
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
        }
        .quick-link a:hover {
            background: var(--accent-color);
            transform: translateX(5px);
        }
        .quick-link i {
            color: var(--accent-color);
            transition: color 0.3s ease;
        }
        .quick-link a:hover i {
            color: white;
        }
        .rating-section, .comment-section {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1rem 0;
        }
        .star {
            font-size: 2.5rem;
            color: #444;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .star:hover,
        .star.active {
            color: var(--warning-color);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-label {
            font-weight: 600;
            color: white;
        }
        .form-input, .form-textarea {
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.15);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .submit-button:hover {
            background: #ff5773;
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(233, 69, 96, 0.4);
        }
        .footer {
            background: var(--secondary-color);
            padding: 3rem 2rem;
            margin-top: 5rem;
            border-top: 3px solid var(--accent-color);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
        }
        friend-link a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.3rem 0;
        }
        friend-link a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
            grid-column: 1 / -1;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -300px;
            width: 280px;
            height: 100vh;
            background: var(--secondary-color);
            padding: 5rem 2rem 2rem;
            transition: right 0.4s ease;
            z-index: 999;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mobile-nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        .mobile-nav-link:hover {
            background: var(--accent-color);
        }
        .close-menu {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 2rem;
            cursor: pointer;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .search-container {
                order: 3;
                width: 100%;
                margin-top: 1rem;
            }
            .article-content {
                padding: 2rem;
            }
            .article-title {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .main-container {
                padding: 0 1rem;
            }
            .mobile-nav {
                display: block;
            }
        }
        @media (max-width: 480px) {
            .header {
                padding: 1rem;
            }
            .article-title {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .rating-section, .comment-section {
                padding: 1.5rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.6s ease-out;
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(233, 69, 96, 0); }
            100% { box-shadow: 0 0 0 0 rgba(233, 69, 96, 0); }
        }
        .download-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--accent-color), #ff7a8a);
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 2rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
        }
        .download-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(233, 69, 96, 0.5);
        }
