        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f4f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #c44569;
            text-decoration: none;
            transition: color 0.2s, border-color 0.2s;
        }
        a:hover {
            color: #e66767;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #1e1e2a;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.2rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #f8a5c2;
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2d2d44;
        }
        h4 {
            font-size: 1.15rem;
            color: #3d3d55;
        }
        p {
            margin: 0.9rem 0;
            color: #2a2a3a;
        }
        strong {
            font-weight: 700;
            color: #c44569;
        }
        em {
            font-style: italic;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #f8a5c2, #a29bfe);
            margin: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .my-logo i {
            font-size: 2rem;
        }
        .my-logo:hover {
            color: #ffeaa7;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: rgba(255, 255, 255, 0.92);
            font-weight: 600;
            padding: 0.45rem 0.9rem;
            border-radius: 40px;
            font-size: 0.92rem;
            transition: background 0.25s, color 0.25s, transform 0.2s;
            white-space: nowrap;
        }
        .nav-bar a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            transform: translateY(-2px);
            text-decoration: none;
        }
        .nav-bar a i {
            margin-right: 0.3rem;
        }
        .hamburger {
            display: none;
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #fff;
            font-size: 1.7rem;
            padding: 0.2rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .breadcrumb {
            background: #fff;
            padding: 0.6rem 0;
            border-bottom: 1px solid #eee;
            font-size: 0.85rem;
            color: #777;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem 0.5rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.4rem;
            color: #ccc;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #6c5ce7;
        }
        .breadcrumb a:hover {
            color: #c44569;
        }
        .breadcrumb .current {
            color: #999;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            align-self: start;
            position: sticky;
            top: 100px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget:last-child {
            margin-bottom: 0;
        }
        .sidebar-widget h3 {
            font-size: 1.15rem;
            border-left: 4px solid #fd79a8;
            padding-left: 0.7rem;
            margin-top: 0;
            margin-bottom: 0.8rem;
        }
        .sidebar-widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-widget li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #f5f0eb;
        }
        .sidebar-widget li:last-child {
            border-bottom: none;
        }
        .sidebar-widget a {
            font-weight: 500;
            color: #2d2d44;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sidebar-widget a:hover {
            color: #c44569;
            text-decoration: none;
        }
        .sidebar-widget a i {
            color: #a29bfe;
            font-size: 0.85rem;
            width: 1.2rem;
        }
        .search-form {
            display: flex;
            gap: 0.4rem;
            margin: 1.2rem 0;
        }
        .search-form input[type="text"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #e0d6d0;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.25s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: #a29bfe;
        }
        .search-form button {
            background: #6c5ce7;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 1.3rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
            font-weight: 600;
        }
        .search-form button:hover {
            background: #5a4bd1;
            transform: scale(1.03);
        }
        .comment-area,
        .score-area {
            background: #fff;
            border-radius: 24px;
            padding: 1.8rem 2rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        }
        .comment-area h3,
        .score-area h3 {
            margin-top: 0;
            border-left: 4px solid #a29bfe;
            padding-left: 0.8rem;
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e0d6d0;
            border-radius: 16px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.25s;
            margin-bottom: 0.8rem;
            resize: vertical;
        }
        .comment-form textarea:focus,
        .comment-form input:focus {
            border-color: #a29bfe;
            outline: none;
        }
        .comment-form button,
        .score-form button {
            background: #c44569;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .comment-form button:hover,
        .score-form button:hover {
            background: #e66767;
            transform: translateY(-2px);
        }
        .score-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            color: #fdcb6e;
            margin: 0.6rem 0 1rem;
            cursor: pointer;
        }
        .score-stars i {
            transition: transform 0.2s, color 0.2s;
        }
        .score-stars i:hover {
            transform: scale(1.2);
            color: #f9a825;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }
        .featured-image img {
            width: 100%;
            display: block;
        }
        .featured-image figcaption {
            background: #fff;
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #666;
            border-top: 1px solid #f0e8e0;
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }
        .price-table th {
            background: #6c5ce7;
            color: #fff;
            padding: 0.9rem 1rem;
            text-align: left;
            font-weight: 700;
        }
        .price-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid #f5f0eb;
        }
        .price-table tr:last-child td {
            border-bottom: none;
        }
        .price-table tr:hover td {
            background: #f8f4ff;
        }
        .tip-card {
            background: linear-gradient(135deg, #ffeaa7, #fdcb6e);
            border-radius: 20px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            box-shadow: 0 6px 20px rgba(253, 203, 110, 0.2);
        }
        .tip-card h4 {
            margin-top: 0;
            color: #2d2d44;
        }
        .tip-card p {
            color: #2d2d44;
        }
        .interview-block {
            background: #f0ebf8;
            border-radius: 20px;
            padding: 1.5rem 2rem;
            margin: 1.8rem 0;
            border-left: 5px solid #a29bfe;
        }
        .interview-block h4 {
            margin-top: 0;
            color: #2d2d44;
        }
        .interview-block .quote {
            font-style: italic;
            font-size: 1.05rem;
            color: #3d3d55;
        }
        .interview-block .attribution {
            font-weight: 700;
            margin-top: 0.5rem;
            color: #6c5ce7;
        }
        .site-footer {
            background: #1e1e2a;
            color: #ccc;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fff;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner a {
            color: #b0a8d0;
        }
        .footer-inner a:hover {
            color: #fd79a8;
            text-decoration: none;
        }
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1.2rem;
            margin-top: 1.8rem;
            text-align: center;
            font-size: 0.85rem;
            color: #888;
        }
        friend-link {
            display: block;
            margin: 0.6rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 30px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(108, 92, 231, 0.15);
                padding: 1rem 0.5rem;
                border-radius: 20px;
                margin-top: 0.5rem;
            }
            .nav-bar.open {
                display: flex;
            }
            .nav-bar a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 12px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .comment-area,
            .score-area {
                padding: 1.2rem 1.2rem;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .price-table {
                font-size: 0.85rem;
            }
            .price-table th,
            .price-table td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .score-stars {
                font-size: 1.5rem;
            }
        }
        .text-muted {
            color: #888;
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #ffeaa7;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #2d2d44;
        }
        .icon-list {
            list-style: none;
            padding-left: 0;
        }
        .icon-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }
        .icon-list li i {
            color: #a29bfe;
            margin-top: 0.2rem;
            min-width: 1.2rem;
        }
        .tag {
            display: inline-block;
            background: #f0ebf8;
            padding: 0.15rem 0.7rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #6c5ce7;
        }
