* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0d0d;
            color: #e8e6e3;
            line-height: 1.75;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #d4a843;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #f0d080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #141414;
            border-bottom: 2px solid #2a2a2a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: #d4a843;
            text-transform: uppercase;
            background: linear-gradient(135deg, #d4a843, #b8922e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #888;
            color: #888;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid #444;
            color: #d4a843;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #222;
        }
        .main-nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s ease;
        }
        .main-nav a:hover {
            color: #d4a843;
            border-bottom-color: #d4a843;
            text-decoration: none;
        }
        .main-nav .active {
            color: #d4a843;
            border-bottom-color: #d4a843;
        }
        .breadcrumb {
            background: #1a1a1a;
            padding: 12px 0;
            font-size: 0.85rem;
            color: #999;
            border-bottom: 1px solid #222;
        }
        .breadcrumb a {
            color: #b8922e;
        }
        .breadcrumb span {
            color: #666;
            margin: 0 6px;
        }
        .hero {
            padding: 48px 0 32px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1e1a12 0%, #0d0d0d 70%);
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f0e0b0;
            text-shadow: 0 0 30px rgba(212, 168, 67, 0.25);
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .subtitle {
            font-size: 1.1rem;
            color: #b8a88a;
            max-width: 750px;
            margin: 0 auto 16px;
        }
        .hero .meta {
            font-size: 0.85rem;
            color: #777;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            color: #d4a843;
            margin-right: 6px;
        }
        .featured-image {
            margin: 32px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
            max-width: 900px;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #1a1a1a;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #aaa;
            text-align: center;
            border-top: 1px solid #2a2a2a;
        }
        .content {
            padding: 32px 0 64px;
        }
        .content h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #d4a843;
            margin: 48px 0 18px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a2a2a;
            position: relative;
        }
        .content h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #d4a843;
        }
        .content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #e8d5b0;
            margin: 32px 0 12px;
        }
        .content h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #cfbfa0;
            margin: 24px 0 8px;
        }
        .content p {
            margin-bottom: 18px;
            color: #d5d2ce;
        }
        .content ul,
        .content ol {
            margin: 12px 0 20px 24px;
            color: #d5d2ce;
        }
        .content li {
            margin-bottom: 8px;
        }
        .content strong {
            color: #f0e0c0;
            font-weight: 700;
        }
        .content blockquote {
            border-left: 4px solid #d4a843;
            background: #1a1a1a;
            padding: 16px 24px;
            margin: 24px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #c8c0b0;
        }
        .content .highlight-box {
            background: #1e1a12;
            border: 1px solid #3a3228;
            border-radius: 10px;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .content .highlight-box h4 {
            margin-top: 0;
            color: #d4a843;
        }
        .link-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 12px;
            margin: 20px 0 28px;
        }
        .link-list a {
            display: block;
            background: #1a1a1a;
            padding: 12px 18px;
            border-radius: 8px;
            border: 1px solid #2a2a2a;
            transition: 0.25s ease;
            font-weight: 500;
        }
        .link-list a:hover {
            background: #242018;
            border-color: #d4a843;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .link-list a i {
            margin-right: 8px;
            color: #d4a843;
        }
        .search-section {
            background: #141414;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            padding: 28px 32px;
            margin: 40px 0;
            text-align: center;
        }
        .search-section h3 {
            margin-top: 0;
            color: #d4a843;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 16px auto 0;
            gap: 0;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border: 1px solid #3a3a3a;
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: #0d0d0d;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #d4a843;
        }
        .search-form button {
            padding: 14px 24px;
            border: none;
            background: #d4a843;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #e8c060;
        }
        .comments-section {
            background: #141414;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            padding: 28px 32px;
            margin: 40px 0;
        }
        .comments-section h3 {
            margin-top: 0;
            color: #d4a843;
        }
        .comment-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #3a3a3a;
            border-radius: 8px;
            background: #0d0d0d;
            color: #e8e6e3;
            font-size: 1rem;
            min-height: 110px;
            resize: vertical;
            outline: none;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form textarea:focus {
            border-color: #d4a843;
        }
        .comment-form .form-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin: 12px 0;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 1px solid #3a3a3a;
            border-radius: 8px;
            background: #0d0d0d;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .comment-form .form-row input:focus {
            border-color: #d4a843;
        }
        .comment-form .btn-submit {
            padding: 12px 32px;
            border: none;
            background: #d4a843;
            color: #0d0d0d;
            font-weight: 700;
            font-size: 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.25s;
            margin-top: 8px;
        }
        .comment-form .btn-submit:hover {
            background: #e8c060;
        }
        .rating-section {
            background: #141414;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            padding: 28px 32px;
            margin: 40px 0;
            text-align: center;
        }
        .rating-section h3 {
            margin-top: 0;
            color: #d4a843;
        }
        .stars {
            font-size: 2.2rem;
            color: #555;
            cursor: pointer;
            display: inline-flex;
            gap: 6px;
            margin: 12px 0;
            transition: color 0.2s;
        }
        .stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .stars i:hover,
        .stars i.active {
            color: #d4a843;
            transform: scale(1.15);
        }
        .rating-form .btn-submit {
            padding: 10px 28px;
            border: none;
            background: #d4a843;
            color: #0d0d0d;
            font-weight: 700;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form .btn-submit:hover {
            background: #e8c060;
        }
        footer {
            background: #0a0a0a;
            border-top: 2px solid #1a1a1a;
            padding: 40px 0 20px;
            margin-top: 48px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 28px;
        }
        footer h4 {
            color: #d4a843;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer p,
        footer a {
            color: #999;
            font-size: 0.9rem;
        }
        friend-link {
            display: block;
            background: #111;
            border: 1px solid #222;
            border-radius: 10px;
            padding: 16px 20px;
            margin-top: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            color: #b8922e;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a1a1a;
            color: #666;
            font-size: 0.82rem;
        }
        .copyright strong {
            color: #888;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 4px;
                padding: 12px 0 4px;
                border-top: 1px solid #2a2a2a;
                margin-top: 8px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 0;
                border-bottom: 1px solid #1f1f1f;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero .subtitle {
                font-size: 0.95rem;
            }
            .content h2 {
                font-size: 1.6rem;
            }
            .content h3 {
                font-size: 1.25rem;
            }
            .search-form {
                flex-direction: column;
                gap: 8px;
            }
            .search-form input {
                border-radius: 8px;
                border-right: 1px solid #3a3a3a;
            }
            .search-form button {
                border-radius: 8px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .stars {
                font-size: 1.8rem;
            }
            .link-list {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 6px;
            }
        }
        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .content section {
            animation: fadeUp 0.5s ease forwards;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0d0d;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
