        * { 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: #e8e6e3;
            background-color: #121212;
            background-image: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #f0b343; text-decoration: none; transition: color 0.3s ease, border-bottom 0.3s ease; }
        a:hover { color: #ffd57a; border-bottom: 1px dashed #ffd57a; }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
        .site-header {
            background-color: #1e1e1e;
            border-bottom: 3px solid #f0b343;
            padding: 1.2rem 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;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f0b343;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-shadow: 2px 2px 4px #000;
        }
        .my-logo span { color: #c93c3c; }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #ddd;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover, .main-nav a:focus {
            background-color: #333;
            color: #f0b343;
            border-bottom: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0b343;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a { color: #ccc; }
        .hero {
            background: linear-gradient(rgba(30, 30, 30, 0.85), rgba(18, 18, 18, 0.95)), 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: 4rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #444;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #f0b343;
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #ccc;
        }
        .search-form {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #444;
            border-radius: 50px 0 0 50px;
            background: #2a2a2a;
            color: #fff;
            font-size: 1rem;
        }
        .search-form button {
            padding: 1rem 2rem;
            background: linear-gradient(to right, #f0b343, #c93c3c);
            color: #121212;
            border: none;
            border-radius: 0 50px 50px 0;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            background: linear-gradient(to right, #ffc966, #d95353);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        main article {
            background: #1e1e1e;
            padding: 2.5rem;
            border-radius: 10px;
            border: 1px solid #333;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        h1, h2, h3, h4 {
            color: #f0b343;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 { font-size: 2.8rem; border-bottom: 3px solid #c93c3c; padding-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; border-left: 5px solid #c93c3c; padding-left: 1rem; }
        h3 { font-size: 1.8rem; color: #ddd; }
        h4 { font-size: 1.5rem; color: #bbb; }
        p, li {
            margin-bottom: 1.5rem;
            color: #ccc;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: #2a2a2a;
            border-left: 5px solid #f0b343;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight-box strong { color: #f0b343; }
        ul, ol { padding-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.7rem; }
        .article-img {
            width: 100%;
            margin: 2.5rem auto;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #444;
        }
        .article-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .article-img:hover img {
            transform: scale(1.02);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #999;
            padding: 0.8rem;
            background: #252525;
            border-top: 1px solid #444;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #f0b343;
            text-align: center;
            padding: 2rem;
            border-top: 2px solid #c93c3c;
            border-bottom: 2px solid #c93c3c;
            margin: 3rem 0;
            background: rgba(240, 179, 67, 0.05);
        }
        .update-time {
            text-align: right;
            font-size: 0.9rem;
            color: #888;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
        aside {
            background: #1e1e1e;
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid #333;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #f0b343;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #444;
        }
        .related-links a {
            display: block;
            padding: 0.8rem 1rem;
            margin-bottom: 0.8rem;
            background: #252525;
            border-radius: 6px;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: #2d2d2d;
            border-left-color: #f0b343;
            border-bottom: none;
        }
        .interaction-section {
            background: #1e1e1e;
            padding: 2.5rem;
            border-radius: 10px;
            margin-top: 3rem;
            border: 1px solid #333;
        }
        .rating-widget {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #f0b343;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #ddd;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: #252525;
            border: 1px solid #444;
            border-radius: 6px;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(to right, #f0b343, #c93c3c);
            color: #121212;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            background: linear-gradient(to right, #ffc966, #d95353);
        }
        .site-footer {
            background-color: #1a1a1a;
            border-top: 3px solid #f0b343;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-widget h4 {
            color: #f0b343;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            color: #bbb;
            padding: 0.5rem 0;
            border-bottom: 1px dotted #333;
        }
        .footer-links a:hover {
            color: #f0b343;
            padding-left: 0.5rem;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
            padding: 0.8rem;
            background: #252525;
            border-radius: 6px;
            text-align: center;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
            aside { position: static; }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1e1e1e;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #333;
                box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            }
            .main-nav.active ul { display: flex; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.2rem; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
        }
