* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f4f7fa;
            color: #1e2a3a;
            line-height: 1.7;
            padding: 0 16px;
        }
        a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover {
            color: #004080;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            padding: 20px 24px 40px;
        }
        .header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 12px;
            border-bottom: 2px solid #e9edf2;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff6b35, #f7c948);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .my-logo i {
            -webkit-text-fill-color: #ff6b35;
            font-size: 2rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-bar {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .nav-bar a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 40px;
            background: transparent;
            color: #1e2a3a;
            transition: background 0.2s, color 0.2s;
        }
        .nav-bar a:hover {
            background: #ff6b35;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: #1e2a3a;
            padding: 4px 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #e9edf2;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 14px 0 6px;
            gap: 6px 12px;
            font-size: 0.9rem;
            color: #5e6f8d;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 10px;
            color: #b0c0d4;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #0066cc;
        }
        .breadcrumb a:hover {
            color: #004080;
        }
        .breadcrumb .active {
            color: #1e2a3a;
            font-weight: 600;
        }
        .last-updated {
            display: inline-block;
            background: #eef3f9;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            color: #2c3e5c;
            margin: 8px 0 16px;
            font-weight: 500;
        }
        .last-updated i {
            margin-right: 6px;
            color: #ff6b35;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 16px 0 12px;
            color: #0f1a2e;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin: 40px 0 16px;
            padding-bottom: 8px;
            border-bottom: 3px solid #f0c75e;
            display: inline-block;
            color: #0f1a2e;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 32px 0 12px;
            color: #1e2a3a;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 24px 0 8px;
            color: #2c3e5c;
        }
        p {
            margin: 0 0 18px;
            font-size: 1.05rem;
            color: #2a3b55;
        }
        .highlight {
            background: #fef7e0;
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: 600;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 4px;
        }
        .featured-image {
            margin: 28px 0 32px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            background: #f0f4fa;
            padding: 8px;
        }
        .featured-image figcaption {
            text-align: center;
            font-size: 0.9rem;
            color: #5e6f8d;
            padding: 10px 0 4px;
            font-style: italic;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0 32px;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fafcff;
            font-size: 0.98rem;
        }
        th {
            background: #1e2a3a;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 700;
        }
        td {
            padding: 13px 16px;
            border-bottom: 1px solid #e6ecf3;
            color: #1e2a3a;
        }
        tr:hover td {
            background: #f5f9ff;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #f8fafd;
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid #e9edf2;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .card i {
            font-size: 2rem;
            color: #ff6b35;
            margin-bottom: 12px;
        }
        .card h4 {
            margin: 4px 0 10px;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px 0 20px;
            background: #f4f7fb;
            padding: 18px 22px;
            border-radius: 60px;
            align-items: center;
        }
        .search-box i {
            font-size: 1.3rem;
            color: #ff6b35;
        }
        .search-box input {
            flex: 1;
            min-width: 140px;
            border: none;
            background: transparent;
            font-size: 1rem;
            padding: 8px 4px;
            outline: none;
            font-weight: 500;
            color: #1e2a3a;
        }
        .search-box input::placeholder {
            color: #8899b0;
            font-weight: 400;
        }
        .search-box button {
            background: #ff6b35;
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 10px 28px;
            border-radius: 40px;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .search-box button:hover {
            background: #e55a2b;
            transform: scale(1.02);
        }
        .interaction-area {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 44px 0 20px;
            padding: 28px 0;
            border-top: 2px solid #e9edf2;
        }
        .comment-section,
        .rating-section {
            background: #f8fafd;
            padding: 24px 28px;
            border-radius: 20px;
            border: 1px solid #e6ecf3;
        }
        .comment-section h3,
        .rating-section h3 {
            margin-top: 0;
            border-bottom: 2px solid #f0c75e;
            padding-bottom: 8px;
            display: inline-block;
        }
        .comment-section textarea,
        .rating-section input,
        .rating-section select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d0dae8;
            border-radius: 12px;
            font-size: 1rem;
            margin: 10px 0 14px;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-section textarea:focus,
        .rating-section input:focus,
        .rating-section select:focus {
            border-color: #ff6b35;
            outline: none;
        }
        .comment-section textarea {
            min-height: 90px;
            resize: vertical;
        }
        .btn-submit {
            background: #1e2a3a;
            color: #fff;
            border: none;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
        }
        .btn-submit:hover {
            background: #ff6b35;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #f0c75e;
            margin: 6px 0 12px;
            cursor: pointer;
        }
        .rating-stars i:hover,
        .rating-stars i.active {
            color: #ff9f1c;
            transform: scale(1.1);
        }
        friend-link {
            display: block;
            margin: 40px 0 16px;
            padding: 20px 24px;
            background: #f0f4fa;
            border-radius: 20px;
            border: 1px solid #dde4ee;
        }
        friend-link::before {
            content: "🌐 \00a0 Friend Links";
            font-weight: 800;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 10px;
            color: #1e2a3a;
        }
        friend-link a {
            display: inline-block;
            margin: 6px 16px 6px 0;
            font-weight: 600;
            color: #0066cc;
        }
        friend-link a:hover {
            color: #004080;
        }
        .footer {
            margin-top: 40px;
            padding: 24px 0 12px;
            border-top: 2px solid #e9edf2;
            text-align: center;
            font-size: 0.9rem;
            color: #5e6f8d;
        }
        .footer strong {
            color: #1e2a3a;
        }
        @media (max-width: 768px) {
            .container {
                padding: 12px 14px 30px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .header {
                flex-wrap: wrap;
            }
            .nav-bar {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #ffffff;
                padding: 16px 0 8px;
                border-top: 1px solid #e9edf2;
                margin-top: 10px;
                gap: 6px;
            }
            .nav-bar a {
                padding: 10px 16px;
                width: 100%;
                border-radius: 12px;
            }
            .hamburger {
                display: inline-block;
            }
            #nav-toggle:checked~.nav-bar {
                display: flex;
            }
            .interaction-area {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .search-box {
                border-radius: 24px;
                padding: 14px 18px;
            }
            .search-box button {
                width: 100%;
                padding: 12px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .comment-section,
            .rating-section {
                padding: 18px 16px;
            }
            table {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 10px 12px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 8px;
            }
            .container {
                padding: 8px 10px 20px;
                border-radius: 16px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .my-logo {
                font-size: 1.25rem;
            }
            .featured-image {
                padding: 4px;
            }
            .rating-stars {
                font-size: 1.4rem;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        :focus-visible {
            outline: 3px solid #ff6b35;
            outline-offset: 2px;
        }
