* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
            background: #f5f7fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #e63946;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #c1121f;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 18px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: linear-gradient(90deg, #f94144, #f9c74f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.03);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #aaa;
            color: #aaa;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: lowercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.7rem;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            color: #e0e0e0;
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }
        .primary-nav a:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #f9c74f;
            text-decoration: none;
        }
        .primary-nav a.active {
            background: rgba(249, 199, 79, 0.18);
            color: #f9c74f;
        }
        .breadcrumb-wrap {
            background: #fff;
            padding: 12px 30px;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.88rem;
            color: #6c757d;
            overflow-x: auto;
            white-space: nowrap;
        }
        .breadcrumb-wrap a {
            color: #e63946;
        }
        .breadcrumb-wrap span {
            color: #6c757d;
        }
        .breadcrumb-wrap i {
            font-size: 0.7rem;
            margin: 0 6px;
            color: #adb5bd;
        }
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px 50px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar-area {
            min-width: 0;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 12px;
            line-height: 1.25;
            border-left: 6px solid #e63946;
            padding-left: 20px;
        }
        h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #16213e;
            margin-top: 48px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f9c74f;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
            color: #0f3460;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-top: 22px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: #2b2d42;
        }
        .lead {
            font-size: 1.15rem;
            color: #4a4e69;
            font-weight: 400;
            line-height: 1.8;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9e6, #fff3cd);
            border-left: 6px solid #f9c74f;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #e63946;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            border: 1px solid #e9ecef;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #e63946;
            display: block;
        }
        .stat-card .label {
            font-size: 0.92rem;
            color: #6c757d;
            font-weight: 500;
        }
        .interview-block {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 28px 0;
            border: 1px solid #dee2e6;
            position: relative;
        }
        .interview-block::before {
            content: '\201C';
            font-size: 4rem;
            color: #f9c74f;
            position: absolute;
            top: 8px;
            left: 16px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .interview-block p {
            padding-left: 30px;
            font-style: italic;
        }
        .interview-block .attribution {
            text-align: right;
            font-weight: 600;
            color: #0f3460;
            margin-top: 8px;
            padding-left: 30px;
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.25s ease;
            background: #e63946;
            color: #fff;
        }
        .btn:hover {
            background: #c1121f;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e63946;
            color: #e63946;
        }
        .btn-outline:hover {
            background: #e63946;
            color: #fff;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            background: #fff;
            padding: 8px;
        }
        .featured-image img {
            border-radius: 12px;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 16px 8px;
            font-size: 0.88rem;
            color: #6c757d;
            text-align: center;
            font-style: italic;
        }
        .search-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 32px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 12px 18px;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .search-form input:focus {
            border-color: #e63946;
        }
        .comment-section,
        .rating-section {
            background: #fff;
            border-radius: 16px;
            padding: 28px 24px;
            margin: 24px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
        }
        .comment-section textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border-color 0.3s;
        }
        .comment-section textarea:focus {
            border-color: #e63946;
        }
        .comment-section .form-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .comment-section .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 10px 16px;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
        }
        .comment-section .form-row input:focus {
            border-color: #e63946;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #dee2e6;
            cursor: pointer;
            margin: 10px 0 16px;
            direction: rtl;
        }
        .star-rating i {
            transition: color 0.2s ease, transform 0.15s ease;
        }
        .star-rating i:hover,
        .star-rating i:hover~i {
            color: #f9c74f;
            transform: scale(1.1);
        }
        .star-rating.active i {
            color: #f9c74f;
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
        }
        .related-links a {
            background: #f8f9fa;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.88rem;
            border: 1px solid #dee2e6;
            transition: all 0.2s ease;
        }
        .related-links a:hover {
            background: #e63946;
            color: #fff;
            border-color: #e63946;
            text-decoration: none;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9ecef;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 14px;
            border-bottom: 2px solid #f9c74f;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f1f3f5;
        }
        .sidebar-card ul li a {
            color: #2b2d42;
            font-size: 0.92rem;
            transition: color 0.2s;
        }
        .sidebar-card ul li a:hover {
            color: #e63946;
            text-decoration: none;
        }
        .sidebar-card ul li i {
            color: #e63946;
            margin-right: 8px;
            font-size: 0.75rem;
        }
        .site-footer {
            background: #1a1a2e;
            color: #e0e0e0;
            padding: 40px 30px 20px;
            margin-top: 50px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }
        .site-footer h4 {
            color: #f9c74f;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }
        .site-footer a {
            color: #adb5bd;
            font-size: 0.9rem;
        }
        .site-footer a:hover {
            color: #f9c74f;
            text-decoration: none;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 28px;
            margin-top: 28px;
            border-top: 1px solid #2b2d42;
            font-size: 0.85rem;
            color: #6c757d;
            grid-column: 1 / -1;
        }
        .copyright strong {
            color: #adb5bd;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
                padding: 20px 16px 40px;
            }
            .sidebar-area {
                order: 2;
            }
            h1 {
                font-size: 1.9rem;
                padding-left: 14px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .site-header {
                padding: 14px 18px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 14px;
                gap: 4px;
                background: rgba(0, 0, 0, 0.25);
                padding: 12px;
                border-radius: 12px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 14px;
                width: 100%;
                text-align: left;
            }
            .breadcrumb-wrap {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .comment-section .form-row {
                flex-direction: column;
            }
            .comment-section .form-row input {
                min-width: auto;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.6rem;
            }
            h1 {
                font-size: 1.35rem;
            }
            .featured-image {
                padding: 4px;
            }
            .interview-block {
                padding: 18px 14px;
            }
            .interview-block::before {
                font-size: 2.8rem;
                left: 10px;
            }
            .interview-block p {
                padding-left: 20px;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in:nth-child(2) {
            animation-delay: 0.1s;
        }
        .fade-in:nth-child(3) {
            animation-delay: 0.2s;
        }
        .fade-in:nth-child(4) {
            animation-delay: 0.3s;
        }
        .fade-in:nth-child(5) {
            animation-delay: 0.4s;
        }
