* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f9f7f4;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: #6c5ce7;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #2d1b69;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 16px 0;
            border-bottom: 4px solid #e94560;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(90deg, #e94560, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(233, 69, 96, 0.3);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #fff;
            margin-right: 8px;
        }
        nav.main-nav ul {
            display: flex;
            list-style: none;
            gap: 24px;
            align-items: center;
        }
        nav.main-nav a {
            color: #eaeaea;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 10px;
            border-radius: 6px;
            transition: background 0.2s, color 0.2s;
        }
        nav.main-nav a:hover {
            background: rgba(233, 69, 96, 0.25);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
        }
        .breadcrumb {
            background: #fff;
            padding: 12px 0;
            border-bottom: 1px solid #e8e3de;
            font-size: 0.9rem;
            color: #555;
        }
        .breadcrumb a {
            color: #6c5ce7;
        }
        .breadcrumb span {
            margin: 0 6px;
            color: #aaa;
        }
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
            color: #fff;
            padding: 50px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "⚔️❤️📜";
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 10rem;
            opacity: 0.08;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            color: #cfd8e6;
            max-width: 750px;
            margin: 0 auto 20px;
        }
        .hero .meta {
            font-size: 0.95rem;
            color: #a8b5d4;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #e94560;
        }
        main {
            padding: 40px 0 60px;
            background: #fff;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .content-article h2 {
            font-size: 2rem;
            margin-top: 48px;
            margin-bottom: 16px;
            color: #1a1a2e;
            border-left: 5px solid #e94560;
            padding-left: 18px;
        }
        .content-article h3 {
            font-size: 1.5rem;
            margin-top: 32px;
            margin-bottom: 12px;
            color: #2d1b69;
        }
        .content-article h4 {
            font-size: 1.2rem;
            margin-top: 24px;
            margin-bottom: 8px;
            color: #0f3460;
            font-weight: 600;
        }
        .content-article p {
            margin-bottom: 18px;
            color: #2e2e3a;
        }
        .content-article ul,
        .content-article ol {
            margin: 12px 0 20px 24px;
            color: #2e2e3a;
        }
        .content-article li {
            margin-bottom: 8px;
        }
        .content-article .highlight-box {
            background: #f4f1fc;
            border-left: 4px solid #6c5ce7;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
        }
        .content-article .highlight-box i {
            color: #6c5ce7;
            margin-right: 10px;
        }
        .content-article blockquote {
            background: #f9f7f4;
            border-left: 4px solid #e94560;
            padding: 16px 24px;
            margin: 24px 0;
            font-style: italic;
            color: #3d3d56;
            border-radius: 0 8px 8px 0;
        }
        .content-article blockquote footer {
            margin-top: 8px;
            font-size: 0.9rem;
            color: #777;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            background: #f0edf5;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px;
            font-size: 0.9rem;
            color: #666;
            background: #fafafa;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-card {
            background: #f9f7f4;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #e8e3de;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #1a1a2e;
            border-bottom: 2px solid #e94560;
            padding-bottom: 8px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 10px;
        }
        .sidebar-card li a {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .sidebar-card li a i {
            color: #e94560;
            width: 18px;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin-top: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #6c5ce7;
        }
        .search-form button {
            background: #6c5ce7;
            color: #fff;
            border: none;
            padding: 10px 18px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .search-form button:hover {
            background: #2d1b69;
        }
        .feedback-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #e8e3de;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        .feedback-card {
            background: #f9f7f4;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #e8e3de;
        }
        .feedback-card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: #1a1a2e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #e94560;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feedback-card input,
        .feedback-card textarea {
            padding: 10px 14px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
            transition: border 0.2s;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus {
            border-color: #6c5ce7;
        }
        .feedback-card textarea {
            min-height: 90px;
            resize: vertical;
        }
        .feedback-card button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .feedback-card button:hover {
            background: #c23152;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ccc;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd93d;
        }
        footer {
            background: #1a1a2e;
            color: #cfd8e6;
            padding: 40px 0 20px;
        }
        footer .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        footer h4 {
            color: #fff;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer a {
            color: #a8b5d4;
        }
        footer a:hover {
            color: #ff6b6b;
        }
        friend-link {
            display: block;
            margin-top: 8px;
        }
        friend-link a {
            display: inline-block;
            margin-right: 16px;
            padding: 4px 0;
        }
        .copyright {
            border-top: 1px solid #2d2d4a;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #7a7a9a;
        }
        @media(max-width:900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            footer .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        @media(max-width:768px) {
            .hamburger {
                display: block;
            }
            nav.main-nav {
                display: none;
                width: 100%;
                margin-top: 12px;
            }
            nav.main-nav.open {
                display: block;
            }
            nav.main-nav ul {
                flex-direction: column;
                gap: 6px;
                align-items: stretch;
            }
            nav.main-nav a {
                display: block;
                padding: 12px 16px;
                background: rgba(255, 255, 255, 0.05);
                border-radius: 8px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero .meta {
                flex-direction: column;
                gap: 6px;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            footer .footer-inner {
                grid-template-columns: 1fr;
            }
            .content-article h2 {
                font-size: 1.6rem;
            }
            .content-article h3 {
                font-size: 1.3rem;
            }
        }
        @media(max-width:480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
        }
        .text-small {
            font-size: 0.9rem;
            color: #777;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .emoji-big {
            font-size: 1.6rem;
        }
        .tag {
            display: inline-block;
            background: #e8e3de;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #444;
            margin-right: 6px;
        }
