        *,
        *::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, 'Helvetica Neue', Arial, sans-serif;
            background: #fcf7f0;
            color: #2d1b2e;
            line-height: 1.8;
            padding: 0;
            margin: 0;
        }
        a {
            color: #8a2b8e;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #c44569;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1 {
            font-size: 2.75rem;
            font-weight: 800;
            color: #5a1e5c;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #6b286e;
            border-left: 6px solid #f9a825;
            padding-left: 18px;
            margin: 2.5rem 0 1rem 0;
            line-height: 1.3;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #7e3a80;
            margin: 2rem 0 0.75rem 0;
            line-height: 1.35;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #9b4d9e;
            margin: 1.5rem 0 0.5rem 0;
            line-height: 1.4;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #3a2a3b;
        }
        .text-muted {
            color: #6b5b6c;
            font-size: 0.95rem;
        }
        .text-small {
            font-size: 0.9rem;
        }
        b,
        strong {
            color: #4a134c;
            font-weight: 700;
        }
        .emoji {
            font-size: 1.3em;
            display: inline-block;
            vertical-align: middle;
        }
        .site-header {
            background: linear-gradient(135deg, #5a1e5c 0%, #8a2b8e 50%, #c44569 100%);
            color: #fff;
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(90, 30, 92, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
            letter-spacing: -0.02em;
            transition: transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fff;
        }
        .my-logo .logo-icon {
            font-size: 2rem;
            color: #f9a825;
        }
        .my-logo span {
            font-weight: 300;
            font-size: 0.9rem;
            opacity: 0.85;
            display: block;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .main-nav {
            display: flex;
            gap: 8px;
            list-style: none;
            flex-wrap: wrap;
        }
        .main-nav li a {
            color: #fff;
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: background 0.25s ease, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .main-nav li a:hover,
        .main-nav li a:focus {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            text-decoration: none;
            color: #fff;
        }
        .main-nav li a i {
            font-size: 0.9rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.15);
        }
        .breadcrumb {
            background: #f2e8f0;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #e0d0df;
        }
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb ul li+li::before {
            content: "›";
            color: #9b7a9e;
            margin-right: 10px;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a3d7d;
        }
        .breadcrumb .current {
            color: #4a134c;
            font-weight: 600;
        }
        .main-content {
            padding: 30px 0 50px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-body {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 24px;
            box-shadow: 0 4px 24px rgba(90, 30, 92, 0.08);
            border: 1px solid #f0e4ee;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #f0e4ee;
            padding-bottom: 10px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card ul li {
            padding: 6px 0;
            border-bottom: 1px solid #f5edf4;
        }
        .sidebar-card ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #5a2d5c;
        }
        .sidebar-card ul li a:hover {
            color: #c44569;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(90, 30, 92, 0.12);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .featured-image figcaption {
            background: #f2e8f0;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #4a3a4b;
            font-style: italic;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 1.5rem 0;
            max-width: 500px;
        }
        .search-form input {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid #e0d0df;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
            background: #fff;
        }
        .search-form input:focus {
            border-color: #8a2b8e;
        }
        .search-form button {
            padding: 14px 28px;
            background: #8a2b8e;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #5a1e5c;
            transform: scale(1.02);
        }
        .interaction-section {
            background: #fff;
            border-radius: 20px;
            padding: 30px 28px;
            margin: 2.5rem 0;
            box-shadow: 0 4px 28px rgba(90, 30, 92, 0.06);
            border: 1px solid #f0e4ee;
        }
        .interaction-section h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #4a134c;
            margin-bottom: 4px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d0df;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
            background: #fcf9fc;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #8a2b8e;
            outline: none;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn-primary {
            padding: 14px 36px;
            background: linear-gradient(135deg, #8a2b8e, #c44569);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(138, 43, 142, 0.3);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f9a825;
            cursor: pointer;
            direction: rtl;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            cursor: pointer;
            transition: transform 0.15s, color 0.2s;
            color: #ddd;
        }
        .rating-stars label:hover,
        .rating-stars label:hover~label,
        .rating-stars input:checked~label {
            color: #f9a825;
            transform: scale(1.1);
        }
        .rating-stars label:hover {
            transform: scale(1.2);
        }
        .site-footer {
            background: #2d1b2e;
            color: #e8dce8;
            padding: 40px 20px 20px;
            margin-top: 50px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-grid h4 {
            color: #f9a825;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-grid ul {
            list-style: none;
            padding: 0;
        }
        .footer-grid ul li {
            padding: 4px 0;
        }
        .footer-grid ul li a {
            color: #d4c0d6;
            font-size: 0.95rem;
        }
        .footer-grid ul li a:hover {
            color: #f9a825;
        }
        .footer-bottom {
            border-top: 1px solid #4a2a4c;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #a88aaa;
        }
        .footer-bottom .copyright {
            margin-top: 8px;
        }
        friend-link {
            display: block;
            padding: 12px 16px;
            background: #3a203c;
            border-radius: 12px;
            margin: 16px 0 8px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #f9a825;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #fff;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                padding: 10px 16px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(90, 30, 92, 0.98);
                padding: 16px 12px;
                border-radius: 0 0 16px 16px;
                margin-top: 10px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav li a {
                padding: 12px 16px;
                border-radius: 10px;
            }
            .nav-wrapper {
                flex-wrap: wrap;
            }
            .search-form {
                max-width: 100%;
                flex-wrap: wrap;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
            .breadcrumb ul {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .interaction-section {
                padding: 20px 16px;
            }
            .btn-primary {
                width: 100%;
                justify-content: center;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo .logo-icon {
                font-size: 1.4rem;
            }
        }
        .schema-hidden {
            display: none;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fdf6fd, #f2e8f0);
            border-left: 6px solid #f9a825;
            padding: 20px 24px;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fff;
            padding: 20px 16px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 2px 16px rgba(90, 30, 92, 0.06);
            border: 1px solid #f0e4ee;
        }
        .stat-card .number {
            font-size: 2rem;
            font-weight: 800;
            color: #8a2b8e;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #6b5b6c;
        }
        .interview-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            margin: 1.5rem 0;
            box-shadow: 0 4px 20px rgba(90, 30, 92, 0.06);
            border: 1px solid #f0e4ee;
        }
        .interview-card .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #3a2a3b;
            border-left: 4px solid #c44569;
            padding-left: 16px;
        }
        .interview-card .author {
            font-weight: 700;
            margin-top: 12px;
            color: #5a1e5c;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 16px rgba(90, 30, 92, 0.04);
        }
        th {
            background: #5a1e5c;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #f0e4ee;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .tag {
            display: inline-block;
            background: #f2e8f0;
            color: #5a1e5c;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b5b6c;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            padding: 8px 0;
            border-bottom: 1px solid #f0e4ee;
        }
        .last-updated i {
            color: #8a2b8e;
        }
