        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        :root {
            --primary: #1a3c34;
            --primary-light: #2a6b5e;
            --secondary: #e8a838;
            --accent: #d97a2b;
            --bg: #f6f4ef;
            --card-bg: #ffffff;
            --text: #1e1e1e;
            --text-light: #4a4a4a;
            --border: #d4d0c8;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --radius-sm: 8px;
            --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            --max-width: 1200px;
            --header-height: 72px;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            padding-top: var(--header-height);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-sm);
        }
        a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus {
            color: var(--accent);
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.3;
            color: var(--primary);
            font-weight: 700;
            margin-top: 1.6em;
            margin-bottom: 0.5em;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.2em;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 0.3rem;
        }
        h3 {
            font-size: 1.35rem;
            color: var(--primary-light);
        }
        h4 {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 600;
        }
        p {
            margin-bottom: 1.2em;
            color: var(--text);
        }
        ul,
        ol {
            margin: 0 0 1.2em 1.8em;
        }
        li {
            margin-bottom: 0.3em;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, var(--secondary), transparent);
            margin: 2.5em 0;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: var(--primary);
            color: #fff;
            z-index: 1000;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: var(--secondary);
            font-size: 1.8rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.5rem;
            font-weight: 400;
            display: block;
            -webkit-text-fill-color: #b0c4b0;
            letter-spacing: 0.5px;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 6px;
            margin: 0;
        }
        .nav-list li a {
            color: #e0e8e0;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
            text-decoration: none;
        }
        .nav-list li a:hover,
        .nav-list li a:focus {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .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 {
            background: transparent;
            padding: 0.8em 0 0.2em 0;
            font-size: 0.85rem;
            color: var(--text-light);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 0.2em;
        }
        .breadcrumb a {
            color: var(--primary-light);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        .breadcrumb .sep {
            color: #aaa;
            margin: 0 4px;
        }
        .section-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2rem 2.2rem;
            margin-bottom: 2.2rem;
            box-shadow: var(--shadow);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .section-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .feature-item {
            background: var(--bg);
            padding: 1.4rem 1.2rem;
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--secondary);
            transition: background 0.2s;
        }
        .feature-item:hover {
            background: #ede8de;
        }
        .feature-item i {
            color: var(--accent);
            font-size: 1.6rem;
            margin-bottom: 0.4rem;
        }
        .search-form {
            display: flex;
            gap: 8px;
            max-width: 500px;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }
        .search-form input[type="text"] {
            flex: 1;
            min-width: 160px;
            padding: 12px 18px;
            border: 2px solid var(--border);
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s;
            background: #fff;
        }
        .search-form input[type="text"]:focus {
            border-color: var(--primary-light);
        }
        .search-form button {
            padding: 12px 28px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: var(--primary-light);
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: var(--font);
            background: #fff;
            transition: border-color 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary-light);
            outline: none;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn-primary {
            padding: 12px 34px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-1px);
        }
        .btn-primary i {
            font-size: 1.1rem;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ccc;
            transition: color 0.2s;
        }
        .rating-stars .star {
            transition: color 0.15s, transform 0.15s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--secondary);
            transform: scale(1.1);
        }
        .styled-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2em 0;
            font-size: 0.95rem;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .styled-table thead {
            background: var(--primary);
            color: #fff;
        }
        .styled-table th,
        .styled-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        .styled-table tbody tr:hover {
            background: #f0ede6;
        }
        footer {
            background: var(--primary);
            color: #d0ddd0;
            padding: 2.8rem 0 1.8rem 0;
            margin-top: 3rem;
        }
        footer .container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        footer a {
            color: #b8cfb8;
        }
        footer a:hover {
            color: var(--secondary);
        }
        footer h4 {
            color: #fff;
            font-size: 1.1rem;
            margin: 0 0 0.8rem 0;
            border: none;
        }
        footer ul {
            list-style: none;
            margin: 0;
        }
        footer ul li {
            margin-bottom: 0.4rem;
        }
        .copyright {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(255, 255, 255, 0.10);
            padding-top: 1.5rem;
            margin-top: 1.2rem;
            text-align: center;
            font-size: 0.85rem;
            color: #90a890;
        }
        friend-link {
            display: block;
            margin-top: 0.8rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0 12px 4px 0;
            padding: 4px 14px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            font-size: 0.85rem;
            transition: background 0.2s;
        }
        friend-link a:hover {
            background: rgba(255, 255, 255, 0.18);
            text-decoration: none;
            color: #fff;
        }
        @media (max-width: 820px) {
            .hamburger {
                display: flex;
            }
            .nav-list {
                display: none;
                position: absolute;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                padding: 16px 20px 24px 20px;
                gap: 4px;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
                border-radius: 0 0 var(--radius) var(--radius);
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                padding: 10px 16px;
                font-size: 1rem;
                display: block;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 1.4rem 1.2rem;
            }
            footer .container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            :root {
                --header-height: 64px;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.4rem;
            }
            .search-form button {
                padding: 12px 18px;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .highlight {
            background: linear-gradient(120deg, #f6e9b0 0%, #f6e9b0 40%, transparent 80%);
            padding: 0 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }
        .last-update {
            display: inline-block;
            font-size: 0.85rem;
            color: var(--text-light);
            background: #ede8de;
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 1rem;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .gallery-grid img {
            border-radius: var(--radius-sm);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: cover;
        }
        .gallery-grid img:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
        }
        .blockquote {
            border-left: 5px solid var(--secondary);
            background: #f0ede6;
            padding: 1.2rem 1.6rem;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            margin: 1.4rem 0;
            font-style: italic;
            color: var(--text-light);
        }
        .blockquote strong {
            color: var(--primary);
        }
