* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #f9f7f2;
            color: #1e1e2a;
            line-height: 1.8;
            font-size: 16px;
        }
        a {
            color: #c84b1d;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #a03612;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #fff;
            padding: 18px 0 14px;
            border-bottom: 4px solid #ff9933;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #ff9933, #f4c430);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 153, 51, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ff9933;
            font-size: 2rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .main-nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .main-nav a {
            color: #f0e6d3;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
            position: relative;
        }
        .main-nav a:hover {
            color: #ff9933;
            border-bottom-color: #ff9933;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #f1ede4;
            padding: 12px 0;
            font-size: 0.88rem;
            color: #5a5a6a;
            border-bottom: 1px solid #e2dcd0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b0a89a;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #c84b1d;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e, #0f1a3a);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            border-bottom: 6px solid #138808;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            line-height: 1.2;
            background: linear-gradient(135deg, #ff9933, #f4c430, #ffd966);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 780px;
            margin: 0 auto;
            color: #d4d0e0;
        }
        .hero .meta-badge {
            display: inline-block;
            margin-top: 18px;
            background: rgba(255, 153, 51, 0.18);
            padding: 8px 22px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #ffcc80;
            border: 1px solid rgba(255, 153, 51, 0.25);
        }
        .content-area {
            padding: 40px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .section-block {
            margin-bottom: 48px;
        }
        .section-block h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 4px solid #ff9933;
            display: inline-block;
        }
        .section-block h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #16213e;
            margin-top: 32px;
            margin-bottom: 14px;
        }
        .section-block h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2a2a4a;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        .section-block p {
            margin-bottom: 18px;
            color: #2d2d3a;
            font-size: 1.02rem;
        }
        .section-block ul,
        .section-block ol {
            margin: 12px 0 22px 24px;
            color: #2d2d3a;
        }
        .section-block li {
            margin-bottom: 8px;
        }
        .highlight-box {
            background: #f1ede4;
            border-left: 6px solid #ff9933;
            padding: 20px 26px;
            border-radius: 0 12px 12px 0;
            margin: 26px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .data-table th {
            background: #1a1a2e;
            color: #fff;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #ece6da;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f9f5ee;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 14px;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.88rem;
            color: #6a6a7a;
            margin-top: 10px;
            font-style: italic;
        }
        .interview-card {
            background: #fff;
            border-radius: 16px;
            padding: 28px 30px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            margin: 30px 0;
            border: 1px solid #eae4d8;
        }
        .interview-card .quote {
            font-size: 1.2rem;
            font-style: italic;
            color: #2a2a4a;
            border-left: 4px solid #138808;
            padding-left: 20px;
            margin: 16px 0;
        }
        .interview-card .attribution {
            font-weight: 600;
            color: #c84b1d;
            margin-top: 8px;
        }
        .stats-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #138808;
            color: #fff;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.8rem;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 14px;
            padding: 22px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 28px;
            border: 1px solid #ede8de;
        }
        .sidebar-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 14px;
            padding-bottom: 8px;
            border-bottom: 3px solid #ff9933;
        }
        .sidebar-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-links li {
            padding: 8px 0;
            border-bottom: 1px solid #f0ebe2;
        }
        .sidebar-links li:last-child {
            border-bottom: none;
        }
        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #2d2d3a;
            font-weight: 500;
            transition: color 0.2s, transform 0.2s;
        }
        .sidebar-links a:hover {
            color: #c84b1d;
            transform: translateX(4px);
            text-decoration: none;
        }
        .sidebar-links a i {
            color: #ff9933;
            font-size: 0.85rem;
            width: 18px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 28px 0;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #ddd6c8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #ff9933;
        }
        .search-form button {
            padding: 14px 28px;
            background: #ff9933;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #e67e22;
            transform: scale(1.02);
        }
        .interaction-section {
            background: #fff;
            border-radius: 16px;
            padding: 32px 30px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
            border: 1px solid #ede8de;
        }
        .interaction-section h2 {
            border-bottom: none;
            display: block;
            margin-bottom: 8px;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #ddd6c8;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form textarea:focus {
            border-color: #ff9933;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 14px;
            align-items: center;
        }
        .comment-form input[type="text"] {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #ddd6c8;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-form input[type="text"]:focus {
            border-color: #ff9933;
        }
        .comment-form button {
            padding: 12px 32px;
            background: #138808;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #0e6b05;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd6c8;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i {
            transition: color 0.2s, transform 0.15s;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ff9933;
            transform: scale(1.12);
        }
        .rating-form {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .rating-form button {
            padding: 10px 24px;
            background: #ff9933;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
        }
        .rating-form button:hover {
            background: #e67e22;
        }
        .site-footer {
            background: #1a1a2e;
            color: #d4d0e0;
            padding: 40px 0 30px;
            border-top: 6px solid #ff9933;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
        }
        .footer-inner h4 {
            color: #ffcc80;
            font-size: 1.1rem;
            margin-bottom: 14px;
        }
        .footer-inner a {
            color: #c4b8a8;
        }
        .footer-inner a:hover {
            color: #ff9933;
        }
        friend-link {
            display: block;
            margin-top: 10px;
        }
        friend-link a {
            display: inline-block;
            padding: 4px 0;
            color: #c4b8a8;
        }
        friend-link a:hover {
            color: #ff9933;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #2a2a4a;
            padding-top: 24px;
            margin-top: 32px;
            font-size: 0.88rem;
            color: #8a8a9a;
        }
        .copyright strong {
            color: #d4d0e0;
        }
        @media (max-width: 968px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                order: 2;
                margin-top: 20px;
            }
            .main-content {
                order: 1;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 720px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f1a3a;
                padding: 16px 12px;
                border-radius: 12px;
                margin-top: 10px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 10px 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            }
            .main-nav a:last-child {
                border-bottom: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-form {
                flex-direction: column;
                align-items: flex-start;
            }
            .section-block h2 {
                font-size: 1.6rem;
            }
            .section-block h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 32px 0 28px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .interview-card {
                padding: 18px 16px;
            }
            .interaction-section {
                padding: 20px 16px;
            }
        }
        .last-updated {
            display: inline-block;
            background: #ede8de;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: #5a5a6a;
            margin-top: 6px;
        }
        .last-updated i {
            color: #c84b1d;
            margin-right: 6px;
        }
        .text-small {
            font-size: 0.9rem;
            color: #6a6a7a;
        }
        .gap-4 {
            gap: 4px;
        }
        .mt-8 {
            margin-top: 8px;
        }
        .mt-16 {
            margin-top: 16px;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .items-center {
            align-items: center;
        }
