* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f5f0eb;
            color: #2c1810;
            line-height: 1.8;
            font-size: 16px;
        }
        :root {
            --gold: #c9a84c;
            --dark-gold: #a8882c;
            --burgundy: #5d1a1a;
            --cream: #fdf8f0;
            --charcoal: #2c1810;
            --warm-gray: #6b5b4e;
            --light-gray: #e8e0d8;
            --shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
            --radius: 12px;
        }
        a {
            color: var(--burgundy);
            text-decoration: none;
            transition: color 0.25s, border-color 0.25s;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: var(--gold);
            border-bottom-color: var(--gold);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: var(--charcoal);
            color: var(--cream);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--gold);
            border: none;
            background: linear-gradient(135deg, #f5d87a, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }
        .my-logo:hover {
            border: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.75rem;
            display: block;
            -webkit-text-fill-color: var(--cream);
            color: var(--cream);
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--cream);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: var(--cream);
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            border: none;
            transition: background 0.25s, color 0.25s;
        }
        .nav-menu a:hover {
            background: var(--gold);
            color: var(--charcoal);
            border: none;
        }
        .nav-menu .active {
            background: rgba(201, 168, 76, 0.2);
            color: var(--gold);
        }
        .breadcrumb {
            background: var(--cream);
            padding: 12px 0;
            border-bottom: 1px solid var(--light-gray);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: var(--warm-gray);
        }
        .breadcrumb a {
            color: var(--warm-gray);
            border: none;
        }
        .breadcrumb a:hover {
            color: var(--burgundy);
        }
        .breadcrumb .current {
            color: var(--charcoal);
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #2c1810 0%, #3d241a 100%);
            color: var(--cream);
            padding: 64px 0 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚡";
            font-size: 16rem;
            position: absolute;
            right: -40px;
            bottom: -60px;
            opacity: 0.06;
            transform: rotate(15deg);
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #f5d87a, #c9a84c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 24px;
            opacity: 0.85;
        }
        .hero .meta {
            font-size: 0.95rem;
            opacity: 0.7;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .search-module {
            background: var(--cream);
            padding: 24px 0;
            border-bottom: 1px solid var(--light-gray);
        }
        .search-form {
            display: flex;
            gap: 12px;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: white;
        }
        .search-form input:focus {
            border-color: var(--gold);
        }
        .search-form button {
            background: var(--burgundy);
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #7a2222;
            transform: scale(1.02);
        }
        .content {
            padding: 48px 0 64px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body h2 {
            font-size: 2.2rem;
            margin: 48px 0 16px;
            color: var(--charcoal);
            border-left: 6px solid var(--gold);
            padding-left: 20px;
        }
        .article-body h3 {
            font-size: 1.6rem;
            margin: 32px 0 12px;
            color: var(--burgundy);
        }
        .article-body h4 {
            font-size: 1.2rem;
            margin: 24px 0 8px;
            color: var(--warm-gray);
            font-weight: 700;
        }
        .article-body p {
            margin-bottom: 20px;
            color: #3d2e24;
        }
        .article-body ul,
        .article-body ol {
            margin: 16px 0 24px 24px;
            color: #3d2e24;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body .highlight-box {
            background: var(--cream);
            border-left: 6px solid var(--gold);
            padding: 24px 28px;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 32px 0;
            box-shadow: var(--shadow);
        }
        .article-body .highlight-box strong {
            color: var(--burgundy);
        }
        .article-body .emoji-lg {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .article-image-wrapper {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--cream);
            padding: 8px;
            box-shadow: var(--shadow);
        }
        .article-image-wrapper img {
            width: 100%;
            border-radius: calc(var(--radius) - 4px);
        }
        .article-image-wrapper figcaption {
            padding: 12px 16px 8px;
            font-size: 0.9rem;
            color: var(--warm-gray);
            font-style: italic;
            text-align: center;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        .sidebar-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 24px;
            border: 1px solid var(--light-gray);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            color: var(--burgundy);
            margin-bottom: 12px;
            border-bottom: 2px solid var(--gold);
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
        }
        .sidebar-card li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar-card li::before {
            content: "⚡";
            position: absolute;
            left: 0;
            font-size: 0.8rem;
            top: 2px;
        }
        .sidebar-card a {
            font-weight: 500;
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 48px 0 32px;
        }
        @media (max-width: 640px) {
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        .interaction-card {
            background: var(--cream);
            border-radius: var(--radius);
            padding: 24px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
        }
        .interaction-card h3 {
            font-size: 1.3rem;
            color: var(--burgundy);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interaction-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .interaction-card input,
        .interaction-card textarea,
        .interaction-card select {
            padding: 12px 16px;
            border: 2px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
            background: white;
            font-family: inherit;
        }
        .interaction-card input:focus,
        .interaction-card textarea:focus,
        .interaction-card select:focus {
            border-color: var(--gold);
        }
        .interaction-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .interaction-card button {
            background: var(--burgundy);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .interaction-card button:hover {
            background: #7a2222;
            transform: scale(1.01);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: var(--light-gray);
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            transition: color 0.2s, transform 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--gold);
            transform: scale(1.1);
        }
        footer {
            background: var(--charcoal);
            color: var(--cream);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            footer .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                background: var(--charcoal);
                padding: 16px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                margin-top: 12px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-toggle {
                display: block;
            }
            .header-inner {
                align-items: center;
            }
        }
        footer h4 {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        footer a {
            color: var(--cream);
            opacity: 0.8;
            border: none;
        }
        footer a:hover {
            opacity: 1;
            color: var(--gold);
            border: none;
        }
        footer .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 16px;
        }
        footer .friend-links a {
            font-size: 0.95rem;
        }
        footer .copyright {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.7;
            padding-top: 16px;
        }
        footer .copyright strong {
            color: var(--gold);
            opacity: 1;
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                justify-content: center;
            }
            .article-body h2 {
                font-size: 1.6rem;
            }
            .article-body h3 {
                font-size: 1.3rem;
            }
            .interaction-area {
                grid-template-columns: 1fr;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .text-gold {
            color: var(--gold);
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
