        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #faf8f5;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c8392b;
            text-decoration: none;
            transition: color 0.2s, border-color 0.2s;
        }
        a:hover,
        a:focus-visible {
            color: #9e2a1f;
            text-decoration: underline;
        }
        a:focus-visible {
            outline: 2px dashed #c8392b;
            outline-offset: 4px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: #12121c;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 2.8rem;
            margin-bottom: 1rem;
            border-left: 5px solid #f7b731;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h4 {
            font-size: 1.15rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2rem;
            word-spacing: 0.02em;
        }
        .container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
            padding: 0.9rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            border-bottom: 3px solid #f7b731;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.6rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #f7d44a;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            text-shadow: 0 0 12px rgba(247, 183, 49, 0.25);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffe066;
        }
        .my-logo i {
            font-size: 1.8rem;
            color: #f7b731;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            color: #aaa;
            letter-spacing: 0.12em;
            display: block;
            line-height: 1;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7b731;
            color: #f7b731;
            font-size: 1.6rem;
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(247, 183, 49, 0.12);
        }
        .primary-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .primary-nav a {
            color: #eee;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .primary-nav a:hover,
        .primary-nav a.active {
            background: #f7b731;
            color: #0f0f1a;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 0.35rem;
        }
        .breadcrumb {
            background: #f1ede8;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d8cf;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.5rem;
            color: #8a7e72;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6b5e53;
        }
        .breadcrumb a:hover {
            color: #c8392b;
        }
        .breadcrumb .current {
            color: #1e1e2a;
            font-weight: 600;
        }
        .search-section {
            background: #f1ede8;
            padding: 1.2rem 0;
            border-bottom: 1px solid #e0d8cf;
        }
        .search-form {
            display: flex;
            gap: 0.6rem;
            max-width: 600px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 0.75rem 1.2rem;
            border: 2px solid #d4c9be;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #c8392b;
            box-shadow: 0 0 0 4px rgba(200, 57, 43, 0.12);
            outline: none;
        }
        .search-form button {
            padding: 0.7rem 1.8rem;
            background: #c8392b;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #a32c20;
            transform: scale(1.02);
        }
        .hero {
            padding: 2.5rem 0 1.8rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #c8392b, #f7b731);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        .hero .subtitle {
            font-size: 1.15rem;
            color: #5a4f44;
            max-width: 720px;
            margin: 0.5rem auto 1.2rem;
        }
        .hero .meta-info {
            font-size: 0.9rem;
            color: #7a6f64;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .hero .meta-info i {
            margin-right: 0.3rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2.5rem;
            padding: 1.8rem 0 3rem;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            border-left: 1px solid #e0d8cf;
            padding-left: 2rem;
        }
        .sidebar .widget {
            background: #f3f0eb;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
        }
        .sidebar .widget h3 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #f7b731;
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        .sidebar .widget ul {
            list-style: none;
            padding: 0;
        }
        .sidebar .widget li {
            margin-bottom: 0.5rem;
        }
        .sidebar .widget a {
            color: #2a2a3a;
            font-weight: 500;
            display: block;
            padding: 0.3rem 0;
            border-bottom: 1px solid #e0d8cf;
        }
        .sidebar .widget a:hover {
            color: #c8392b;
            border-color: #c8392b;
        }
        .featured-image {
            margin: 1.8rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #e8e2da;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1200/630;
            object-fit: cover;
            background: #d4c9be;
            color: #5a4f44;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #5a4f44;
            background: #f1ede8;
            font-style: italic;
        }
        .feedback-section {
            background: #f3f0eb;
            border-radius: 24px;
            padding: 2rem 2rem 2.5rem;
            margin: 2.5rem 0;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .feedback-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.6rem 1.8rem 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.2rem;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 0.8rem;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 0.7rem 1rem;
            border: 2px solid #d4c9be;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.3s;
            background: #fcfbfa;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #c8392b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(200, 57, 43, 0.08);
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            font-size: 1.6rem;
            color: #d4c9be;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label,
        .feedback-card .star-rating input:checked~label {
            color: #f7b731;
            transform: scale(1.1);
        }
        .feedback-card .btn-submit {
            background: #c8392b;
            color: #fff;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            align-self: flex-start;
        }
        .feedback-card .btn-submit:hover {
            background: #a32c20;
            transform: scale(1.02);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.95rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #1a1a2e;
            color: #f7d44a;
            padding: 0.8rem 1rem;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 0.7rem 1rem;
            border-bottom: 1px solid #e0d8cf;
            background: #fff;
        }
        .data-table tr:hover td {
            background: #f8f4ef;
        }
        .site-footer {
            background: #0f0f1a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 4px solid #f7b731;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 2rem;
        }
        .site-footer h4 {
            color: #f7d44a;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #bbb;
        }
        .site-footer a:hover {
            color: #f7b731;
        }
        .site-footer .copyright {
            border-top: 1px solid #2a2a3e;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #8a8a9a;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.3rem 0.8rem;
            background: #1e1e2e;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #2a2a3e;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: #2a2a3e;
            text-decoration: none;
        }
        @media (max-width: 1024px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.2rem;
            }
            .sidebar .widget {
                margin-bottom: 0;
            }
        }
        @media (max-width: 820px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 700px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                background: #1a1a2e;
                padding: 0.8rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .feedback-card {
                padding: 1.2rem;
            }
            .feedback-section {
                padding: 1.5rem;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.5rem 0.6rem;
            }
            .search-form button span {
                display: none;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.9rem;
            }
            .hero .meta-info {
                flex-direction: column;
                gap: 0.3rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo i {
                font-size: 1.3rem;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #c8392b;
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 0 0 8px 8px;
            z-index: 10000;
            font-weight: 600;
        }
        .skip-link:focus {
            top: 0;
        }
        .img-placeholder {
            background: linear-gradient(135deg, #d4c9be 0%, #e8e2da 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #5a4f44;
            min-height: 200px;
            border-radius: 12px;
        }
