        *,
        *::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: #f9f7f4;
            color: #1e1e1e;
            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: #b22222;
            text-decoration: none;
            transition: color 0.2s, background 0.2s;
        }
        a:hover,
        a:focus {
            color: #8b1a1a;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 1rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #111;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 4px solid #b22222;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #b22222;
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #2c2c2c;
        }
        h4 {
            font-size: 1.2rem;
            color: #3a3a3a;
        }
        p {
            margin: 1.2rem 0;
            text-align: justify;
        }
        .container {
            background: #ffffff;
            border-radius: 20px;
            padding: 2rem 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            margin: 1.5rem 0 3rem;
        }
        .text-center {
            text-align: center;
        }
        .text-muted {
            color: #666;
            font-size: 0.9rem;
        }
        .badge {
            display: inline-block;
            background: #b22222;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .divider {
            border: none;
            border-top: 2px dashed #ddd;
            margin: 2.5rem 0;
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 0;
            border-bottom: 1px solid #e8e2da;
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #b22222;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: #fff;
            padding: 0.2rem 1rem 0.2rem 0;
        }
        .my-logo span {
            color: #1e1e1e;
            font-weight: 300;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #8b1a1a;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            font-weight: 500;
            color: #2c2c2c;
            border-radius: 30px;
            transition: background 0.2s, color 0.2s;
            font-size: 0.95rem;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #b22222;
            color: #fff;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #1e1e1e;
            padding: 0.2rem 0.6rem;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #f0ece6;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.8rem 0;
            margin: 0.5rem 0 1rem;
            font-size: 0.9rem;
            color: #777;
            background: #f5f2ed;
            border-radius: 30px;
            padding: 0.6rem 1.5rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.6rem;
            color: #bbb;
        }
        .breadcrumb a {
            color: #b22222;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .search-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 2rem 0 1.5rem;
            background: #f5f2ed;
            padding: 1.2rem 1.5rem;
            border-radius: 50px;
            align-items: center;
        }
        .search-box i {
            font-size: 1.2rem;
            color: #b22222;
        }
        .search-box input {
            flex: 1;
            min-width: 180px;
            padding: 0.7rem 1rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            background: #fff;
            outline: 1px solid #ddd;
            transition: outline 0.2s;
        }
        .search-box input:focus {
            outline: 2px solid #b22222;
        }
        .search-box button {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
        }
        .search-box button:hover {
            background: #8b1a1a;
            transform: scale(1.02);
        }
        .hero-img {
            margin: 2rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            background: #e8e2da;
            position: relative;
        }
        .hero-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .hero-caption {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 2rem 1.5rem 1rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: #fff;
            font-size: 0.95rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: #fcfaf8;
            border-radius: 16px;
            padding: 1.5rem 1.5rem 1.8rem;
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid #ece7e0;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
        }
        .card i {
            font-size: 2rem;
            color: #b22222;
            margin-bottom: 0.6rem;
        }
        .card h3 {
            margin-top: 0.2rem;
            margin-bottom: 0.6rem;
        }
        .interact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .interact-card {
            background: #fcfaf8;
            border-radius: 18px;
            padding: 1.8rem 2rem;
            border: 1px solid #ece7e0;
        }
        .interact-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .interact-card form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .interact-card input,
        .interact-card textarea,
        .interact-card select {
            padding: 0.7rem 1rem;
            border: 1px solid #d6cfc6;
            border-radius: 30px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
            font-family: inherit;
        }
        .interact-card input:focus,
        .interact-card textarea:focus,
        .interact-card select:focus {
            border-color: #b22222;
            outline: none;
        }
        .interact-card textarea {
            border-radius: 16px;
            min-height: 90px;
            resize: vertical;
        }
        .interact-card button {
            background: #b22222;
            color: #fff;
            border: none;
            padding: 0.7rem 1.8rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            font-size: 1rem;
            align-self: flex-start;
        }
        .interact-card button:hover {
            background: #8b1a1a;
            transform: scale(1.02);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.15s;
        }
        .star-rating input:checked~label,
        .star-rating label:hover,
        .star-rating label:hover~label {
            color: #f5b342;
        }
        friend-link {
            display: block;
            background: #f5f2ed;
            border-radius: 20px;
            padding: 1.8rem 2rem;
            margin: 2.5rem 0 1.5rem;
            font-size: 0.95rem;
            border: 1px solid #e8e2da;
        }
        friend-link::before {
            content: "🔗 Friends & Links";
            display: block;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
            color: #1e1e1e;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #fff;
            border-radius: 30px;
            border: 1px solid #d6cfc6;
            transition: background 0.2s, border-color 0.2s;
            font-weight: 500;
        }
        friend-link a:hover {
            background: #b22222;
            color: #fff;
            border-color: #b22222;
            text-decoration: none;
        }
        .site-footer {
            border-top: 1px solid #e8e2da;
            padding: 2rem 0 1.5rem;
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: #888;
        }
        .site-footer .copyright {
            margin-top: 0.8rem;
            font-weight: 400;
        }
        .site-footer a {
            color: #b22222;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            .container {
                padding: 1.2rem 1rem;
                border-radius: 14px;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
                padding-left: 0.6rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .site-header {
                padding: 0.8rem 0;
                position: relative;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #fff;
                padding: 0.8rem 0 1.2rem;
                border-top: 1px solid #e8e2da;
                margin-top: 0.6rem;
                gap: 0.1rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.6rem 1rem;
                width: 100%;
                border-radius: 10px;
            }
            .breadcrumb {
                font-size: 0.8rem;
                padding: 0.4rem 1rem;
            }
            .search-box {
                flex-direction: column;
                padding: 1rem;
                border-radius: 30px;
            }
            .search-box input {
                width: 100%;
                min-width: unset;
            }
            .search-box button {
                width: 100%;
            }
            .interact-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .hero-caption {
                position: relative;
                background: #222;
                padding: 0.8rem 1rem;
            }
            .interact-card {
                padding: 1.2rem 1.2rem;
            }
            friend-link {
                padding: 1.2rem 1rem;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0.8rem 0.8rem;
            }
            .my-logo {
                font-size: 1.1rem;
            }
        }
        :focus-visible {
            outline: 3px solid #b22222;
            outline-offset: 2px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.8rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fcfaf8;
            border-radius: 12px;
            overflow: hidden;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #ece7e0;
        }
        th {
            background: #b22222;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .highlight-box {
            background: #fdf6f0;
            border-left: 6px solid #b22222;
            padding: 1.2rem 1.8rem;
            border-radius: 0 16px 16px 0;
            margin: 1.8rem 0;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .last-updated {
            display: inline-block;
            background: #f0ece6;
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #555;
            margin: 0.5rem 0 1.5rem;
        }
