* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #fafaf9;
            color: #1e1e2a;
            line-height: 1.7;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #0b6e4f;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #e8b12e;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: linear-gradient(135deg, #0b2b26 0%, #1a4a3a 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(to right, #f9d976, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .my-logo a {
            color: inherit;
            -webkit-text-fill-color: transparent;
            background: inherit;
            -webkit-background-clip: text;
            background-clip: text;
        }
        .my-logo a:hover {
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
            display: block;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        .hamburger {
            display: none;
            background: none;
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            font-size: 1.6rem;
            padding: 8px 14px;
            border-radius: 12px;
            cursor: pointer;
            transition: 0.2s;
        }
        .hamburger:hover {
            border-color: #f9d976;
            color: #f9d976;
        }
        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            list-style: none;
            align-items: center;
        }
        .nav-menu li a {
            color: rgba(255, 255, 255, 0.88);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-menu li a:hover {
            color: #f9d976;
            border-bottom-color: #f9d976;
            text-decoration: none;
        }
        .nav-menu li a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 12px 0 4px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
        }
        .breadcrumb a:hover {
            color: #f9d976;
        }
        .breadcrumb span {
            color: rgba(255, 255, 255, 0.5);
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0b2b26;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        h1 i {
            color: #e8b12e;
            margin-right: 12px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #1a4a3a;
            margin-top: 56px;
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 4px solid #e8b12e;
            display: inline-block;
        }
        h2 i {
            color: #e8b12e;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0b2b26;
            margin-top: 36px;
            margin-bottom: 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d5a4a;
            margin-top: 24px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #2d3e3a;
            background: #f0f7f3;
            padding: 24px 28px;
            border-radius: 20px;
            border-left: 6px solid #e8b12e;
            margin-bottom: 32px;
        }
        .highlight {
            background: #fef9e6;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: #1a4a3a;
        }
        .emoji-big {
            font-size: 1.8rem;
            margin-right: 8px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 32px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2rem;
            color: #e8b12e;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .btn {
            display: inline-block;
            background: #0b6e4f;
            color: #fff;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.2s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn:hover {
            background: #e8b12e;
            color: #0b2b26;
            text-decoration: none;
            transform: scale(1.02);
        }
        .btn i {
            margin-right: 8px;
        }
        .image-wrapper {
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            background: #e6eee8;
            padding: 8px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
        }
        .image-wrapper img {
            border-radius: 14px;
            width: 100%;
        }
        .image-wrapper figcaption {
            padding: 12px 16px 6px;
            font-size: 0.9rem;
            color: #4a5e56;
            font-style: italic;
        }
        .faq-item {
            background: #fff;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
            border-left: 4px solid #e8b12e;
        }
        .faq-item h4 {
            margin: 0 0 8px;
            color: #0b2b26;
        }
        .faq-item p {
            margin: 0;
        }
        .comment-box,
        .score-box,
        .search-box {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            margin: 40px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e6eee8;
        }
        .comment-box h3,
        .score-box h3,
        .search-box h3 {
            margin-top: 0;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            color: #0b2b26;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #dce8e2;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            transition: 0.2s;
            background: #fafaf9;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0b6e4f;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(11, 110, 79, 0.1);
        }
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ccc;
            transition: 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5b342;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            background: #f0f7f3;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 32px 0;
            list-style: none;
        }
        .link-list li a {
            font-weight: 500;
        }
        .link-list li a i {
            margin-right: 6px;
            font-size: 0.8rem;
            color: #e8b12e;
        }
        .updated {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #eef3f0;
            padding: 12px 20px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: #2d5a4a;
            margin: 24px 0;
            width: fit-content;
        }
        .updated i {
            color: #0b6e4f;
        }
        footer {
            background: #0b2b26;
            color: rgba(255, 255, 255, 0.85);
            padding: 40px 0 28px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-inner h4 {
            color: #f9d976;
            margin-top: 0;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
        }
        .footer-inner a:hover {
            color: #f9d976;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        friend-link a {
            color: rgba(255, 255, 255, 0.8);
            margin: 0 16px 0 4px;
        }
        friend-link a:hover {
            color: #f9d976;
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            padding-top: 16px;
        }
        .copyright strong {
            color: rgba(255, 255, 255, 0.7);
        }
        @media (max-width: 900px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 680px) {
            .hamburger {
                display: inline-block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                padding: 16px 0 8px;
                gap: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu li a {
                display: block;
                padding: 10px 16px;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.06);
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .header-inner {
                align-items: flex-start;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .lead {
                font-size: 1.05rem;
                padding: 18px;
            }
            .comment-box,
            .score-box,
            .search-box {
                padding: 20px;
            }
            h1 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .btn {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            background: #e8b12e;
            color: #0b2b26;
            padding: 12px 24px;
            border-radius: 0 0 12px 12px;
            font-weight: 600;
            z-index: 200;
            transition: 0.2s;
        }
        .skip-link:focus {
            top: 0;
        }
