* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        body {
            background: #0d0d0d;
            color: #e0e0e0;
            line-height: 1.8;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            border-bottom: 2px solid #c9a84c;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(201, 168, 76, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #c9a84c;
            text-decoration: none;
            background: linear-gradient(135deg, #c9a84c, #f5e6a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .my-logo span {
            font-weight: 300;
            color: #f5e6a3;
            -webkit-text-fill-color: #f5e6a3;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #c9a84c;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(201, 168, 76, 0.15);
        }
        nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: all 0.25s ease;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 10px;
            right: 10px;
            height: 2px;
            background: #c9a84c;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        nav a:hover {
            color: #f5e6a3;
            background: rgba(201, 168, 76, 0.08);
        }
        nav a:hover::after {
            transform: scaleX(1);
        }
        .breadcrumb {
            background: #141414;
            padding: 10px 0;
            border-bottom: 1px solid #2a2a2a;
            font-size: 0.85rem;
            color: #999;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb ol li {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb ol li+li::before {
            content: '›';
            color: #c9a84c;
            font-size: 1.2rem;
            margin-right: 6px;
        }
        .breadcrumb a {
            color: #c9a84c;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #aaa;
        }
        main {
            padding: 30px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f5e6a3;
            margin: 0 0 12px 0;
            line-height: 1.2;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5e6a3, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0d87e;
            margin: 48px 0 16px 0;
            padding-bottom: 8px;
            border-bottom: 2px solid #2a2a2a;
            position: relative;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: #c9a84c;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #e8d48b;
            margin: 32px 0 12px 0;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #ddd4b0;
            margin: 24px 0 10px 0;
        }
        p {
            margin: 0 0 16px 0;
            color: #cfcfcf;
            font-size: 1.05rem;
        }
        .content-card {
            background: #181818;
            border-radius: 16px;
            padding: 28px 32px;
            margin: 24px 0;
            border-left: 4px solid #c9a84c;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.08);
        }
        .highlight-box {
            background: #1e1e1e;
            border-radius: 12px;
            padding: 20px 24px;
            margin: 20px 0;
            border: 1px solid #2f2f2f;
            position: relative;
        }
        .highlight-box::before {
            content: '⚡';
            position: absolute;
            top: -12px;
            left: 20px;
            background: #0d0d0d;
            padding: 0 8px;
            font-size: 1.2rem;
        }
        .feature-image {
            margin: 28px 0;
            border-radius: 14px;
            overflow: hidden;
            background: #1a1a1a;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .feature-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .feature-image:hover img {
            transform: scale(1.01);
        }
        .feature-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: #999;
            background: #111;
            border-top: 1px solid #2a2a2a;
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn-primary {
            background: #c9a84c;
            color: #0d0d0d;
        }
        .btn-primary:hover {
            background: #f5e6a3;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: #c9a84c;
            border: 1px solid #c9a84c;
        }
        .btn-outline:hover {
            background: #c9a84c;
            color: #0d0d0d;
        }
        .link-list-inline {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 6px 14px;
            margin: 12px 0;
        }
        .link-list-inline a {
            color: #c9a84c;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dotted transparent;
            transition: border-color 0.2s;
        }
        .link-list-inline a:hover {
            border-bottom-color: #c9a84c;
            color: #f5e6a3;
        }
        .search-section {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 32px;
            margin: 40px 0;
            border: 1px solid #2a2a2a;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 600px;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #c9a84c;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:768px) {
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
        .comment-section,
        .rating-section {
            background: #181818;
            border-radius: 16px;
            padding: 28px 30px;
            border: 1px solid #2a2a2a;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #e0e0e0;
            font-size: 1rem;
            min-height: 110px;
            resize: vertical;
            outline: none;
            transition: border 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #c9a84c;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
        }
        .comment-section input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid #333;
            background: #0d0d0d;
            color: #e0e0e0;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            margin: 8px 0 14px;
        }
        .comment-section input[type="text"]:focus {
            border-color: #c9a84c;
        }
        .rating-stars {
            display: flex;
            gap: 8px;
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            margin: 12px 0 18px;
            flex-wrap: wrap;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #f5c842;
            transform: scale(1.15);
        }
        footer {
            background: #0a0a0a;
            border-top: 2px solid #1f1f1f;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        @media (max-width:768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
        }
        .footer-brand p {
            color: #888;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        .footer-links h4 {
            color: #c9a84c;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .footer-links a {
            display: block;
            color: #999;
            text-decoration: none;
            padding: 4px 0;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: #f5e6a3;
        }
        friend-link {
            display: block;
            background: #111;
            border-radius: 12px;
            padding: 18px 22px;
            margin: 20px 0 10px;
            border: 1px solid #222;
            font-size: 0.9rem;
            color: #aaa;
        }
        friend-link a {
            color: #c9a84c;
            text-decoration: none;
            font-weight: 500;
        }
        friend-link a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding: 20px 20px 0;
            color: #666;
            font-size: 0.85rem;
            border-top: 1px solid #1a1a1a;
            margin-top: 28px;
        }
        .copyright a {
            color: #c9a84c;
            text-decoration: none;
        }
        @media (max-width:768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #1a1a1a;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 8px;
                border: 1px solid #2a2a2a;
            }
            nav.open {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .content-card {
                padding: 18px 16px;
            }
            .search-section {
                padding: 20px 16px;
            }
            .comment-section,
            .rating-section {
                padding: 20px 16px;
            }
            .header-inner {
                padding: 0 4px;
            }
        }
        @media (max-width:480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .breadcrumb ol {
                padding: 0 12px;
                font-size: 0.75rem;
            }
        }
        .tag {
            display: inline-block;
            background: #2a2a2a;
            color: #c9a84c;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .text-gold {
            color: #c9a84c;
        }
        .text-muted {
            color: #888;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        @media (max-width:640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .last-updated {
            color: #999;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 8px 0 24px;
        }
        .last-updated i {
            color: #c9a84c;
        }
        blockquote {
            border-left: 4px solid #c9a84c;
            padding: 14px 20px;
            margin: 20px 0;
            background: #1a1a1a;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d0d0d0;
        }
        blockquote cite {
            display: block;
            margin-top: 8px;
            font-size: 0.85rem;
            color: #999;
            font-style: normal;
        }
        hr {
            border: none;
            border-top: 1px solid #2a2a2a;
            margin: 32px 0;
        }
