        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            background-attachment: fixed;
            min-height: 100vh;
            padding-bottom: 60px;
        }
        a { color: #4da6ff; text-decoration: none; transition: color 0.3s ease, transform 0.2s; }
        a:hover { color: #80c1ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; border-radius: 10px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5); }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .highlight { background: linear-gradient(90deg, #ff8a00, #e52e71); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(90deg, #00c6ff, #0072ff);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 25px rgba(0, 114, 255, 0.6); }
        .site-header { background: rgba(10, 25, 47, 0.95); backdrop-filter: blur(10px); padding: 15px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #00c6ff; }
        .header-content { display: flex; justify-content: space-between; align-items: center; }
        .my-logo a { font-family: 'Arial Black', sans-serif; font-size: 2.2rem; background: linear-gradient(90deg, #ff0080, #00c6ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 15px rgba(0, 198, 255, 0.3); }
        .my-logo a:hover { text-shadow: 0 0 25px rgba(0, 198, 255, 0.7); }
        .nav-desktop { display: flex; gap: 30px; }
        .nav-desktop a { font-weight: 600; font-size: 1.1rem; padding: 8px 0; border-bottom: 2px solid transparent; }
        .nav-desktop a:hover { border-bottom-color: #00c6ff; }
        .hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #00c6ff; }
        .nav-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 25, 47, 0.98); flex-direction: column; padding: 20px; border-top: 1px solid #1a3a5f; }
        .nav-mobile.active { display: flex; }
        .nav-mobile a { padding: 15px 0; border-bottom: 1px solid #2a4a7a; font-size: 1.2rem; }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #a0c8ff; }
        .breadcrumb a:hover { text-decoration: underline; }
        .hero { text-align: center; padding: 60px 20px; background: radial-gradient(circle at center, #1a3a5f 0%, #0c1a2d 100%); margin-bottom: 40px; border-radius: 0 0 30px 30px; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.2; }
        .search-form { max-width: 600px; margin: 40px auto; display: flex; }
        .search-input { flex-grow: 1; padding: 18px 25px; border: 2px solid #00c6ff; border-radius: 50px 0 0 50px; background: rgba(255, 255, 255, 0.1); color: white; font-size: 1.1rem; }
        .search-btn { padding: 18px 30px; background: linear-gradient(90deg, #00c6ff, #0072ff); color: white; border: none; border-radius: 0 50px 50px 0; cursor: pointer; font-weight: bold; }
        .main-content { display: grid; grid-template-columns: 1fr 300px; gap: 50px; margin-top: 30px; }
        @media (max-width: 992px) { .main-content { grid-template-columns: 1fr; } }
        article { background: rgba(20, 40, 70, 0.7); padding: 40px; border-radius: 20px; border: 1px solid #2a5a9a; }
        .article-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px dashed #3a6aaa; color: #a0c8ff; font-size: 0.95rem; }
        .update-time i { margin-right: 8px; color: #00ffaa; }
        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; margin: 50px 0 25px; padding-bottom: 15px; border-bottom: 3px solid #ff8a00; }
        h3 { font-size: 2rem; margin: 40px 0 20px; color: #4da6ff; }
        h4 { font-size: 1.6rem; margin: 30px 0 15px; color: #80c1ff; }
        p, li { margin-bottom: 1.5rem; font-size: 1.15rem; color: #d0e4ff; }
        strong { color: #ffffff; font-weight: 800; }
        ul, ol { padding-left: 30px; margin-bottom: 25px; }
        blockquote { border-left: 5px solid #ff0080; padding-left: 25px; margin: 30px 0; font-style: italic; background: rgba(255, 0, 128, 0.08); padding: 20px; border-radius: 0 10px 10px 0; }
        aside { background: rgba(20, 40, 70, 0.7); padding: 30px; border-radius: 20px; border: 1px solid #2a5a9a; height: fit-content; }
        .sidebar-widget { margin-bottom: 40px; }
        .sidebar-widget h3 { font-size: 1.5rem; margin-bottom: 20px; color: #ff8a00; }
        .rating-widget, .comment-widget { background: rgba(10, 25, 47, 0.8); padding: 25px; border-radius: 15px; margin-top: 30px; }
        .rating-stars { font-size: 2rem; color: #ffd700; margin: 15px 0; cursor: pointer; }
        .rating-stars span { cursor: pointer; transition: transform 0.2s; }
        .rating-stars span:hover { transform: scale(1.3); }
        .comment-form textarea, .comment-form input { width: 100%; padding: 15px; margin-bottom: 15px; background: rgba(255, 255, 255, 0.1); border: 1px solid #3a6aaa; border-radius: 10px; color: white; font-size: 1rem; }
        .comment-form textarea { min-height: 150px; resize: vertical; }
        .featured-img { margin: 40px 0; text-align: center; }
        .img-caption { font-style: italic; color: #a0c8ff; margin-top: 10px; font-size: 0.95rem; }
        .internal-links { background: rgba(0, 114, 255, 0.1); padding: 25px; border-radius: 15px; margin: 30px 0; border-left: 5px solid #00c6ff; }
        .internal-links ul { list-style: none; padding-left: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
        .internal-links li:before { content: '🎮'; margin-right: 10px; }
        .site-footer { background: rgba(5, 15, 30, 0.98); margin-top: 80px; padding: 50px 0 30px; border-top: 3px solid #ff8a00; }
        .friend-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin: 30px 0; }
        friend-link { display: inline-block; padding: 12px 25px; background: rgba(255, 138, 0, 0.1); border-radius: 50px; border: 1px solid #ff8a00; transition: all 0.3s; }
        friend-link:hover { background: rgba(255, 138, 0, 0.3); transform: scale(1.05); }
        .copyright { text-align: center; margin-top: 40px; color: #7a9ccc; font-size: 0.9rem; padding-top: 20px; border-top: 1px solid #2a4a7a; }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-desktop { display: none; }
            .hero h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.7rem; }
            article, aside { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 50px; margin-bottom: 10px; }
        }
