        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f9fafc;
            color: #1e293b;
            line-height: 1.7;
            padding: 0 1rem;
        }
        a {
            color: #2563eb;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin-bottom: 1.2rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #0f172a;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.4rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #58cc02;
            padding-bottom: 0.3rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.4rem;
            color: #1e293b;
        }
        h4 {
            font-size: 1.15rem;
            color: #334155;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        strong {
            font-weight: 700;
            color: #0f172a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
        }
        .site-header {
            background: #ffffff;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
            background: rgba(255, 255, 255, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #58cc02, #1cb0f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-block;
            text-decoration: none !important;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: #58cc02;
            margin-right: 4px;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            font-weight: 500;
            color: #1e293b;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        .main-nav a:hover {
            border-bottom-color: #58cc02;
            color: #0f172a;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 4px;
            color: #58cc02;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #1e293b;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: 0.2s;
        }
        .hamburger:hover {
            color: #58cc02;
        }
        .nav-toggle {
            display: none;
        }
        .nav-toggle:checked~.main-nav {
            display: flex;
            flex-direction: column;
            width: 100%;
            padding-top: 1rem;
            gap: 0.6rem;
        }
        .nav-toggle:checked~.main-nav a {
            width: 100%;
            padding: 0.6rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .breadcrumb {
            background: #f1f5f9;
            padding: 0.6rem 1rem;
            border-radius: 40px;
            font-size: 0.9rem;
            margin: 0.8rem 0 1.2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 0.6rem;
        }
        .breadcrumb a {
            color: #2563eb;
        }
        .breadcrumb span {
            color: #64748b;
        }
        .breadcrumb .sep {
            color: #94a3b8;
            font-weight: 300;
        }
        .hero {
            background: linear-gradient(145deg, #e6f7e0, #c8f0f9);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            margin: 1.2rem 0 2rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        .hero-text {
            flex: 2 1 340px;
        }
        .hero-text h1 {
            font-size: 2.6rem;
            margin-bottom: 0.6rem;
            background: linear-gradient(135deg, #0f172a, #1cb0f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #334155;
            max-width: 600px;
        }
        .hero-img {
            flex: 1 1 200px;
            text-align: center;
        }
        .hero-img img {
            border-radius: 20px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            max-width: 260px;
            width: 100%;
        }
        .section {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
        }
        .section-alt {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            min-width: 480px;
        }
        th,
        td {
            padding: 0.9rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background: #f1f5f9;
            font-weight: 700;
            color: #0f172a;
        }
        tr:hover td {
            background: #f8fafc;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #1e293b;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: 0.2s;
            background: #fff;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #58cc02;
            outline: none;
            box-shadow: 0 0 0 4px rgba(88, 204, 2, 0.15);
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: #58cc02;
            color: #fff;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
            background: #46a802;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(88, 204, 2, 0.3);
        }
        .btn-secondary {
            background: #1cb0f6;
        }
        .btn-secondary:hover {
            background: #0f8fd9;
            box-shadow: 0 8px 20px rgba(28, 176, 246, 0.3);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #cbd5e1;
            transition: 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f59e0b;
        }
        .comment-item {
            padding: 1.2rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #0f172a;
        }
        .comment-date {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-left: 1rem;
        }
        .comment-text {
            margin-top: 0.4rem;
            color: #334155;
        }
        .search-box {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }
        .search-box input {
            flex: 1 1 200px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e2e8f0;
            border-radius: 40px;
            font-size: 1rem;
        }
        .search-box input:focus {
            border-color: #1cb0f6;
            outline: none;
            box-shadow: 0 0 0 4px rgba(28, 176, 246, 0.12);
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #f1f5f9;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        friend-link a:hover {
            background: #e2e8f0;
            text-decoration: none;
        }
        .site-footer {
            background: #0f172a;
            color: #cbd5e1;
            border-radius: 24px 24px 0 0;
            padding: 2.5rem 2rem;
            margin-top: 2rem;
        }
        .site-footer a {
            color: #94a3b8;
        }
        .site-footer a:hover {
            color: #fff;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-copy {
            border-top: 1px solid #1e293b;
            padding-top: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
        }
        .last-updated {
            display: inline-block;
            background: #f1f5f9;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 1rem;
        }
        .last-updated i {
            margin-right: 4px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .header-inner {
                align-items: center;
            }
            .hero {
                padding: 1.8rem 1.2rem;
                flex-direction: column;
                text-align: center;
            }
            .hero-text h1 {
                font-size: 1.8rem;
            }
            .hero-text p {
                font-size: 1rem;
            }
            .hero-img img {
                max-width: 180px;
            }
            .section {
                padding: 1.4rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            .site-footer {
                padding: 1.8rem 1rem;
            }
            .table-wrap table {
                font-size: 0.85rem;
                min-width: 320px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
        }
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.5rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.95rem;
            }
            .search-box input {
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
            }
            .form-group input,
            .form-group textarea {
                font-size: 0.95rem;
            }
        }
        .mt-1 {
            margin-top: 0.8rem;
        }
        .mt-2 {
            margin-top: 1.6rem;
        }
        .mb-1 {
            margin-bottom: 0.8rem;
        }
        .mb-2 {
            margin-bottom: 1.6rem;
        }
        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }
        .gap-1 {
            gap: 0.8rem;
        }
        .text-muted {
            color: #64748b;
        }
        .text-sm {
            font-size: 0.9rem;
        }
        .bg-soft {
            background: #f8fafc;
            padding: 1.2rem;
            border-radius: 16px;
            border-left: 4px solid #58cc02;
        }
        .emoji-lg {
            font-size: 2rem;
        }
        .inline-icon {
            margin-right: 6px;
            color: #58cc02;
        }
        hr {
            border: none;
            border-top: 2px dashed #e2e8f0;
            margin: 2rem 0;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .card {
            background: #f8fafc;
            padding: 1.4rem;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            transition: 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .card i {
            font-size: 2rem;
            color: #58cc02;
            margin-bottom: 0.6rem;
        }
        .card h4 {
            margin-top: 0.2rem;
        }
