* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f7f3e9;
            color: #2d2d2d;
            line-height: 1.8;
            padding: 0 20px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            background: #fffcf7;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
            border-radius: 32px;
            padding: 28px 36px;
            margin-top: 24px;
            margin-bottom: 24px;
        }
        header {
            padding-bottom: 20px;
            border-bottom: 2px solid #f0e6d8;
            margin-bottom: 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: #1e3c4f;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            color: #f59e0b;
            font-size: 2.2rem;
        }
        .my-logo span {
            background: linear-gradient(135deg, #1e3c4f 0%, #2a6b7f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hamburger {
            display: none;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #1e3c4f;
            padding: 4px 12px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #f0e6d8;
        }
        nav#main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 24px;
        }
        nav#main-nav a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 500;
            font-size: 1.05rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.25s, color 0.25s;
        }
        nav#main-nav a:hover {
            border-bottom-color: #f59e0b;
            color: #1e3c4f;
        }
        nav#main-nav a i {
            margin-right: 6px;
            color: #f59e0b;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 12px;
            font-size: 0.95rem;
            color: #6b6b6b;
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #1e3c4f;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #8a8a8a;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 900;
            color: #1e3c4f;
            line-height: 1.2;
            margin: 24px 0 18px 0;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3c4f;
            margin: 40px 0 16px 0;
            padding-bottom: 6px;
            border-bottom: 3px solid #f59e0b;
            display: inline-block;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2a6b7f;
            margin: 30px 0 12px 0;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3d3d3d;
            margin: 20px 0 10px 0;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #3a3a3a;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #2d2d2d;
            background: #faf5ee;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 6px solid #f59e0b;
            margin-bottom: 28px;
        }
        strong {
            color: #1e3c4f;
            font-weight: 700;
        }
        em {
            color: #2a6b7f;
            font-style: italic;
        }
        .highlight {
            background: #fef3c7;
            padding: 0 6px;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.4rem;
        }
        .featured-image {
            margin: 30px 0 24px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            background: #e8ddd0;
            text-align: center;
        }
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            max-height: 520px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 14px 20px;
            font-size: 0.95rem;
            color: #5a5a5a;
            background: #fffcf7;
            border-top: 1px solid #f0e6d8;
        }
        .link-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
            margin: 24px 0 28px 0;
            padding: 0;
            list-style: none;
        }
        .link-grid li a {
            display: block;
            padding: 12px 16px;
            background: #faf5ee;
            border-radius: 12px;
            text-decoration: none;
            color: #1e3c4f;
            font-weight: 500;
            transition: background 0.25s, transform 0.2s;
            border: 1px solid #f0e6d8;
        }
        .link-grid li a:hover {
            background: #f0e6d8;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
        }
        .link-grid li a i {
            margin-right: 8px;
            color: #f59e0b;
        }
        .search-section {
            background: #faf5ee;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 32px 0;
            border: 1px solid #f0e6d8;
        }
        .search-section h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: 2px solid #e0d5c8;
            border-radius: 40px;
            font-size: 1rem;
            background: #fffcf7;
            transition: border-color 0.3s;
            outline: none;
        }
        .search-form input:focus {
            border-color: #f59e0b;
        }
        .search-form button {
            padding: 14px 32px;
            background: #1e3c4f;
            color: #fff;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #2a6b7f;
            transform: scale(1.02);
        }
        .review-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        @media (max-width: 768px) {
            .review-section {
                grid-template-columns: 1fr;
            }
        }
        .review-card {
            background: #faf5ee;
            border-radius: 20px;
            padding: 24px 28px;
            border: 1px solid #f0e6d8;
        }
        .review-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .review-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 10px;
        }
        .review-card form input,
        .review-card form textarea {
            padding: 12px 16px;
            border: 2px solid #e0d5c8;
            border-radius: 12px;
            font-size: 0.95rem;
            background: #fffcf7;
            transition: border-color 0.3s;
            outline: none;
            font-family: inherit;
        }
        .review-card form input:focus,
        .review-card form textarea:focus {
            border-color: #f59e0b;
        }
        .review-card form textarea {
            min-height: 90px;
            resize: vertical;
        }
        .review-card form button {
            padding: 12px 24px;
            background: #f59e0b;
            color: #1e3c4f;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        .review-card form button:hover {
            background: #d48a08;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 1.8rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d1ccc5;
            transition: color 0.2s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
            transform: scale(1.1);
        }
        footer {
            margin-top: 48px;
            padding-top: 28px;
            border-top: 2px solid #f0e6d8;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-grid h4 {
            font-size: 1.1rem;
            color: #1e3c4f;
            margin-bottom: 10px;
        }
        .footer-grid a {
            display: block;
            color: #4a4a4a;
            text-decoration: none;
            padding: 4px 0;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .footer-grid a:hover {
            color: #f59e0b;
        }
        friend-link {
            display: block;
            padding: 16px 20px;
            background: #faf5ee;
            border-radius: 16px;
            margin: 12px 0 20px 0;
            font-size: 0.95rem;
        }
        friend-link a {
            color: #1e3c4f;
            text-decoration: none;
            font-weight: 500;
            margin: 0 8px;
        }
        friend-link a:hover {
            text-decoration: underline;
            color: #f59e0b;
        }
        .copyright {
            text-align: center;
            padding: 20px 0 8px 0;
            font-size: 0.9rem;
            color: #6b6b6b;
            border-top: 1px solid #f0e6d8;
        }
        .copyright strong {
            color: #1e3c4f;
        }
        .last-updated {
            font-size: 0.9rem;
            color: #8a8a8a;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 16px 0 0 0;
            padding: 8px 0;
        }
        .last-updated i {
            color: #f59e0b;
        }
        @media (max-width: 768px) {
            .container {
                padding: 16px 14px;
                margin-top: 12px;
                border-radius: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            header {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
                order: 1;
            }
            nav#main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 16px 0 8px 0;
                order: 2;
            }
            nav#main-nav.open {
                display: flex;
            }
            nav#main-nav a {
                font-size: 1rem;
                padding: 8px 0;
                width: 100%;
                border-bottom: 1px solid #f0e6d8;
            }
            .breadcrumb {
                font-size: 0.8rem;
                order: 3;
            }
            .link-grid {
                grid-template-columns: 1fr 1fr;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .review-section {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 480px) {
            .link-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 12px 10px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .lead {
                font-size: 1.05rem;
                padding: 16px 18px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        .schema-hidden {
            display: none;
        }
        .divider {
            height: 2px;
            background: linear-gradient(to right, #f0e6d8, transparent);
            margin: 32px 0;
        }
        .tip-box {
            background: #eef6f9;
            border-radius: 16px;
            padding: 20px 24px;
            border-left: 6px solid #2a6b7f;
            margin: 20px 0;
        }
        .tip-box i {
            color: #2a6b7f;
            margin-right: 10px;
        }
        .stat-number {
            font-weight: 900;
            color: #f59e0b;
            font-size: 1.2em;
        }
