        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a2a;
            color: #f0f0f0;
            line-height: 1.7;
            background-image: radial-gradient(circle at 10% 20%, rgba(28, 58, 173, 0.1) 0%, transparent 20%),
                              radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 20%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px #ffcc00;
        }
        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, #000428 0%, #004e92 100%);
            padding: 1.2rem 0;
            border-bottom: 3px solid #ffcc00;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffcc00;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 3px 3px 0 #004e92, 6px 6px 0 rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        .my-logo span {
            color: #ffffff;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 204, 0, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffcc00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: #001f3f;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            border-top: 2px solid #ffcc00;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-mobile a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            background-color: rgba(0, 20, 40, 0.7);
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb i {
            margin: 0 0.5rem;
        }
        .main-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
            flex-grow: 1;
        }
        @media (max-width: 992px) {
            .main-content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(10, 25, 47, 0.85);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid #1a3a5f;
        }
        .article-header {
            margin-bottom: 2.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed #ffcc00;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc00;
            margin-bottom: 1rem;
            line-height: 1.2;
            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: #8ab4f8;
            font-size: 0.95rem;
        }
        .update-time {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a4a6e;
        }
        h3 {
            font-size: 1.6rem;
            color: #69db7c;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #ffa94d;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #c5e1ff;
            background: rgba(0, 78, 146, 0.2);
            padding: 1.5rem;
            border-left: 4px solid #ffcc00;
            border-radius: 0 8px 8px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .featured-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #ffcc00;
            max-width: 800px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 0.8rem;
            background-color: rgba(0, 0, 0, 0.5);
            color: #ccc;
        }
        .content-block {
            margin-bottom: 2.5rem;
        }
        .stats-box {
            background: linear-gradient(145deg, #001f3f, #003366);
            border: 2px solid #4dabf7;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        .stats-box h4 {
            color: #4dabf7;
            margin-top: 0;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #69db7c;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #d0e6ff;
            background-color: rgba(105, 219, 124, 0.05);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }
        .gameplay-tip {
            background-color: rgba(255, 169, 77, 0.1);
            border-left: 4px solid #ffa94d;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(10, 25, 47, 0.85);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid #1a3a5f;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-top: 0;
            color: #ffcc00;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid #2a4a6e;
            margin-bottom: 1.2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            background-color: #0a192f;
            border: 1px solid #2a4a6e;
            border-right: none;
            border-radius: 6px 0 0 6px;
            color: #fff;
        }
        .search-form button {
            background-color: #ffcc00;
            color: #000;
            border: none;
            padding: 0 1.2rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ffd633;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #555;
            margin: 0.5rem 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star.active,
        .rating-stars .star:hover {
            color: #ffcc00;
        }
        form input, form textarea, form select {
            padding: 0.8rem;
            background-color: #0a192f;
            border: 1px solid #2a4a6e;
            border-radius: 6px;
            color: #fff;
        }
        form textarea {
            min-height: 120px;
            resize: vertical;
        }
        form button {
            background: linear-gradient(to right, #004e92, #000428);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 78, 146, 0.4);
        }
        .related-links ul {
            list-style: none;
        }
        .related-links li {
            padding: 0.7rem 0;
            border-bottom: 1px dashed #2a4a6e;
        }
        .related-links li:last-child {
            border-bottom: none;
        }
        .related-links a {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }
        .related-links i {
            color: #69db7c;
        }
        .site-footer {
            background: linear-gradient(to bottom, #000428, #000000);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid #ffcc00;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 204, 0, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 4px solid #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #8ab4f8;
            font-size: 0.9rem;
        }
