        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a 0%, #1a1a3a 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #FFCC00;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: #FFFFFF;
            text-decoration: underline;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: #111122;
            border-bottom: 3px solid #FFCC00;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #FFCC00, #FF6600);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(255, 204, 0, 0.3);
            letter-spacing: -1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            color: #CCCCFF;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(255, 204, 0, 0.15);
            color: #FFCC00;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFCC00;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(20, 20, 40, 0.8);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #888;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            background: radial-gradient(circle at center, #222244, #0a0a2a);
            border-bottom: 2px dashed #FFCC00;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #FFCC00;
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #CCCCFF;
        }
        .content-area {
            flex: 1;
            padding: 2rem 0;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 60, 0.7);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        article h2 {
            color: #FF9900;
            font-size: 2.2rem;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #333366;
        }
        article h3 {
            color: #CCCCFF;
            font-size: 1.7rem;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
        }
        article h4 {
            color: #AAAAEE;
            font-size: 1.3rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        article p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        article em, article strong {
            color: #FFCC00;
        }
        .highlight-box {
            background: rgba(255, 204, 0, 0.08);
            border-left: 5px solid #FFCC00;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            margin: 2rem auto;
            text-align: center;
        }
        .game-image figcaption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .feature-list {
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }
        .feature-list li {
            margin-bottom: 0.7rem;
        }
        aside {
            background: rgba(25, 25, 50, 0.8);
            border-radius: 12px;
            padding: 1.8rem;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid #444477;
        }
        .widget {
            margin-bottom: 2.2rem;
        }
        .widget h3 {
            color: #FFCC00;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444477;
        }
        .search-form input,
        .comment-form input,
        .comment-form textarea,
        .rating-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border: 1px solid #555588;
            border-radius: 6px;
            background-color: #1a1a3a;
            color: #f0f0f0;
        }
        .search-form button,
        .comment-form button,
        .rating-form button {
            background: linear-gradient(90deg, #FF6600, #FFCC00);
            color: #111122;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            transition: opacity 0.3s;
        }
        .search-form button:hover,
        .comment-form button:hover,
        .rating-form button:hover {
            opacity: 0.9;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }
        .stars i {
            color: #555;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: #FFCC00;
        }
        .link-list a {
            display: block;
            padding: 0.7rem 0;
            border-bottom: 1px dashed #444477;
            color: #AAAAEE;
        }
        .link-list a:last-child {
            border-bottom: none;
        }
        .update-time {
            font-size: 0.9rem;
            color: #8888CC;
            text-align: center;
            margin-top: 1rem;
            font-style: italic;
        }
        .site-footer {
            background-color: #0a0a1a;
            border-top: 3px solid #333366;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #FFCC00;
            margin-bottom: 1.2rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #CCCCFF;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333366;
            color: #8888AA;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                max-height: 300px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
            }
            .main-nav li {
                width: 100%;
                border-bottom: 1px solid #333366;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article {
                padding: 1.5rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            aside {
                position: static;
            }
        }
