* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f7f4f0;
            color: #1e1e2a;
            line-height: 1.7;
            padding: 0 16px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 32px;
            padding: 20px 24px 40px;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0 16px;
            border-bottom: 2px solid #ede8e2;
            position: relative;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            text-decoration: none;
            color: #cc2222;
            background: linear-gradient(135deg, #cc2222, #881111);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #cc2222;
            font-size: 2.2rem;
        }
        .my-logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #555;
            -webkit-text-fill-color: #555;
            letter-spacing: 0.3px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #cc2222;
            color: #cc2222;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #cc2222;
            color: #fff;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            align-items: center;
        }
        .main-nav a {
            text-decoration: none;
            color: #2a2a3a;
            font-weight: 600;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            border-bottom-color: #cc2222;
            color: #cc2222;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 10px 0 6px;
            font-size: 0.85rem;
            color: #777;
            display: flex;
            flex-wrap: wrap;
            gap: 4px 10px;
            list-style: none;
            background: #faf8f6;
            border-radius: 40px;
            padding: 8px 18px;
            margin: 8px 0 12px;
        }
        .breadcrumb li {
            display: inline;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin: 0 8px 0 4px;
            color: #bbb;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #cc2222;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb .current {
            color: #444;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #1a1a2e, #2d1b3a);
            color: #fff;
            border-radius: 28px;
            padding: 40px 36px;
            margin: 12px 0 36px;
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
            justify-content: space-between;
        }
        .hero-text {
            flex: 2 1 300px;
        }
        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffd700, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 1.2rem;
            margin: 16px 0 8px;
            opacity: 0.85;
            max-width: 600px;
        }
        .hero-img {
            flex: 1 1 200px;
            text-align: center;
        }
        .hero-img img {
            max-width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        .last-updated {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #ccc;
            margin-top: 8px;
        }
        .last-updated i {
            margin-right: 6px;
        }
        .search-section {
            background: #f4f0eb;
            border-radius: 24px;
            padding: 24px 28px;
            margin: 24px 0 32px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            justify-content: space-between;
        }
        .search-section form {
            display: flex;
            flex: 3 1 300px;
            gap: 10px;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 14px 20px;
            border: none;
            border-radius: 60px;
            font-size: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            outline: none;
            transition: 0.2s;
        }
        .search-section input[type="text"]:focus {
            box-shadow: 0 0 0 3px #cc2222;
        }
        .search-section button {
            background: #cc2222;
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-section button:hover {
            background: #a11b1b;
            transform: scale(1.02);
        }
        .search-tag {
            font-size: 0.85rem;
            color: #666;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 36px;
            margin: 28px 0;
        }
        @media(max-width:920px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .main-article h2 {
            font-size: 2rem;
            font-weight: 800;
            margin: 40px 0 14px;
            color: #1a1a2e;
            border-left: 6px solid #cc2222;
            padding-left: 18px;
        }
        .main-article h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 32px 0 10px;
            color: #2a2a3e;
        }
        .main-article h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 8px;
            color: #3a3a4e;
        }
        .main-article p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c2c3a;
        }
        .main-article a {
            color: #cc2222;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px dotted #cc2222;
        }
        .main-article a:hover {
            border-bottom-style: solid;
            background: #fff5f0;
        }
        .main-article ul,
        .main-article ol {
            margin: 12px 0 24px 28px;
        }
        .main-article li {
            margin-bottom: 8px;
            font-size: 1.02rem;
        }
        .highlight-box {
            background: #faf3ed;
            border-radius: 20px;
            padding: 24px 28px;
            margin: 28px 0;
            border-left: 6px solid #ffd700;
        }
        .highlight-box strong {
            color: #cc2222;
        }
        .emoji-big {
            font-size: 1.8rem;
            vertical-align: middle;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .stat-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px 18px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #eee;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2.2rem;
            font-weight: 900;
            color: #cc2222;
        }
        .stat-card .label {
            font-size: 0.9rem;
            color: #666;
        }
        .img-full {
            width: 100%;
            border-radius: 20px;
            margin: 24px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
        .sidebar {
            background: #faf8f6;
            border-radius: 24px;
            padding: 24px 22px;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a2e;
            border-bottom: 3px solid #cc2222;
            padding-bottom: 8px;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 10px;
        }
        .sidebar a {
            text-decoration: none;
            color: #2a2a3a;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 12px;
            transition: 0.2s;
        }
        .sidebar a:hover {
            background: #ede8e2;
            color: #cc2222;
        }
        .sidebar a i {
            color: #cc2222;
            width: 20px;
        }
        .interact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0 20px;
            padding: 28px 0;
            border-top: 2px solid #ede8e2;
            border-bottom: 2px solid #ede8e2;
        }
        @media(max-width:680px) {
            .interact-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #faf8f6;
            border-radius: 20px;
            padding: 24px 26px;
        }
        .comment-box h3,
        .rating-box h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 14px;
            color: #1a1a2e;
        }
        .comment-box textarea {
            width: 100%;
            border: 2px solid #e0d8d0;
            border-radius: 16px;
            padding: 14px 16px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #cc2222;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d8d0;
            border-radius: 40px;
            font-size: 1rem;
            margin: 8px 0 14px;
            outline: none;
        }
        .comment-box input[type="text"]:focus {
            border-color: #cc2222;
        }
        .comment-box button,
        .rating-box button {
            background: #cc2222;
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #a11b1b;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 2rem;
            margin: 12px 0 18px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd700;
        }
        .site-footer {
            margin-top: 40px;
            padding: 32px 0 20px;
            border-top: 2px solid #ede8e2;
            text-align: center;
        }
        .site-footer friend-link {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
            padding: 18px 0 14px;
            font-size: 0.95rem;
        }
        .site-footer friend-link a {
            color: #cc2222;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
        }
        .site-footer friend-link a:hover {
            border-bottom-color: #cc2222;
        }
        .site-footer .copyright {
            font-size: 0.85rem;
            color: #888;
            padding-top: 12px;
            border-top: 1px solid #eee;
        }
        .site-footer .copyright strong {
            color: #444;
        }
        @media(max-width:768px) {
            .wrapper {
                padding: 12px 12px 30px;
                border-radius: 20px;
            }
            .site-header {
                padding: 8px 0;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 8px 0;
                font-size: 1.1rem;
                width: 100%;
                border-bottom: 1px solid #eee;
            }
            .hero {
                padding: 28px 20px;
                flex-direction: column;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 2rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 6px 14px;
                overflow-x: auto;
                white-space: nowrap;
            }
            .search-section {
                flex-direction: column;
                padding: 18px 16px;
            }
            .search-section form {
                width: 100%;
                flex-direction: column;
            }
            .search-section button {
                justify-content: center;
            }
            .main-article h2 {
                font-size: 1.6rem;
            }
            .main-article h3 {
                font-size: 1.25rem;
            }
            .sidebar {
                position: static;
            }
            .interact-section {
                grid-template-columns: 1fr;
            }
            .stat-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media(max-width:480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .hero-text h1 {
                font-size: 1.7rem;
            }
            .main-article p {
                font-size: 0.98rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::selection {
            background: #cc2222;
            color: #fff;
        }
