        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
            background: #f7f9fc;
            color: #1a1a2e;
            line-height: 1.75;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
            word-wrap: break-word;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover,
        a:focus {
            color: #0f3460;
            text-decoration: underline;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            color: #0f3460;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 3px solid #e94560;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #16213e;
        }
        h4 {
            font-size: 1.1rem;
            color: #1a1a2e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        hr {
            border: none;
            border-top: 2px dashed #dce1e8;
            margin: 2.5rem 0;
        }
        blockquote {
            background: #eef1f5;
            border-left: 5px solid #e94560;
            padding: 1rem 1.5rem;
            border-radius: 0 10px 10px 0;
            margin: 1.5rem 0;
            font-style: italic;
        }
        code {
            background: #eef1f5;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        header {
            background: #0f3460;
            color: #fff;
            border-radius: 0 0 20px 20px;
            padding: 0.8rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
            margin-bottom: 1rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #e94560, #f5a623);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.8rem;
            font-weight: 400;
            -webkit-text-fill-color: #ccc;
            color: #ccc;
            display: block;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            gap: 0.2rem;
            align-items: center;
        }
        nav a {
            color: #f0f5ff;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
        }
        nav a i {
            margin-right: 0.3rem;
        }
        .breadcrumb {
            width: 100%;
            margin-top: 0.5rem;
            font-size: 0.85rem;
            color: #b0c4de;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        .breadcrumb a {
            color: #b0c4de;
            padding: 0.1rem 0.2rem;
            font-weight: 400;
        }
        .breadcrumb a:hover {
            color: #fff;
            background: transparent;
        }
        .breadcrumb span {
            color: #f0f5ff;
        }
        .search-section {
            background: #fff;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            margin: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            align-items: center;
        }
        .search-section form {
            display: flex;
            flex: 1 1 300px;
            gap: 0.5rem;
        }
        .search-section input[type="text"] {
            flex: 1;
            padding: 0.75rem 1.2rem;
            border: 2px solid #dce1e8;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-section input[type="text"]:focus {
            border-color: #e94560;
        }
        .search-section button {
            background: #0f3460;
            color: #fff;
            border: none;
            padding: 0.75rem 1.8rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-section button:hover {
            background: #e94560;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            gap: 2rem;
        }
        .featured-image-wrap {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image-wrap figcaption {
            padding: 0.8rem 1.2rem;
            background: #f0f4fa;
            font-size: 0.9rem;
            color: #2c3e50;
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .comment-box,
        .rating-box {
            background: #fff;
            padding: 1.8rem;
            border-radius: 20px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid #dce1e8;
            border-radius: 14px;
            font-size: 1rem;
            resize: vertical;
            min-height: 110px;
            transition: border 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #e94560;
            outline: none;
        }
        .comment-box input[type="text"],
        .rating-box input[type="number"],
        .rating-box select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dce1e8;
            border-radius: 40px;
            font-size: 1rem;
            margin: 0.4rem 0 0.8rem;
            transition: border 0.3s;
        }
        .comment-box input:focus,
        .rating-box input:focus,
        .rating-box select:focus {
            border-color: #e94560;
            outline: none;
        }
        .comment-box button,
        .rating-box button {
            background: #e94560;
            color: #fff;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.1s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            background: #0f3460;
            transform: scale(1.02);
        }
        .rating-box .star-display {
            font-size: 1.8rem;
            color: #f5a623;
            letter-spacing: 4px;
        }
        footer {
            background: #0f3460;
            color: #e0e8f0;
            border-radius: 20px 20px 0 0;
            padding: 2rem 1.8rem 1.5rem;
            margin-top: 3rem;
        }
        footer a {
            color: #f5a623;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-friends {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            justify-content: center;
            margin-bottom: 1.5rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-friends a {
            font-size: 0.95rem;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.06);
            transition: background 0.25s;
        }
        .footer-friends a:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
        }
        .footer-copy {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .footer-copy p {
            margin-bottom: 0.3rem;
        }
        .footer-copy i {
            font-size: 0.8rem;
        }
        @media (max-width: 768px) {
            body {
                padding: 0 0.6rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            header {
                padding: 0.6rem 1rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                gap: 0.2rem;
            }
            nav.show {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 10px;
                white-space: normal;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
            }
            .search-section {
                flex-direction: column;
            }
            .search-section form {
                width: 100%;
            }
            .footer-friends {
                flex-direction: column;
                align-items: center;
            }
        }
        @media (min-width: 769px) {
            .nav-toggle {
                display: none !important;
            }
            nav {
                display: flex !important;
            }
        }
        .tag {
            display: inline-block;
            background: #eef1f5;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0f3460;
            margin-right: 0.3rem;
        }
        .last-updated {
            background: #f0f4fa;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            display: inline-block;
            font-size: 0.9rem;
            font-weight: 500;
            color: #2c3e50;
            margin: 0.8rem 0;
        }
        .fa-ul li {
            margin-bottom: 0.6rem;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.5rem 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #eef1f5;
        }
        th {
            background: #0f3460;
            color: #fff;
            font-weight: 600;
        }
        tr:last-child td {
            border-bottom: none;
        }
        .btn-outline {
            display: inline-block;
            border: 2px solid #e94560;
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            font-weight: 600;
            color: #e94560;
            transition: all 0.25s;
        }
        .btn-outline:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
        }
        friend-link {
            display: inline;
        }
