        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #d4a017, #f5c542);
            color: #1a1a1a;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(212, 160, 23, 0.5);
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #d4a017;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #d4a017, #ffd166);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.8; }
            100% { opacity: 1; }
        }
        .search-box {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 5px;
            flex-grow: 0.4;
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 10px 20px;
            color: #fff;
            width: 100%;
            outline: none;
        }
        .search-box button {
            background: #d4a017;
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            cursor: pointer;
            color: #0c1a2d;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #d4a017;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav {
            background: rgba(20, 40, 70, 0.9);
            padding: 12px 0;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            color: #b8d4ff;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background: rgba(212, 160, 23, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            background: rgba(30, 50, 80, 0.5);
        }
        .breadcrumb a {
            color: #a0c8ff;
        }
        .breadcrumb span {
            color: #d4a017;
            margin: 0 8px;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(25, 45, 75, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #3a5a8a;
            font-size: 0.95rem;
            color: #a0c8ff;
        }
        .update-time {
            color: #f5c542;
        }
        h1 {
            font-size: 2.8rem;
            color: #f5c542;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #3a5a8a;
        }
        h3 {
            font-size: 1.6rem;
            color: #a0c8ff;
            margin: 30px 0 15px;
        }
        h4 {
            font-size: 1.3rem;
            color: #c2d9ff;
            margin: 25px 0 12px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #ffd166;
            font-weight: 600;
            border-left: 4px solid #d4a017;
            padding-left: 20px;
            margin: 30px 0;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(10, 30, 60, 0.9));
            border-left: 5px solid #d4a017;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: inset 0 0 15px rgba(0,0,0,0.3);
        }
        .image-wrapper {
            margin: 35px 0;
            text-align: center;
        }
        .image-wrapper img {
            box-shadow: 0 8px 25px rgba(0,0,0,0.6);
            border: 3px solid #3a5a8a;
        }
        .image-caption {
            font-style: italic;
            color: #a0c8ff;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        aside {
            background: rgba(25, 45, 75, 0.8);
            border-radius: 15px;
            padding: 25px;
            height: fit-content;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .widget {
            margin-bottom: 35px;
        }
        .widget-title {
            color: #f5c542;
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 1px solid #3a5a8a;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .related-links li:before {
            content: '♦';
            color: #d4a017;
            position: absolute;
            left: 0;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
            font-size: 1.8rem;
            color: #555;
            margin: 10px 0;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars .star.active,
        .stars .star:hover {
            color: #ffd700;
        }
        .comment-form textarea {
            width: 100%;
            background: rgba(255,255,255,0.08);
            border: 1px solid #3a5a8a;
            border-radius: 8px;
            padding: 15px;
            color: #fff;
            resize: vertical;
            min-height: 120px;
            margin-bottom: 15px;
            outline: none;
        }
        footer {
            background: #0a192f;
            border-top: 2px solid #d4a017;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 30px;
        }
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        friend-link {
            display: block;
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            text-align: center;
            font-weight: 600;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2a4a7a;
            color: #8aacc8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 25, 47, 0.98);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                display: flex;
            }
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                flex-grow: 1;
                margin-top: 15px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article, aside {
                padding: 25px;
            }
        }
