* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #e94560;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #c73652;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            color: #fff;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(233, 69, 96, 0.4);
            transition: transform 0.2s;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
            color: #ffd700;
        }
        .my-logo span {
            color: #ffd700;
        }
        .my-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.8;
            display: block;
            letter-spacing: 1px;
        }
        .nav-toggle {
            display: none;
            font-size: 1.6rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px 10px;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        nav a {
            color: #e0e0e0;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.25s;
            white-space: nowrap;
        }
        nav a:hover {
            color: #fff;
            background: rgba(233, 69, 96, 0.7);
            text-decoration: none;
        }
        nav a.active {
            background: #e94560;
            color: #fff;
        }
        .breadcrumb {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;
            font-size: 0.85rem;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        .breadcrumb ol li+li::before {
            content: "›";
            margin-right: 8px;
            color: #adb5bd;
            font-weight: 700;
        }
        .breadcrumb a {
            color: #0f3460;
        }
        .breadcrumb .current {
            color: #e94560;
            font-weight: 600;
        }
        main {
            padding: 40px 0 60px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #0f3460;
            line-height: 1.2;
            margin-bottom: 16px;
        }
        h1 .highlight {
            color: #e94560;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #16213e;
            margin-top: 48px;
            margin-bottom: 16px;
            border-left: 5px solid #e94560;
            padding-left: 16px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-top: 32px;
            margin-bottom: 12px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3436;
            margin-top: 24px;
            margin-bottom: 8px;
        }
        p {
            margin-bottom: 16px;
            color: #2d3436;
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            padding: 12px 0 20px;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 28px;
            font-size: 0.95rem;
            color: #636e72;
        }
        .meta-info i {
            margin-right: 6px;
            color: #e94560;
        }
        .last-updated {
            font-weight: 600;
            color: #0f3460;
        }
        .featured-image {
            margin: 24px 0 32px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #fff;
            padding: 12px 20px;
            font-size: 0.9rem;
            color: #636e72;
            border-top: 1px solid #e9ecef;
        }
        .btn {
            display: inline-block;
            background: #e94560;
            color: #fff;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background: #c73652;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(233, 69, 96, 0.35);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #e94560;
            color: #e94560;
        }
        .btn-outline:hover {
            background: #e94560;
            color: #fff;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid #f0f0f0;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
        }
        .card i {
            font-size: 2rem;
            color: #e94560;
            margin-bottom: 12px;
        }
        .card h4 {
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .search-section {
            background: linear-gradient(135deg, #0f3460, #16213e);
            color: #fff;
            padding: 40px 24px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
        }
        .search-section h3 {
            color: #ffd700;
            margin-top: 0;
        }
        .search-form {
            display: flex;
            max-width: 560px;
            margin: 16px auto 0;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .search-form input {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            outline: none;
            background: #fff;
            color: #1a1a2e;
        }
        .search-form button {
            padding: 14px 32px;
            border: none;
            border-radius: 40px;
            background: #ffd700;
            color: #0f3460;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.2s;
        }
        .search-form button:hover {
            background: #f0c800;
            transform: scale(1.03);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .feedback-grid {
                grid-template-columns: 1fr;
            }
        }
        .feedback-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid #f0f0f0;
        }
        .feedback-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .feedback-card h3 i {
            color: #e94560;
        }
        .feedback-card form {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 12px;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            padding: 12px 16px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border 0.2s;
            background: #fafafa;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: #e94560;
            outline: none;
            background: #fff;
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .feedback-card .star-rating input:checked~label,
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label {
            color: #ffd700;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 24px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
        }
        th,
        td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }
        th {
            background: #0f3460;
            color: #fff;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        tr:hover td {
            background: #f8f9fa;
        }
        footer {
            background: #0f3460;
            color: #e0e0e0;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }
        footer h4 {
            color: #ffd700;
            margin-top: 0;
            font-weight: 700;
        }
        footer a {
            color: #b0c4de;
        }
        footer a:hover {
            color: #ffd700;
        }
        friend-link {
            display: block;
            padding: 16px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 16px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            font-size: 0.85rem;
            opacity: 0.8;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                gap: 4px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 16px;
                border-radius: 8px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .search-form input {
                min-width: 140px;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .meta-info {
                font-size: 0.8rem;
                gap: 10px;
            }
            .btn {
                padding: 8px 20px;
                font-size: 0.85rem;
            }
        }
        .text-accent {
            color: #e94560;
        }
        .text-gold {
            color: #ffd700;
        }
        .fw-700 {
            font-weight: 700;
        }
        .mt-24 {
            margin-top: 24px;
        }
        .mb-8 {
            margin-bottom: 8px;
        }
        .list-styled {
            padding-left: 24px;
            margin-bottom: 16px;
        }
        .list-styled li {
            margin-bottom: 8px;
        }
        .quote-box {
            background: #f0f4ff;
            border-left: 4px solid #e94560;
            padding: 20px 24px;
            border-radius: 0 12px 12px 0;
            margin: 24px 0;
            font-style: italic;
            color: #2d3436;
        }
        .quote-box .author {
            font-style: normal;
            font-weight: 600;
            margin-top: 8px;
            color: #0f3460;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff5f5, #fff0f0);
            border: 1px solid #fcc;
            padding: 20px 24px;
            border-radius: 16px;
            margin: 24px 0;
        }
        .emoji-big {
            font-size: 2rem;
        }
