        *,
        *::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, sans-serif;
            background: #f8f6f2;
            color: #1e1e1e;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #b8860b;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #8b6508;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #1a1a2e, #16213e);
            color: #f5e6c8;
            padding: 16px 0;
            border-bottom: 4px solid #b8860b;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5e6c8, #d4a84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(212, 168, 75, 0.3);
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            -webkit-text-fill-color: #b8860b;
            color: #b8860b;
            display: block;
            letter-spacing: 1px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid #b8860b;
            color: #f5e6c8;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.25s;
        }
        .hamburger:hover {
            background: #b8860b;
            color: #1a1a2e;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .nav-menu a {
            color: #f5e6c8;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover {
            border-bottom-color: #b8860b;
            color: #d4a84b;
            text-decoration: none;
        }
        .nav-menu .active {
            border-bottom-color: #b8860b;
            color: #d4a84b;
        }
        .breadcrumb {
            background: #e8e2d6;
            padding: 10px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #d6cdbc;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #8b7d6b;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5a4a3a;
        }
        .breadcrumb .current {
            color: #b8860b;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #2d1f0e, #4a3724);
            color: #f5e6c8;
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 6px solid #b8860b;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .hero h1 span {
            color: #d4a84b;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            margin: 0 auto 12px;
            opacity: 0.92;
        }
        .hero .meta-info {
            font-size: 0.95rem;
            opacity: 0.75;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 12px;
        }
        .content-area {
            padding: 40px 0 60px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #1a1a2e;
            border-left: 6px solid #b8860b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #2d1f0e;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #4a3724;
        }
        p {
            margin-bottom: 18px;
        }
        .content-section {
            margin-bottom: 32px;
        }
        .highlight-box {
            background: #f0ebe2;
            border-left: 6px solid #b8860b;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #8b6508;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border: 1px solid #e0d6c8;
            border-radius: 12px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #b8860b;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #5a4a3a;
            margin-top: 4px;
        }
        .featured-image {
            margin: 28px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #e8e2d6;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.88rem;
            color: #5a4a3a;
            background: #f5f0e8;
            font-style: italic;
        }
        .interview-block {
            background: #f5f0e8;
            border-radius: 16px;
            padding: 28px;
            margin: 28px 0;
            border: 1px solid #e0d6c8;
        }
        .interview-block .speaker {
            font-weight: 700;
            color: #8b6508;
        }
        .interview-block .quote {
            font-style: italic;
            padding-left: 20px;
            border-left: 4px solid #b8860b;
            margin: 12px 0;
        }
        .link-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 18px;
            padding: 16px 0;
            margin: 16px 0;
            list-style: none;
        }
        .link-list-inline li a {
            background: #f0ebe2;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            border: 1px solid #d6cdbc;
            transition: 0.25s;
            display: inline-block;
        }
        .link-list-inline li a:hover {
            background: #b8860b;
            color: #fff;
            border-color: #b8860b;
            text-decoration: none;
        }
        .sidebar-card {
            background: #fff;
            border: 1px solid #e0d6c8;
            border-radius: 16px;
            padding: 22px 20px;
            margin-bottom: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 14px;
            border-bottom: 2px solid #b8860b;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            padding: 6px 0;
            border-bottom: 1px solid #f0ebe2;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card li a i {
            color: #b8860b;
            width: 18px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 16px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #d6cdbc;
            border-radius: 30px;
            font-size: 1rem;
            outline: none;
            transition: 0.25s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
        }
        .search-form button {
            background: #b8860b;
            border: none;
            color: #fff;
            padding: 0 24px;
            border-radius: 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.25s;
        }
        .search-form button:hover {
            background: #8b6508;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 28px 0;
        }
        .feedback-card {
            background: #fff;
            border: 1px solid #e0d6c8;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card label {
            display: block;
            font-weight: 500;
            margin: 12px 0 4px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 10px 14px;
            border: 2px solid #d6cdbc;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: 0.25s;
            background: #faf8f5;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #b8860b;
            box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
            outline: none;
        }
        .feedback-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .feedback-card .btn-submit {
            background: #b8860b;
            border: none;
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
            margin-top: 12px;
            width: 100%;
        }
        .feedback-card .btn-submit:hover {
            background: #8b6508;
            transform: scale(0.98);
        }
        .star-rating {
            display: flex;
            gap: 4px;
            font-size: 1.8rem;
            color: #d6cdbc;
            cursor: pointer;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #d6cdbc;
            transition: 0.2s;
            cursor: pointer;
            font-size: 1.8rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .site-footer {
            background: #1a1a2e;
            color: #c8bda8;
            padding: 40px 0 24px;
            border-top: 4px solid #b8860b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
        }
        .footer-inner h4 {
            color: #f5e6c8;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #c8bda8;
        }
        .footer-inner a:hover {
            color: #d4a84b;
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner li {
            padding: 4px 0;
        }
        .footer-bottom {
            border-top: 1px solid #2d2d4a;
            margin-top: 28px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.86rem;
            color: #8b7d6b;
        }
        friend-link {
            display: block;
            margin: 8px 0;
        }
        friend-link a {
            color: #b8860b;
            margin: 0 10px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 12px 0 4px;
                gap: 2px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 0;
                border-bottom: 1px solid #2d2d4a;
                width: 100%;
            }
            .hero h1 {
                font-size: 1.9rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .container {
                padding: 0 12px;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #b8860b;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
            transition: 0.3s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #8b6508;
            transform: translateY(-4px);
        }
        @media print {
            .site-header,
            .breadcrumb,
            .sidebar,
            .search-form,
            .feedback-grid,
            .scroll-top,
            .hamburger {
                display: none !important;
            }
            .content-grid {
                display: block;
            }
            .site-footer {
                break-inside: avoid;
            }
        }
