        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #faf6f2;
            color: #1e1e2a;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #c0392b;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e74c3c;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            border-bottom: 3px solid #c0392b;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            transition: transform 0.25s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.04);
            text-decoration: none;
        }
        .my-logo i {
            -webkit-text-fill-color: #e74c3c;
            margin-right: 6px;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            color: #f0e6d3;
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.92rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .nav-bar a:hover {
            background: rgba(192, 57, 43, 0.65);
            color: #fff;
            text-decoration: none;
        }
        .nav-bar a.active {
            background: #c0392b;
            color: #fff;
        }
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            font-size: 1.8rem;
            color: #f0e6d3;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            background: #f0e6d3;
            padding: 12px 0;
            font-size: 0.88rem;
            border-bottom: 1px solid #dcd0c0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #a0522d;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #7a3b2e;
        }
        .breadcrumb .current {
            color: #2c1810;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(145deg, #2c1810 0%, #4a2c20 100%);
            color: #fcf6ee;
            padding: 50px 0 44px;
            margin-bottom: 36px;
            border-radius: 0 0 40px 40px;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "♥";
            font-size: 18rem;
            color: rgba(192, 57, 43, 0.08);
            position: absolute;
            right: -20px;
            bottom: -60px;
            line-height: 1;
            pointer-events: none;
        }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .hero h1 span {
            display: inline-block;
            background: linear-gradient(135deg, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            opacity: 0.9;
            margin-bottom: 12px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 32px;
            font-size: 0.95rem;
            color: #d4c5b2;
            margin-top: 20px;
        }
        .hero-meta i {
            margin-right: 6px;
            color: #e74c3c;
        }
        .search-wrap {
            background: #fff;
            padding: 24px 28px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            border: 1px solid #e8ddd0;
        }
        .search-wrap label {
            font-weight: 600;
            color: #2c1810;
            font-size: 1.05rem;
        }
        .search-form {
            display: flex;
            flex: 1;
            min-width: 200px;
            gap: 8px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #dcd0c0;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.25s;
            background: #fcf9f5;
        }
        .search-form input:focus {
            border-color: #c0392b;
        }
        .search-form button {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 12px 26px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            font-size: 0.95rem;
        }
        .search-form button:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin-bottom: 50px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            color: #1a1a2e;
            border-left: 6px solid #c0392b;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 34px 0 14px;
            color: #2c1810;
        }
        h4 {
            font-size: 1.18rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #4a2c20;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.02rem;
            color: #2d2d3a;
        }
        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            margin-bottom: 28px;
            border: 1px solid #ede5da;
        }
        .content-card p:last-child {
            margin-bottom: 0;
        }
        .highlight-box {
            background: #fcf3e9;
            border-left: 6px solid #e67e22;
            padding: 20px 24px;
            border-radius: 0 14px 14px 0;
            margin: 24px 0;
        }
        .highlight-box strong {
            color: #a04000;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .feature-img {
            margin: 32px 0;
            border-radius: 18px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        }
        .feature-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .feature-img figcaption {
            text-align: center;
            font-size: 0.88rem;
            color: #7a6a5a;
            margin-top: 10px;
            font-style: italic;
        }
        .link-list {
            list-style: none;
            padding: 0;
        }
        .link-list li {
            padding: 10px 0;
            border-bottom: 1px solid #ede5da;
        }
        .link-list li:last-child {
            border-bottom: none;
        }
        .link-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .link-list a i {
            color: #c0392b;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }
        .sidebar-widget {
            background: #fff;
            border-radius: 20px;
            padding: 22px 24px;
            margin-bottom: 28px;
            border: 1px solid #ede5da;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            margin-bottom: 16px;
            border-bottom: 2px solid #f0e6d3;
            padding-bottom: 10px;
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .styled-table thead {
            background: #2c1810;
            color: #fcf6ee;
        }
        .styled-table th,
        .styled-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #ede5da;
        }
        .styled-table tbody tr:hover {
            background: #fcf3e9;
        }
        .form-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 30px;
            border: 1px solid #ede5da;
            margin-bottom: 28px;
        }
        .form-card label {
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            color: #2c1810;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #dcd0c0;
            border-radius: 12px;
            font-size: 1rem;
            background: #fcf9f5;
            transition: border 0.25s;
            margin-bottom: 18px;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            border-color: #c0392b;
            outline: none;
        }
        .form-card textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-card .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            margin-bottom: 18px;
            cursor: pointer;
            color: #ccc;
        }
        .form-card .rating-stars i.active {
            color: #f39c12;
        }
        .form-card .rating-stars i:hover,
        .form-card .rating-stars i.hover {
            color: #f1c40f;
        }
        .btn-primary {
            background: #c0392b;
            color: #fff;
            border: none;
            padding: 14px 34px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn-primary:hover {
            background: #a93226;
            transform: scale(1.02);
        }
        .btn-primary i {
            margin-right: 8px;
        }
        .site-footer {
            background: #1a1a2e;
            color: #d4c5b2;
            padding: 44px 0 24px;
            margin-top: 50px;
            border-top: 4px solid #c0392b;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 36px;
            margin-bottom: 30px;
        }
        .footer-inner h4 {
            color: #f0e6d3;
            margin-top: 0;
            margin-bottom: 14px;
            font-size: 1.15rem;
        }
        .footer-inner p,
        .footer-inner a {
            color: #b8a89a;
            font-size: 0.92rem;
        }
        .footer-inner a:hover {
            color: #e74c3c;
        }
        .friend-link {
            display: block;
            padding: 12px 0;
            border-top: 1px solid #2c2c44;
            margin-top: 20px;
        }
        .friend-link strong {
            color: #f0e6d3;
            display: block;
            margin-bottom: 10px;
        }
        .friend-link a {
            color: #d4c5b2;
            margin-right: 20px;
            font-size: 0.92rem;
        }
        .friend-link a:hover {
            color: #e74c3c;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid #2c2c44;
            font-size: 0.88rem;
            color: #8a7a6a;
            margin-top: 16px;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 16px;
                gap: 4px;
            }
            .nav-bar a {
                padding: 12px 16px;
                border-radius: 10px;
                white-space: normal;
            }
            .nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .hero::after {
                font-size: 10rem;
                right: -10px;
                bottom: -30px;
            }
            .content-card {
                padding: 20px 16px;
            }
            .form-card {
                padding: 20px 16px;
            }
            .search-wrap {
                padding: 18px 16px;
                flex-direction: column;
            }
            .search-form {
                width: 100%;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .styled-table {
                font-size: 0.85rem;
            }
            .styled-table th,
            .styled-table td {
                padding: 10px 12px;
            }
            .breadcrumb ol {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.7rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #c0392b;
            color: #fff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
            transition: background 0.25s, transform 0.2s;
            z-index: 999;
            border: none;
            cursor: pointer;
        }
        .scroll-top:hover {
            background: #a93226;
            transform: translateY(-4px);
        }
        .star-rating-input {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            margin-bottom: 16px;
        }
        .star-rating-input input {
            display: none;
        }
        .star-rating-input label {
            cursor: pointer;
            color: #ccc;
            transition: color 0.15s;
            font-size: 1.8rem;
        }
        .star-rating-input input:checked~label,
        .star-rating-input label:hover,
        .star-rating-input label:hover~label {
            color: #f39c12;
        }
        .last-updated {
            display: inline-block;
            background: #f0e6d3;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #5a4a3a;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: #c0392b;
        }
