        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #f8b700;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffd95c;
            text-shadow: 0 0 8px rgba(248, 183, 0, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-highlight {
            color: #f8b700;
            font-weight: bold;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #f8b700 0%, #c78c00 100%);
            color: #0a0e17;
            border-radius: 4px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(248, 183, 0, 0.3);
        }
        .site-header {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #1a2233;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(to right, #f8b700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo a { background: none; -webkit-text-fill-color: inherit; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #f8b700;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #f8b700;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #111827;
            font-size: 0.9rem;
        }
        .breadcrumb a { margin: 0 5px; }
        .breadcrumb a:first-child { margin-left: 0; }
        .hero {
            background: linear-gradient(rgba(10, 14, 23, 0.8), rgba(10, 14, 23, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            padding: 30px;
            background-color: #1a2233;
            border-radius: 10px;
            border-left: 5px solid #f8b700;
        }
        .search-box h2 {
            margin-bottom: 20px;
            color: #fff;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: 1px solid #333;
            background: #0f1729;
            color: #fff;
            border-radius: 4px 0 0 4px;
        }
        .search-form button {
            padding: 0 25px;
            border-radius: 0 4px 4px 0;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: #111827;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article h2, article h3, article h4 {
            margin-top: 2em;
            margin-bottom: 0.8em;
            color: #fff;
            border-left: 4px solid #f8b700;
            padding-left: 15px;
        }
        article h2 { font-size: 2.2rem; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.4rem; color: #f8b700; }
        article p {
            margin-bottom: 1.5em;
            text-align: justify;
        }
        article strong {
            color: #ffd95c;
            font-weight: 700;
        }
        article em {
            font-style: italic;
            color: #aaa;
        }
        .article-img {
            margin: 30px auto;
            border: 2px solid #333;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .update-time {
            font-size: 0.9rem;
            color: #888;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px dashed #333;
            text-align: right;
        }
        .sidebar-widget {
            background-color: #111827;
            padding: 25px;
            margin-bottom: 30px;
            border-radius: 10px;
            border-top: 4px solid #f8b700;
        }
        .sidebar-widget h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .widget-links ul {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #222;
        }
        .comment-rating-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #1a2233;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #ccc;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background-color: #0f1729;
            border: 1px solid #333;
            border-radius: 4px;
            color: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            margin: 10px 0;
            color: #444;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f8b700;
        }
        .site-footer {
            background-color: #0a0e17;
            border-top: 1px solid #1a2233;
            padding: 50px 0 20px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        .footer-section h4 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background-color: #1a2233;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: #2a3344;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a2233;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: #0a0e17;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transition: left 0.5s ease;
                border-top: 1px solid #1a2233;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1rem; }
            article h2 { font-size: 1.8rem; }
            article h3 { font-size: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-form input { border-radius: 4px; margin-bottom: 10px; }
            .search-form button { border-radius: 4px; }
            .footer-section { flex: 100%; }
        }
