* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #f8f4ff;
            color: #1e1a2e;
            line-height: 1.75;
            font-size: 17px;
            scroll-behavior: smooth;
        }
        a {
            color: #7c3aed;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: #a78bfa;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
            box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .site-header {
            background: linear-gradient(135deg, #2d1b69, #5b21b6);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 6px 24px rgba(45, 27, 105, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(251, 191, 36, 0.2);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #fbbf24;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .main-nav {
            display: flex;
            gap: 8px 18px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e9e0ff;
            font-weight: 500;
            font-size: 0.98rem;
            padding: 6px 8px;
            border-radius: 8px;
            transition: background 0.25s, color 0.25s;
        }
        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.10);
            color: #fbbf24;
            text-decoration: none;
        }
        .breadcrumb {
            background: #ede6ff;
            padding: 10px 0 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #ddd6fe;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            align-items: center;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #8b7bb8;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #5b21b6;
        }
        .breadcrumb .current {
            color: #2d1b69;
            font-weight: 600;
        }
        .hero {
            padding: 48px 0 32px;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #ede6ff 0%, #f8f4ff 70%);
        }
        .hero h1 {
            font-size: 2.9rem;
            font-weight: 900;
            background: linear-gradient(135deg, #2d1b69, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero p {
            font-size: 1.2rem;
            color: #4a3f6b;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #7c6b9e;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #7c3aed;
        }
        .search-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
            margin: 28px 0 40px;
            border: 1px solid #ede6ff;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }
        .search-section input[type="text"] {
            flex: 1 1 280px;
            padding: 14px 20px;
            border: 2px solid #ddd6fe;
            border-radius: 40px;
            font-size: 1rem;
            background: #faf9ff;
            transition: border 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: #7c3aed;
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
        }
        .search-section button {
            padding: 14px 32px;
            background: linear-gradient(135deg, #7c3aed, #5b21b6);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(124, 58, 237, 0.25);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 48px;
            margin: 40px 0;
        }
        .main-article h2 {
            font-size: 2.0rem;
            font-weight: 800;
            color: #2d1b69;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 6px solid #7c3aed;
            padding-left: 18px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4a3f6b;
            margin-top: 36px;
            margin-bottom: 12px;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #5b21b6;
            margin-top: 28px;
            margin-bottom: 8px;
        }
        .main-article p {
            margin-bottom: 20px;
            color: #2d2438;
        }
        .main-article .highlight {
            background: linear-gradient(to right, #fef3c7, #fde68a);
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .main-article .card-tip {
            background: #fff;
            border-radius: 18px;
            padding: 24px 28px;
            border-left: 6px solid #fbbf24;
            box-shadow: 0 6px 24px rgba(251, 191, 36, 0.10);
            margin: 28px 0;
        }
        .main-article .card-tip strong {
            color: #b45309;
        }
        .main-article ul,
        .main-article ol {
            margin: 16px 0 24px 28px;
            color: #2d2438;
        }
        .main-article li {
            margin-bottom: 8px;
        }
        .main-article .image-wrapper {
            margin: 32px 0;
            border-radius: 20px;
            overflow: hidden;
            background: #ede6ff;
            padding: 8px;
        }
        .main-article .image-wrapper figcaption {
            padding: 12px 16px 6px;
            font-size: 0.9rem;
            color: #6b5e8a;
            font-style: italic;
            text-align: center;
        }
        .inline-link-list {
            background: #f1edff;
            border-radius: 16px;
            padding: 20px 24px;
            margin: 28px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
        }
        .inline-link-list a {
            font-weight: 500;
            padding: 4px 6px;
        }
        .sidebar {
            position: sticky;
            top: 110px;
            align-self: start;
        }
        .sidebar .card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.06);
            border: 1px solid #ede6ff;
            margin-bottom: 28px;
        }
        .sidebar .card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #2d1b69;
            border-bottom: 2px solid #ede6ff;
            padding-bottom: 12px;
            margin-bottom: 16px;
        }
        .sidebar .card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar .card li {
            padding: 6px 0;
            border-bottom: 1px solid #f4f0ff;
        }
        .sidebar .card li a {
            font-weight: 500;
            display: block;
            padding: 4px 0;
        }
        .rating-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.06);
            border: 1px solid #ede6ff;
            margin: 40px 0;
        }
        .rating-section .stars {
            display: flex;
            gap: 8px;
            font-size: 2.2rem;
            color: #d1c4e9;
            cursor: pointer;
            flex-wrap: wrap;
        }
        .rating-section .stars i {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-section .stars i:hover,
        .rating-section .stars i.active {
            color: #fbbf24;
            transform: scale(1.1);
        }
        .rating-section form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 16px;
        }
        .rating-section input,
        .rating-section textarea {
            padding: 14px 18px;
            border: 2px solid #ddd6fe;
            border-radius: 14px;
            font-size: 1rem;
            background: #faf9ff;
            transition: border 0.3s;
            outline: none;
            font-family: inherit;
        }
        .rating-section input:focus,
        .rating-section textarea:focus {
            border-color: #7c3aed;
        }
        .rating-section textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-section button {
            align-self: flex-start;
            padding: 14px 36px;
            background: linear-gradient(135deg, #7c3aed, #5b21b6);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .rating-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(124, 58, 237, 0.25);
        }
        .rating-section .rating-value {
            font-weight: 700;
            color: #2d1b69;
            font-size: 1.1rem;
        }
        .comments-section {
            background: #fff;
            border-radius: 20px;
            padding: 28px 32px;
            box-shadow: 0 8px 32px rgba(124, 58, 237, 0.06);
            border: 1px solid #ede6ff;
            margin: 40px 0;
        }
        .comments-section form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .comments-section input,
        .comments-section textarea {
            padding: 14px 18px;
            border: 2px solid #ddd6fe;
            border-radius: 14px;
            font-size: 1rem;
            background: #faf9ff;
            transition: border 0.3s;
            outline: none;
            font-family: inherit;
        }
        .comments-section input:focus,
        .comments-section textarea:focus {
            border-color: #7c3aed;
        }
        .comments-section textarea {
            min-height: 90px;
            resize: vertical;
        }
        .comments-section button {
            align-self: flex-start;
            padding: 14px 36px;
            background: linear-gradient(135deg, #7c3aed, #5b21b6);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.25s, box-shadow 0.25s;
        }
        .comments-section button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(124, 58, 237, 0.25);
        }
        .site-footer {
            background: linear-gradient(135deg, #1e1a2e, #2d1b69);
            color: #d8d0f0;
            padding: 48px 0 32px;
            margin-top: 60px;
            border-top: 4px solid #7c3aed;
        }
        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 36px;
            margin-bottom: 32px;
        }
        .site-footer h5 {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 14px;
            font-weight: 700;
        }
        .site-footer a {
            color: #b6a8e0;
        }
        .site-footer a:hover {
            color: #fbbf24;
        }
        .site-footer friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 14px;
            padding: 18px 20px;
            margin-top: 8px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .site-footer friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 2px 0;
        }
        .site-footer .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #a89fc8;
        }
        @media (max-width: 1024px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(45, 27, 105, 0.95);
                padding: 20px 16px;
                border-radius: 16px;
                margin-top: 8px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .hero h1 {
                font-size: 2.1rem;
            }
            .hero p {
                font-size: 1.05rem;
            }
            .container {
                padding: 0 16px;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                width: 100%;
                flex: 1 1 auto;
            }
            .rating-section .stars {
                font-size: 1.8rem;
            }
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.3rem;
            }
        }
        .text-gradient {
            background: linear-gradient(135deg, #7c3aed, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .gap-4 {
            gap: 4px;
        }
