        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f6fb;
            color: #1f2937;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #e43f5a;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #b71c2e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            margin-top: 0;
            color: #0f172a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px 20px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #ffd200;
            font-size: 1.6rem;
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: inherit;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px 14px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            color: #e2e8f0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a:focus {
            background: rgba(255, 255, 255, 0.15);
            color: #ffd200;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #ffffff;
            padding: 12px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.9rem;
        }
        .breadcrumb-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 10px;
        }
        .breadcrumb-inner a {
            color: #e43f5a;
            font-weight: 500;
        }
        .breadcrumb-inner span {
            color: #64748b;
        }
        .breadcrumb-inner .sep {
            color: #94a3b8;
        }
        .main-content {
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body {
            background: #fff;
            border-radius: 20px;
            padding: 30px 35px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .content-body h1 {
            font-size: 2.4rem;
            margin-bottom: 0.5rem;
            color: #0f0c29;
        }
        .content-body h1 i {
            color: #f7971e;
            margin-right: 10px;
        }
        .content-body h2 {
            font-size: 1.8rem;
            margin: 2rem 0 0.8rem;
            padding-bottom: 0.3rem;
            border-bottom: 3px solid #f7971e;
            display: inline-block;
        }
        .content-body h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.6rem;
            color: #1e293b;
        }
        .content-body h4 {
            font-size: 1.15rem;
            margin: 1rem 0 0.4rem;
            color: #334155;
        }
        .content-body p {
            margin-bottom: 1.1rem;
        }
        .content-body .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            font-size: 0.92rem;
            color: #64748b;
            margin-bottom: 1.5rem;
            padding: 10px 0;
            border-bottom: 1px solid #e9edf2;
        }
        .content-body .meta-info i {
            margin-right: 6px;
            color: #e43f5a;
        }
        .content-body .highlight-box {
            background: #fef9e7;
            border-left: 5px solid #f7971e;
            padding: 18px 22px;
            border-radius: 10px;
            margin: 1.5rem 0;
        }
        .content-body .highlight-box strong {
            color: #b71c2e;
        }
        .content-body .btn-link {
            display: inline-block;
            background: linear-gradient(135deg, #e43f5a, #c62828);
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none !important;
        }
        .content-body .btn-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(228, 63, 90, 0.4);
        }
        .content-body ul,
        .content-body ol {
            margin-bottom: 1.2rem;
        }
        .content-body li {
            margin-bottom: 0.4rem;
        }
        .content-body .feature-image {
            margin: 1.8rem 0;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }
        .content-body .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 1.8rem 0;
        }
        .content-body .stat-card {
            background: linear-gradient(135deg, #0f0c29, #302b63);
            color: #fff;
            padding: 18px 16px;
            border-radius: 14px;
            text-align: center;
        }
        .content-body .stat-card .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffd200;
        }
        .content-body .stat-card .label {
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .content-body .interview-box {
            background: #f1f5f9;
            border-radius: 14px;
            padding: 20px 24px;
            margin: 1.8rem 0;
            border: 1px solid #e2e8f0;
        }
        .content-body .interview-box .quote {
            font-style: italic;
            font-size: 1.05rem;
            border-left: 4px solid #e43f5a;
            padding-left: 16px;
            margin: 10px 0;
        }
        .content-body .comment-rating-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px dashed #e2e8f0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .sidebar .widget {
            background: #fff;
            border-radius: 16px;
            padding: 20px 22px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        .sidebar .widget h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #0f0c29;
            border-left: 4px solid #f7971e;
            padding-left: 12px;
        }
        .sidebar .widget ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar .widget ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .sidebar .widget ul li:last-child {
            border-bottom: none;
        }
        .sidebar .widget ul li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar .widget ul li a i {
            color: #e43f5a;
            font-size: 0.8rem;
        }
        .search-form {
            display: flex;
            gap: 6px;
            margin-top: 6px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 30px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #e43f5a;
        }
        .search-form button {
            background: #e43f5a;
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 0 18px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.25s;
        }
        .search-form button:hover {
            background: #c62828;
        }
        .comment-form,
        .score-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 16px 0 10px;
        }
        .comment-form textarea,
        .comment-form input,
        .score-form input,
        .score-form select {
            padding: 10px 14px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.3s;
            font-family: inherit;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .score-form input:focus,
        .score-form select:focus {
            border-color: #e43f5a;
        }
        .comment-form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comment-form button,
        .score-form button {
            align-self: flex-start;
            background: linear-gradient(135deg, #302b63, #0f0c29);
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(48, 43, 99, 0.4);
        }
        .score-display {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 6px;
            font-size: 1.1rem;
        }
        .score-display .stars {
            color: #ffd200;
            letter-spacing: 2px;
        }
        .score-display .avg {
            font-weight: 700;
            color: #0f0c29;
        }
        .site-footer {
            background: linear-gradient(135deg, #0f0c29, #1a1a3e);
            color: #cbd5e1;
            padding: 40px 0 20px;
            margin-top: 30px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 30px;
        }
        .site-footer h4 {
            color: #ffd200;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #ffd200;
            text-decoration: none;
        }
        .site-footer .friend-links {
            list-style: none;
            padding-left: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }
        .site-footer .friend-links li a {
            font-size: 0.9rem;
            padding: 4px 0;
        }
        .site-footer .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 24px;
            margin-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            color: #94a3b8;
        }
        .site-footer .copyright strong {
            color: #ffd200;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .sidebar {
                order: 2;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 12, 41, 0.98);
                padding: 12px 0 16px;
                border-radius: 0 0 14px 14px;
                gap: 4px;
                margin-top: 6px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                font-size: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            .content-body {
                padding: 20px 18px;
            }
            .content-body h1 {
                font-size: 1.8rem;
            }
            .content-body h2 {
                font-size: 1.4rem;
            }
            .content-body h3 {
                font-size: 1.15rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .breadcrumb-inner {
                font-size: 0.8rem;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-inner {
                flex-wrap: nowrap;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo i {
                font-size: 1.2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .content-body .meta-info {
                flex-direction: column;
                gap: 4px;
            }
        }
        :focus-visible {
            outline: 3px solid #ffd200;
            outline-offset: 2px;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
