        * {
            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.7;
            color: #333;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #FFD700;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #FF4500;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-bold { font-weight: 700; }
        .text-highlight {
            background: linear-gradient(90deg, #FFD700, #FF8C00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }
        .section-padding {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(to right, #FFD700, #FF8C00);
            color: #1a1a2e;
            border-radius: 50px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
        }
        .site-header {
            background: rgba(0, 0, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid #FFD700;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, #FFD700, #FF4500, #00BFFF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo a:hover {
            animation: logoGlow 1.5s infinite alternate;
        }
        @keyframes logoGlow {
            from { filter: drop-shadow(0 0 5px #FFD700); }
            to { filter: drop-shadow(0 0 15px #FF4500); }
        }
        .nav-desktop {
            display: flex;
            gap: 25px;
        }
        .nav-desktop a {
            color: #f0f0f0;
            font-weight: 600;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            color: #FFD700;
            border-bottom-color: #FFD700;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #FFD700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 40, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border-top: 1px solid #FFD700;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: #f0f0f0;
            padding: 15px;
            border-bottom: 1px solid #222244;
            font-size: 1.1rem;
        }
        .nav-mobile a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: #FFD700;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(30, 30, 60, 0.8);
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #FFD700;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        .hero {
            background: radial-gradient(circle at center, #0c2461, #1a1a2e);
            padding: 80px 20px;
            text-align: center;
            border-bottom: 5px solid #FFD700;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 3px 10px rgba(0,0,0,0.7);
        }
        .hero h1 span {
            color: #FFD700;
        }
        .hero p {
            font-size: 1.3rem;
            color: #ddd;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(255, 255, 255, 0.97);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        article h1, article h2, article h3, article h4 {
            color: #1a1a2e;
            margin-top: 2em;
            margin-bottom: 0.8em;
            line-height: 1.3;
        }
        article h1 {
            font-size: 2.8rem;
            border-bottom: 5px solid #FFD700;
            padding-bottom: 15px;
        }
        article h2 {
            font-size: 2.2rem;
            color: #0c2461;
            border-left: 6px solid #FF4500;
            padding-left: 15px;
        }
        article h3 {
            font-size: 1.8rem;
            color: #1e3c72;
        }
        article h4 {
            font-size: 1.4rem;
            color: #2a5298;
        }
        article p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }
        article strong {
            color: #FF4500;
        }
        article em {
            color: #1e3c72;
            font-style: italic;
        }
        article ul, article ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        article li {
            margin-bottom: 0.8em;
        }
        .article-image {
            margin: 30px auto;
            max-width: 800px;
            border: 5px solid #FFD700;
        }
        .article-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .update-time {
            display: inline-block;
            background: #FFD700;
            color: #1a1a2e;
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            margin-top: 20px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border-top: 4px solid #FFD700;
        }
        .sidebar-widget h3 {
            color: #1a1a2e;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sidebar-widget h3 i {
            color: #FF4500;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 2px solid #ccc;
            border-right: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: linear-gradient(to right, #FFD700, #FF8C00);
            color: #1a1a2e;
            border: none;
            border-radius: 0 50px 50px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .search-form button:hover {
            background: linear-gradient(to right, #FF8C00, #FF4500);
        }
        .rating-widget .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            justify-content: center;
        }
        .rating-widget .stars i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .stars i:hover,
        .rating-widget .stars i.active {
            color: #FFD700;
        }
        .comment-form textarea,
        .score-form input,
        .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }
        .comment-form button,
        .score-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: linear-gradient(to right, #2a5298, #3a6bc5);
        }
        .site-footer {
            background: #0c0c1a;
            color: #aaa;
            padding: 50px 20px 20px;
            border-top: 5px solid #FFD700;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #FFD700;
            margin-bottom: 15px;
        }
        .footer-links h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 8px 15px;
            background: rgba(255,255,255,0.05);
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,215,0,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #777;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            article {
                padding: 25px;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            .main-content {
                padding: 20px 15px;
                gap: 25px;
            }
            .section-padding {
                padding: 40px 0;
            }
        }
