        * {
            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: #e0d6c2;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #2a1f0c 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #f7e7a6;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 10, 0.95);
            border-bottom: 2px solid #3a2c0f;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(90deg, #d4af37, #f7e7a6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(212, 175, 55, 0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.98);
            border-top: 1px solid #3a2c0f;
            padding: 20px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px 15px;
            border-left: 3px solid #d4af37;
        }
        .breadcrumb {
            background-color: rgba(26, 26, 26, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #b0a06d;
        }
        .breadcrumb a:hover {
            color: #f7e7a6;
        }
        .breadcrumb span {
            color: #888;
            margin: 0 8px;
        }
        main {
            padding: 40px 0;
        }
        article {
            background-color: rgba(20, 20, 20, 0.8);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
            border: 1px solid #3a2c0f;
        }
        h1 {
            font-size: 3.2rem;
            color: #f7e7a6;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 3px solid #d4af37;
            padding-bottom: 20px;
            font-family: 'Cinzel', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        h2 {
            font-size: 2.4rem;
            color: #d4af37;
            margin: 50px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a2c0f;
            font-family: 'Cinzel', serif;
        }
        h3 {
            font-size: 1.8rem;
            color: #e6d29c;
            margin: 35px 0 15px;
            font-family: 'Cinzel', serif;
        }
        h4 {
            font-size: 1.4rem;
            color: #c9b67a;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            color: #f0e6cc;
            background-color: rgba(58, 44, 15, 0.2);
            padding: 25px;
            border-left: 5px solid #d4af37;
            border-radius: 5px;
            margin-bottom: 40px;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #d4af37;
            margin: 30px 0;
        }
        .quote {
            font-style: italic;
            color: #b0a06d;
            border-left: 4px solid #d4af37;
            padding-left: 25px;
            margin: 30px 0;
            font-size: 1.2rem;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: #d4af37;
            margin-top: 10px;
        }
        .img-container {
            margin: 40px auto;
            text-align: center;
            max-width: 900px;
        }
        .img-container img {
            border-radius: 8px;
            border: 2px solid #3a2c0f;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s ease;
        }
        .img-container img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-link {
            font-weight: bold;
            border-bottom: 1px dashed #d4af37;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: rgba(40, 35, 20, 0.6);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #4a3c1a;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #d4af37;
        }
        .stat-number {
            font-size: 2.8rem;
            color: #d4af37;
            font-weight: bold;
            display: block;
            line-height: 1;
        }
        .stat-label {
            color: #c9b67a;
            font-size: 1.1rem;
            margin-top: 10px;
        }
        .search-section, .comment-section, .rating-section {
            background-color: rgba(26, 26, 26, 0.9);
            border-radius: 10px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #3a2c0f;
        }
        .section-title {
            font-size: 1.8rem;
            color: #d4af37;
            margin-bottom: 25px;
            text-align: center;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin: 0 auto;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            color: #c9b67a;
            margin-bottom: 8px;
            font-weight: 600;
        }
        input, textarea, select {
            padding: 15px;
            background-color: rgba(15, 15, 15, 0.8);
            border: 1px solid #555;
            border-radius: 6px;
            color: #e0d6c2;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        button {
            background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
            color: #0c0c0c;
            border: none;
            padding: 16px 30px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        button:hover {
            background: linear-gradient(135deg, #e6c158 0%, #d4af37 100%);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
            transform: translateY(-2px);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd700;
        }
        footer {
            background-color: #0a0a0a;
            border-top: 2px solid #3a2c0f;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #d4af37;
            font-size: 1.5rem;
            margin-bottom: 25px;
            font-family: 'Cinzel', serif;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #b0a06d;
        }
        friend-link {
            display: block;
            margin: 10px 0;
            padding: 12px 15px;
            background-color: rgba(58, 44, 15, 0.3);
            border-radius: 6px;
            border-left: 4px solid #d4af37;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(212, 175, 55, 0.15);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.95rem;
        }
        .update-time {
            color: #d4af37;
            font-weight: bold;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            h3 { font-size: 1.6rem; }
            article { padding: 30px; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { padding: 15px 20px; }
            .container { padding: 0 15px; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            h3 { font-size: 1.5rem; }
            article { padding: 25px 20px; }
            .intro { font-size: 1.2rem; padding: 20px; }
            .search-section, .comment-section, .rating-section { padding: 25px 20px; }
            .stats-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .my-logo { font-size: 1.8rem; }
            .stat-number { font-size: 2.2rem; }
        }
