        * {
            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: #333;
            background-color: #f5f3ef;
            background-image: linear-gradient(to bottom, #f5f3ef 0%, #e8e5de 100%);
            max-width: 120rem;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a {
            color: #8b0000;
            text-decoration: none;
            transition: color 0.3s ease, border-bottom 0.3s ease;
        }
        a:hover {
            color: #5a0000;
            border-bottom: 1px dotted #5a0000;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
            color: #d4af37;
            padding: 1.5rem 1rem;
            border-bottom: 4px solid #8b0000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Times New Roman', serif;
            font-size: 2.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            background: linear-gradient(to right, #d4af37, #ffec8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo a {
            color: inherit;
            border-bottom: none;
        }
        .my-logo a:hover {
            border-bottom: none;
            opacity: 0.9;
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #ccc;
            padding: 0.5rem 0;
            margin-top: 0.5rem;
            width: 100%;
            order: 3;
        }
        .breadcrumb a {
            color: #ffec8b;
        }
        .main-nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            color: #f0e6d2;
            font-weight: 600;
            padding: 0.5rem 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover, .nav-links a.active {
            color: #d4af37;
            border-bottom-color: #d4af37;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #d4af37;
            cursor: pointer;
        }
        .search-container {
            margin: 2rem auto;
            max-width: 800px;
            text-align: center;
        }
        .search-form {
            display: flex;
            border: 2px solid #8b0000;
            border-radius: 50px;
            overflow: hidden;
            background: white;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-button {
            background: linear-gradient(to right, #8b0000, #a52a2a);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(to right, #a52a2a, #8b0000);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-left: 8px solid #8b0000;
        }
        aside {
            background: #fffaf0;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            border-top: 5px solid #d4af37;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px double #d4af37;
            padding-bottom: 0.5rem;
            text-align: center;
        }
        h2 {
            font-size: 2.4rem;
            color: #8b0000;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e0c56e;
        }
        h3 {
            font-size: 1.8rem;
            color: #5a0000;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #333;
            margin: 1.5rem 0 0.8rem;
            font-style: italic;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: #444;
            background: #fffaf0;
            padding: 1.5rem;
            border-left: 4px solid #d4af37;
            border-radius: 0 5px 5px 0;
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #ffec8b80 0%, #ffec8b80 100%);
            padding: 0.2rem 0.4rem;
            border-radius: 3px;
        }
        .important {
            font-weight: bold;
            color: #8b0000;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 8px;
            margin: 2.5rem auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 5px solid #fff;
            outline: 1px solid #ddd;
        }
        .interaction-section {
            margin: 4rem 0;
            padding: 2.5rem;
            background: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #ddd;
        }
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #1a1a1a;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.9rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #8b0000;
            outline: none;
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        }
        .submit-btn {
            background: linear-gradient(to right, #8b0000, #5a0000);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
        }
        .star-rating {
            direction: rtl;
            display: inline-block;
            font-size: 2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            cursor: pointer;
            padding: 0 0.1rem;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: #8b0000;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .link-list li:before {
            content: '⚔️';
            position: absolute;
            left: 0;
        }
        .update-time {
            font-size: 0.9rem;
            color: #666;
            text-align: center;
            padding: 1rem;
            background: #f0e6d2;
            border-radius: 5px;
        }
        .site-footer {
            background: #1a1a1a;
            color: #f0e6d2;
            padding: 3rem 1rem;
            margin-top: 4rem;
            border-top: 5px solid #8b0000;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-title {
            color: #d4af37;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #444;
            padding-bottom: 0.5rem;
        }
        friend-link {
            display: block;
            margin-bottom: 0.8rem;
            color: #ffec8b;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .main-nav {
                width: 100%;
                justify-content: space-between;
                margin-top: 1rem;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                border-bottom: 1px solid #444;
            }
            .nav-links a {
                display: block;
                padding: 1rem;
            }
            .hamburger {
                display: block;
            }
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article, aside { padding: 1.5rem; }
            .interaction-section { padding: 1.5rem; }
        }
