        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.8;
            color: #1a1a2e;
            background: #faf9f6;
            background-image: linear-gradient(145deg, #faf9f6 0%, #f0ede8 100%);
            min-height: 100vh;
        }
        a {
            color: #e85d04;
            text-decoration: none;
            transition: all 0.25s ease;
        }
        a:hover {
            color: #dc2f02;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        :root {
            --saffron: #ff9933;
            --green: #138808;
            --white: #ffffff;
            --blue: #06038d;
            --deep-saffron: #e85d04;
            --light-bg: #faf9f6;
            --card-bg: #ffffff;
            --text-dark: #1a1a2e;
            --text-soft: #3d3d5c;
            --border-light: #e8e5df;
            --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
            --radius: 16px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: var(--white);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(12px);
            background: rgba(255, 255, 255, 0.92);
            border-bottom: 2px solid var(--border-light);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--saffron), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            background: linear-gradient(135deg, var(--saffron), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.8rem;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .nav-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
            padding: 0;
        }
        .nav-list li a {
            padding: 8px 16px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-list li a:hover,
        .nav-list li a.active {
            background: var(--saffron);
            color: #fff;
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(255, 153, 51, 0.3);
        }
        .nav-list li a i {
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }
        .hamburger:hover {
            background: rgba(255, 153, 51, 0.08);
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 10px;
            transition: var(--transition);
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        .breadcrumb-wrap {
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
            padding: 10px 0;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 6px 12px;
            padding: 0;
            font-size: 0.85rem;
            color: var(--text-soft);
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #bbb;
            font-weight: 700;
        }
        .breadcrumb a {
            color: var(--text-soft);
        }
        .breadcrumb a:hover {
            color: var(--deep-saffron);
        }
        .breadcrumb .current {
            color: var(--deep-saffron);
            font-weight: 600;
        }
        .main-content {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            letter-spacing: -0.5px;
        }
        h1 span {
            background: linear-gradient(135deg, var(--saffron), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 2.8rem 0 1rem 0;
            line-height: 1.3;
            border-left: 6px solid var(--saffron);
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 2rem 0 0.8rem 0;
            line-height: 1.4;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-soft);
            margin: 1.6rem 0 0.5rem 0;
            line-height: 1.5;
        }
        p {
            margin-bottom: 1.2rem;
            color: var(--text-soft);
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--text-dark);
            line-height: 1.7;
        }
        .section-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 32px 36px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .section-card:hover {
            box-shadow: var(--shadow-md);
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff7ed, #fff1e0);
            border-left: 6px solid var(--saffron);
            padding: 20px 28px;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: var(--deep-saffron);
        }
        .tip-box {
            background: #e8f5e9;
            border-left: 6px solid var(--green);
            padding: 18px 24px;
            border-radius: 0 12px 12px 0;
            margin: 1.4rem 0;
        }
        .emoji-big {
            font-size: 2.2rem;
            display: inline-block;
            margin-right: 6px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }
        .stat-item {
            background: var(--white);
            border-radius: 14px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
        }
        .stat-item .number {
            font-size: 2.4rem;
            font-weight: 900;
            color: var(--deep-saffron);
            line-height: 1.2;
        }
        .stat-item .label {
            font-size: 0.95rem;
            color: var(--text-soft);
            font-weight: 500;
        }
        .search-section {
            margin: 2rem 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            max-width: 680px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            font-size: 1rem;
            background: var(--white);
            transition: var(--transition);
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
        }
        .search-form button {
            padding: 14px 32px;
            background: var(--saffron);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--deep-saffron);
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(232, 93, 4, 0.25);
        }
        .comment-section {
            margin-top: 3rem;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-light);
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 120px;
            transition: var(--transition);
            outline: none;
            background: var(--white);
        }
        .comment-form textarea:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.08);
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 12px;
            align-items: center;
        }
        .comment-form input {
            flex: 1;
            min-width: 180px;
            padding: 12px 18px;
            border: 2px solid var(--border-light);
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            background: var(--white);
            transition: var(--transition);
        }
        .comment-form input:focus {
            border-color: var(--saffron);
        }
        .comment-form button {
            padding: 12px 32px;
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .comment-form button:hover {
            background: #0e6b05;
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(19, 136, 8, 0.2);
        }
        .rating-section {
            margin: 2rem 0;
        }
        .star-rating {
            display: flex;
            gap: 8px;
            font-size: 2.2rem;
            cursor: pointer;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: var(--saffron);
            text-shadow: 0 0 10px rgba(255, 153, 51, 0.3);
        }
        .rating-form button {
            padding: 10px 28px;
            background: var(--deep-saffron);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }
        .rating-form button:hover {
            background: #c24e02;
            transform: scale(1.02);
        }
        .related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            padding: 16px 0;
            list-style: none;
        }
        .related-links li a {
            padding: 6px 16px;
            background: var(--white);
            border-radius: 40px;
            border: 1px solid var(--border-light);
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .related-links li a:hover {
            background: var(--saffron);
            color: #fff;
            border-color: var(--saffron);
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(255, 153, 51, 0.2);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        .featured-image figcaption {
            padding: 12px 16px;
            font-size: 0.9rem;
            color: var(--text-soft);
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
            text-align: center;
            font-style: italic;
        }
        .site-footer {
            background: var(--white);
            border-top: 2px solid var(--border-light);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-inner h4 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .footer-inner p,
        .footer-inner li {
            font-size: 0.95rem;
            color: var(--text-soft);
        }
        .footer-inner ul {
            list-style: none;
            padding: 0;
        }
        .footer-inner ul li {
            margin-bottom: 6px;
        }
        .footer-inner ul li a {
            color: var(--text-soft);
        }
        .footer-inner ul li a:hover {
            color: var(--deep-saffron);
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid var(--border-light);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--text-soft);
        }
        friend-link {
            display: block;
            padding: 16px 20px;
            background: var(--light-bg);
            border-radius: 12px;
            margin: 20px 0 10px;
            border: 1px solid var(--border-light);
            font-size: 0.95rem;
        }
        friend-link a {
            margin: 0 6px;
            padding: 2px 8px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--white);
                padding: 20px 0 12px;
                border-top: 1px solid var(--border-light);
                gap: 2px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 12px 20px;
                border-radius: 0;
                width: 100%;
                justify-content: flex-start;
            }
            .header-inner {
                padding: 10px 16px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .section-card {
                padding: 20px 18px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                min-width: auto;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px 8px;
            }
            .breadcrumb li+li::before {
                margin-right: 6px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .featured-image img {
                border-radius: 10px;
            }
            .comment-form .form-row {
                flex-direction: column;
            }
            .comment-form input {
                min-width: auto;
                width: 100%;
            }
            .star-rating {
                font-size: 1.8rem;
                gap: 4px;
            }
            .related-links {
                gap: 6px 10px;
            }
            .related-links li a {
                font-size: 0.8rem;
                padding: 4px 12px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .section-card {
                padding: 14px 12px;
            }
            .stat-item .number {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .container {
                padding: 0 12px;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        :target {
            scroll-margin-top: 100px;
        }
