        *,
        *::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: #2d2a2e;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: #c44569;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus {
            color: #a33a58;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.25;
            color: #1f1c21;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 4px solid #f5cd79;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.65rem;
            border-left: 5px solid #c44569;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.3rem;
            color: #3d3540;
        }
        h4 {
            font-size: 1.1rem;
            color: #5a4d5e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }
        .site-header {
            background: linear-gradient(135deg, #2d1b2e 0%, #4a2c4e 100%);
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fae3b6;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #fae3b6;
        }
        .my-logo i {
            color: #f5cd79;
            margin-right: 6px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fae3b6;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.2rem;
        }
        .primary-nav a {
            color: #efe2f0;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .primary-nav a:hover {
            background: rgba(255, 215, 175, 0.18);
            color: #fae3b6;
            text-decoration: none;
        }
        .primary-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            background: #f0eae6;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #e2d7d0;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 0.8rem;
            padding: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.8rem;
            color: #a3898f;
            font-weight: 600;
        }
        .breadcrumb a {
            color: #7a5d6a;
        }
        .breadcrumb .current {
            color: #2d2a2e;
            font-weight: 600;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            border-left: 2px solid #e8ddd6;
            padding-left: 2rem;
        }
        @media (max-width: 900px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .sidebar {
                border-left: none;
                padding-left: 0;
                border-top: 2px solid #e8ddd6;
                padding-top: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #3d2640;
                padding: 1rem 0.5rem;
                margin-top: 0.8rem;
                border-radius: 12px;
                gap: 0.2rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.7rem 1.2rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
        }
        .feature-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0e8e2;
            transition: box-shadow 0.3s, transform 0.2s;
        }
        .feature-card:hover {
            box-shadow: 0 12px 40px rgba(196, 69, 105, 0.08);
            transform: translateY(-2px);
        }
        .outfit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 1.8rem 0;
        }
        .outfit-item {
            background: #fcf9f7;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid #eee5df;
            transition: background 0.2s, border-color 0.2s;
        }
        .outfit-item:hover {
            background: #fff6f2;
            border-color: #dbb6c4;
        }
        .outfit-item i {
            color: #c44569;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .outfit-item h4 {
            margin-top: 0.2rem;
        }
        .hero-img {
            border-radius: 20px;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .form-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #f0e8e2;
            margin-bottom: 2rem;
        }
        .form-card label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e8ddd6;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fcfaf9;
            transition: border-color 0.25s;
            margin-bottom: 1.2rem;
        }
        .form-card input:focus,
        .form-card textarea:focus {
            outline: none;
            border-color: #c44569;
            background: #fff;
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            background: #c44569;
            color: #fff;
        }
        .btn:hover {
            background: #a33a58;
            transform: scale(1.02);
        }
        .btn i {
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin-bottom: 1.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd2ca;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5cd79;
        }
        .widget {
            background: #fff;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1.8rem;
            border: 1px solid #f0e8e2;
        }
        .widget h3 {
            font-size: 1.2rem;
            border-bottom: 2px solid #f5cd79;
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        .widget ul {
            list-style: none;
            padding: 0;
        }
        .widget li {
            padding: 0.4rem 0;
            border-bottom: 1px dashed #f0e8e2;
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .widget li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget li a::before {
            content: "✦";
            color: #c44569;
            font-size: 0.75rem;
        }
        friend-link {
            display: block;
            background: #2d1b2e;
            color: #efe2f0;
            padding: 2rem 0;
            margin-top: 2rem;
            border-radius: 24px 24px 0 0;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            justify-content: center;
        }
        friend-link a {
            color: #fae3b6;
            font-weight: 500;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.14);
            text-decoration: none;
        }
        friend-link span {
            font-weight: 300;
            opacity: 0.7;
            margin-right: 0.5rem;
        }
        .site-footer {
            background: #1f1c21;
            color: #ccc5ce;
            padding: 2rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #fae3b6;
        }
        .site-footer p {
            margin-bottom: 0.4rem;
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.35rem;
            }
            .feature-card {
                padding: 1.2rem;
            }
            .outfit-grid {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        .badge {
            display: inline-block;
            background: #f5cd79;
            color: #2d1b2e;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #7a6b72;
            margin-top: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .last-updated i {
            color: #c44569;
        }
        .section-divider {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f0e8e2, transparent);
            margin: 2.5rem 0;
        }
        .highlight {
            background: #fef6e9;
            padding: 0.1rem 0.4rem;
            border-radius: 6px;
            font-weight: 600;
        }
        .toc {
            background: #fcf9f7;
            border-radius: 16px;
            padding: 1.5rem 2rem;
            margin: 1.5rem 0 2.5rem;
            border: 1px solid #eee5df;
        }
        .toc ol {
            columns: 2;
            column-gap: 2rem;
            list-style: none;
            padding: 0;
        }
        .toc li {
            padding: 0.25rem 0;
            break-inside: avoid;
        }
        .toc a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .toc a::before {
            content: "▸";
            color: #c44569;
            font-weight: 700;
        }
        @media (max-width: 600px) {
            .toc ol {
                columns: 1;
            }
        }
        .quote-block {
            background: #f5edf0;
            border-left: 5px solid #c44569;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
            font-style: italic;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #5a4d5e;
        }
