        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #c19d53;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #f0d48a;
            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;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #d4af37;
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.5rem;
            text-align: center;
            background: linear-gradient(90deg, #d4af37, #f0d48a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 5px solid #c19d53;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #e8c56c;
        }
        h4 {
            font-size: 1.4rem;
            color: #f0d48a;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        strong {
            color: #d4af37;
            font-weight: 700;
        }
        em {
            color: #b0b0b0;
        }
        blockquote {
            border-left: 4px solid #c19d53;
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #aaa;
            background: rgba(193, 157, 83, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        header {
            background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0f 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: #f0d48a;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c19d53;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #d4af37;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #111116;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            padding-left: 0;
            margin: 0;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #666;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .hero {
            background: radial-gradient(ellipse at center, #1c1c25 0%, #0a0a0f 70%);
            text-align: center;
            padding: 80px 20px;
            border-bottom: 2px solid #2a2a35;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 20px auto;
            color: #ccc;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
            background: rgba(26, 26, 36, 0.8);
            border-radius: 12px;
            border: 1px solid #333;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #444;
            border-radius: 8px 0 0 8px;
            background: #1a1a24;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            padding: 15px 25px;
            background: linear-gradient(135deg, #c19d53, #a67c00);
            color: #000;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #d4af37, #c19d53);
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .card {
            background: #151520;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a35;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(193, 157, 83, 0.2);
        }
        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card-content {
            padding: 25px;
        }
        .card h3 {
            margin-top: 0;
        }
        .rating-section, .comments-section {
            background: #151520;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
            border: 1px solid #2a2a35;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #444;
        }
        .rating-stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #d4af37;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            background: #1a1a24;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 15px 30px;
            background: linear-gradient(135deg, #c19d53, #a67c00);
            color: #000;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, #d4af37, #c19d53);
        }
        footer {
            background: #0c0c12;
            padding: 60px 0 30px;
            border-top: 2px solid #2a2a35;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-links h4 {
            margin-bottom: 20px;
        }
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        friend-link {
            display: block;
            background: #151520;
            padding: 15px;
            margin: 10px 0;
            border-radius: 8px;
            border-left: 4px solid #c19d53;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        .update-time {
            color: #c19d53;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .header-container { flex-wrap: wrap; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #151520;
                padding: 20px;
                border-radius: 8px;
                margin-top: 20px;
            }
            nav ul.show { display: flex; }
            .hamburger { display: block; }
            .content-grid { grid-template-columns: 1fr; }
            .rating-section, .comments-section { padding: 25px; }
        }
        .text-center { text-align: center; }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .py-2 { padding-top: 2rem; padding-bottom: 2rem; }
        .highlight {
            background: rgba(193, 157, 83, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
