        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f9f7f2;
            color: #1e1e1e;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #b85c1a;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d97730;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px 24px 0 0;
            overflow: hidden;
            padding: 0 24px 40px;
        }
        header {
            padding: 20px 0 12px;
            border-bottom: 2px solid #f0e6d8;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 2.1rem;
            font-weight: 900;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-block;
            font-family: 'Impact', 'Arial Black', sans-serif;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.8rem;
            -webkit-text-fill-color: #555;
            color: #555;
            font-weight: 400;
            letter-spacing: 0;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-list {
            list-style: none;
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
        }
        .nav-list li a {
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #2c3e50;
            background: transparent;
            transition: all 0.2s;
        }
        .nav-list li a:hover {
            background: #e67e22;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #2c3e50;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #f0e6d8;
        }
        .breadcrumb {
            padding: 14px 0 6px;
            font-size: 0.85rem;
            color: #777;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #b85c1a;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 4px;
        }
        .last-updated {
            display: inline-block;
            background: #fef9e7;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #7d6608;
            margin: 6px 0 12px;
            border: 1px solid #f9e79f;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 900;
            color: #1a2a3a;
            margin: 20px 0 8px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.0rem;
            font-weight: 800;
            color: #1a2a3a;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #e67e22;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 32px 0 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #34495e;
            margin: 24px 0 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #2c3e50;
        }
        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: #444;
            background: #fefaf5;
            padding: 20px 24px;
            border-radius: 16px;
            border-left: 5px solid #e67e22;
            margin: 20px 0 28px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fef9e7, #fdebd0);
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
            border: 1px solid #f9e79f;
        }
        .highlight-box strong {
            color: #c0392b;
        }
        .emoji-big {
            font-size: 1.6rem;
            margin-right: 6px;
        }
        .btn {
            display: inline-block;
            background: #e67e22;
            color: #fff;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
        }
        .btn:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e67e22;
            color: #e67e22;
        }
        .btn-outline:hover {
            background: #e67e22;
            color: #fff;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #fcf9f5;
            border-radius: 16px;
            padding: 20px 22px;
            border: 1px solid #eee5da;
            transition: all 0.25s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
            border-color: #e67e22;
        }
        .card h4 {
            margin-top: 0;
        }
        .card i {
            color: #e67e22;
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0;
            font-size: 0.95rem;
            background: #fcfaf7;
            border-radius: 12px;
            overflow: hidden;
        }
        th {
            background: #e67e22;
            color: #fff;
            padding: 12px 16px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 12px 16px;
            border-bottom: 1px solid #f0e6d8;
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr:hover td {
            background: #fef9e7;
        }
        .form-group {
            margin-bottom: 18px;
        }
        .form-group label {
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
            color: #2c3e50;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0d6c8;
            border-radius: 12px;
            font-size: 1rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #e67e22;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .rating-stars .star.active {
            color: #f1c40f;
        }
        .comment-item {
            background: #f8f4ef;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 12px;
            border-left: 4px solid #e67e22;
        }
        .comment-item strong {
            color: #1a2a3a;
        }
        .comment-item small {
            color: #999;
            font-size: 0.8rem;
        }
        footer {
            margin-top: 40px;
            padding-top: 28px;
            border-top: 2px solid #f0e6d8;
        }
        friend-link {
            display: block;
            padding: 20px 0;
            font-style: normal;
        }
        friend-link::before {
            content: "🌐 Friend Links";
            display: block;
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a2a3a;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 16px;
            background: #f0e6d8;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #2c3e50;
            transition: all 0.2s;
        }
        friend-link a:hover {
            background: #e67e22;
            color: #fff;
            text-decoration: none;
        }
        .copyright {
            padding: 16px 0 8px;
            font-size: 0.85rem;
            color: #888;
            text-align: center;
            border-top: 1px solid #f0e6d8;
            margin-top: 16px;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 0 16px 30px;
                border-radius: 16px 16px 0 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 16px 0;
                border-top: 1px solid #f0e6d8;
                margin-top: 12px;
                gap: 6px;
            }
            .nav-list.open {
                display: flex;
            }
            .nav-list li a {
                display: block;
                padding: 10px 16px;
                border-radius: 8px;
            }
            header {
                flex-wrap: wrap;
            }
            .nav-wrapper {
                order: 3;
                width: 100%;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.6rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            table {
                font-size: 0.8rem;
            }
            .lead {
                font-size: 1.05rem;
                padding: 16px;
            }
            .rating-stars {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 10px 24px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #e67e22;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            box-shadow: 0 4px 16px rgba(230, 126, 34, 0.4);
            cursor: pointer;
            border: none;
            transition: all 0.25s;
            z-index: 999;
        }
        .scroll-top:hover {
            transform: scale(1.1);
            background: #d35400;
        }
        .schema-hidden {
            display: none;
        }
