        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f8f5f0;
            color: #2d2a24;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #2e7d5e;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1e4f3a;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4 {
            font-weight: 700;
            line-height: 1.3;
            color: #1e3b2f;
        }
        h1 {
            font-size: 2.4rem;
            margin: 1.5rem 0 0.75rem;
            border-bottom: 4px solid #c6a87c;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            margin: 2.5rem 0 1rem;
            border-left: 6px solid #c6a87c;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.35rem;
            margin: 2rem 0 0.75rem;
            color: #2e5a44;
        }
        h4 {
            font-size: 1.1rem;
            margin: 1.25rem 0 0.5rem;
            color: #3d6b53;
        }
        p {
            margin-bottom: 1.25rem;
            font-size: 1.05rem;
        }
        ul,
        ol {
            margin-bottom: 1.5rem;
            padding-left: 1.75rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, #c6a87c, transparent);
            margin: 2.5rem 0;
        }
        .container {
            padding: 0 0.5rem;
        }
        header {
            padding: 1.25rem 0 0.75rem;
            border-bottom: 2px solid #dcc9b0;
            position: relative;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #2e7d5e, #5a9e7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(46, 125, 94, 0.15);
            display: inline-block;
        }
        .my-logo a {
            background: none;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .my-logo a::before {
            content: "🎣 ";
            -webkit-text-fill-color: initial;
            color: #c6a87c;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            flex-wrap: wrap;
            padding: 0;
            margin: 0;
        }
        .nav-links li a {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            color: #2d2a24;
            background: transparent;
            transition: background 0.25s, color 0.25s;
        }
        .nav-links li a:hover {
            background: #2e7d5e;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2d2a24;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e8e0d6;
        }
        .breadcrumb {
            padding: 0.75rem 0 0.25rem;
            font-size: 0.9rem;
            color: #6b5e4f;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #b8a690;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #2e7d5e;
        }
        .search-box {
            background: #fffcf8;
            border-radius: 60px;
            padding: 0.35rem 0.35rem 0.35rem 1.5rem;
            display: flex;
            align-items: center;
            border: 2px solid #dcc9b0;
            max-width: 420px;
            margin: 1.5rem 0 2rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .search-box:focus-within {
            border-color: #2e7d5e;
            box-shadow: 0 0 0 4px rgba(46, 125, 94, 0.15);
        }
        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.7rem 0;
            font-size: 1rem;
            outline: none;
            color: #2d2a24;
        }
        .search-box button {
            background: #2e7d5e;
            border: none;
            color: #fff;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #1e5a42;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .comment-area,
        .rating-area {
            background: #fffcf8;
            border-radius: 20px;
            padding: 1.75rem 2rem 2rem;
            border: 1px solid #e8ddd0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }
        .comment-area h3,
        .rating-area h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.3rem;
        }
        .comment-area textarea {
            width: 100%;
            border: 2px solid #dcc9b0;
            border-radius: 16px;
            padding: 1rem;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            background: #fff;
            transition: border-color 0.3s;
        }
        .comment-area textarea:focus {
            border-color: #2e7d5e;
            outline: none;
        }
        .comment-area form,
        .rating-area form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .comment-area button,
        .rating-area button {
            align-self: flex-end;
            background: #2e7d5e;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s;
        }
        .comment-area button:hover,
        .rating-area button:hover {
            background: #1e5a42;
        }
        .star-select {
            display: flex;
            gap: 0.5rem;
            font-size: 2rem;
            direction: rtl;
            justify-content: flex-end;
        }
        .star-select input {
            display: none;
        }
        .star-select label {
            cursor: pointer;
            color: #dcc9b0;
            transition: color 0.15s;
        }
        .star-select label:hover,
        .star-select label:hover~label,
        .star-select input:checked~label {
            color: #e8b84b;
        }
        .rating-area .star-wrap {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.3rem;
        }
        friend-link {
            display: block;
            padding: 2rem 0 1.5rem;
            border-top: 2px solid #dcc9b0;
            margin-top: 2.5rem;
        }
        friend-link .fl-head {
            font-weight: 700;
            font-size: 1.1rem;
            color: #2d2a24;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem 1.2rem;
            list-style: none;
            padding: 0;
        }
        friend-link .fl-list a {
            font-size: 0.95rem;
            color: #2e7d5e;
        }
        footer {
            padding: 1.5rem 0 2.5rem;
            text-align: center;
            color: #6b5e4f;
            font-size: 0.95rem;
            border-top: 1px solid #e8ddd0;
            margin-top: 1rem;
        }
        footer .copyright {
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        footer .copyright i {
            color: #c6a87c;
        }
        @media (max-width: 820px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fffcf8;
                border-radius: 20px;
                padding: 0.75rem 0;
                margin-top: 0.75rem;
                border: 1px solid #e8ddd0;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li a {
                padding: 0.6rem 1.5rem;
                border-radius: 0;
            }
            .search-box {
                max-width: 100%;
                flex-wrap: wrap;
                border-radius: 30px;
                padding: 0.3rem 0.3rem 0.3rem 1rem;
            }
            .search-box input {
                min-width: 120px;
            }
            .search-box button {
                padding: 0.5rem 1.2rem;
                font-size: 0.9rem;
            }
            .star-select {
                font-size: 1.6rem;
            }
            .comment-area,
            .rating-area {
                padding: 1.25rem 1.25rem 1.5rem;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
            }
            .search-box input {
                font-size: 0.9rem;
                padding: 0.4rem 0;
            }
        }
        .tag {
            display: inline-block;
            background: #e8ddd0;
            padding: 0.15rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #2d2a24;
            margin-right: 0.3rem;
        }
        .fish-icon {
            font-size: 1.3rem;
            margin-right: 0.3rem;
        }
        .highlight {
            background: linear-gradient(120deg, #f3ebe1 0%, #f3ebe1 40%, transparent 80%);
            padding: 0 0.3rem;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            background: #2e7d5e10;
            padding: 0.25rem 1rem;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #2e7d5e;
            border: 1px solid #2e7d5e20;
            margin-bottom: 1rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .stat-card {
            background: #fffcf8;
            border-radius: 16px;
            padding: 1rem 1.2rem;
            border: 1px solid #e8ddd0;
            text-align: center;
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #2e7d5e;
            line-height: 1.2;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #6b5e4f;
        }
