        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f8f6f2;
            color: #1e1a17;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #7a6508;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        hr {
            border: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, #f0e68c, #d4af37);
            margin: 2.5rem 0;
            opacity: 0.35;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(145deg, #0e0b08 0%, #1f1a15 100%);
            padding: 1rem 0;
            border-bottom: 4px solid #d4af37;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0e68c, #d4af37, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.6rem;
            -webkit-text-fill-color: #b8a88a;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e8ddd0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(212, 175, 55, 0.2);
            color: #f0e68c;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f0e68c;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumbs {
            background: #ede7dd;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #d4c9b5;
        }
        .breadcrumbs .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumbs a {
            color: #7a6508;
        }
        .breadcrumbs span {
            color: #4a3f32;
        }
        .hero {
            background: linear-gradient(135deg, #1f1a15 0%, #2f2820 50%, #1a1410 100%);
            color: #f5efe6;
            padding: 3rem 0 2.5rem;
            border-bottom: 3px solid #d4af37;
            position: relative;
        }
        .hero::after {
            content: "⚔️";
            position: absolute;
            right: 5%;
            bottom: 10%;
            font-size: 4rem;
            opacity: 0.1;
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #f0e68c, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 720px;
            color: #c8bcab;
        }
        .hero .meta-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 1.25rem;
            font-size: 0.9rem;
            color: #b8a88a;
        }
        .hero .meta-badge i {
            color: #d4af37;
            margin-right: 0.4rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        .sidebar .card {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.8rem;
            border: 1px solid #ede7dd;
        }
        .sidebar .card h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
            color: #2f2820;
        }
        .sidebar .card ul {
            list-style: none;
        }
        .sidebar .card ul li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed #ede7dd;
        }
        .sidebar .card ul li:last-child {
            border-bottom: none;
        }
        .sidebar .card ul li a {
            font-weight: 500;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1f1a15;
            margin: 2.2rem 0 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 3px solid #d4af37;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2f2820;
            margin: 1.8rem 0 0.8rem;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #4a3f32;
            margin: 1.4rem 0 0.6rem;
        }
        .content-area p {
            margin-bottom: 1.1rem;
            color: #2a2420;
        }
        .content-area ul,
        .content-area ol {
            margin: 0.8rem 0 1.2rem 1.6rem;
            color: #2a2420;
        }
        .content-area li {
            margin-bottom: 0.4rem;
        }
        .highlight-box {
            background: #f5efe6;
            border-left: 5px solid #d4af37;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #7a6508;
        }
        .insight-quote {
            font-style: italic;
            background: #ede7dd;
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            position: relative;
            margin: 1.6rem 0;
            color: #3a322a;
        }
        .insight-quote::before {
            content: "💬";
            font-size: 2rem;
            position: absolute;
            top: -0.8rem;
            left: 1rem;
        }
        .featured-figure {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-figure img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            background: #f5efe6;
            padding: 0.75rem 1.2rem;
            font-size: 0.9rem;
            color: #4a3f32;
            font-style: italic;
            border-top: 2px solid #d4af37;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            max-width: 500px;
            margin: 1.5rem 0;
        }
        .search-form input {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #d4c9b5;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #d4af37;
        }
        .search-form button {
            padding: 0.75rem 1.6rem;
            background: #d4af37;
            border: none;
            border-radius: 40px;
            color: #1f1a15;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #b8860b;
            transform: scale(1.02);
            color: #fff;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
            margin: 2rem 0;
            border: 1px solid #ede7dd;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border: 2px solid #e0d6c8;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            outline: none;
            transition: border-color 0.3s;
            background: #faf8f5;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #d4af37;
        }
        .comment-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            background: #d4af37;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            color: #1f1a15;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #b8860b;
            transform: scale(1.02);
            color: #fff;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #d4af37;
        }
        friend-link {
            display: block;
            background: #1f1a15;
            color: #e8ddd0;
            padding: 2rem 0;
            margin-top: 2rem;
            border-top: 4px solid #d4af37;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.8rem;
            justify-content: center;
        }
        friend-link a {
            color: #f0e68c;
            font-weight: 500;
            padding: 0.3rem 0.6rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link a:hover {
            background: rgba(212, 175, 55, 0.15);
            text-decoration: none;
        }
        .site-footer {
            background: #0e0b08;
            color: #b8a88a;
            padding: 1.8rem 0;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid #2f2820;
        }
        .site-footer .container {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }
        .site-footer a {
            color: #d4af37;
        }
        .quick-links li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .quick-links li a i {
            width: 1.2rem;
            color: #b8860b;
        }
        @media (max-width: 900px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 700px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.75rem;
                gap: 0.2rem;
            }
            .nav-menu a {
                text-align: center;
                padding: 0.7rem 1rem;
                border-radius: 10px;
            }
            #nav-toggle:checked+.hamburger+.nav-menu {
                display: flex;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .comment-section,
            .rating-section {
                padding: 1.2rem;
            }
            .breadcrumbs .container {
                font-size: 0.75rem;
            }
            friend-link .container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .header-inner {
                gap: 0.4rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero h1 {
                font-size: 1.3rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
            .my-logo small {
                font-size: 0.5rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #ede7dd;
        }
        ::-webkit-scrollbar-thumb {
            background: #b8860b;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #7a6508;
        }
        @media print {
            .site-header {
                position: static;
            }
            .sidebar,
            .search-form,
            .comment-section,
            .rating-section {
                display: none;
            }
            .main-grid {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 1rem 0;
            }
        }
