        *,
        *::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, sans-serif;
            background: #f5f7fc;
            color: #1a1a2e;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #2a6f97;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #e94560;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.4rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #0f3460;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.7rem;
            border-bottom: 3px solid #e94560;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.35rem;
            color: #16213e;
        }
        h4 {
            font-size: 1.1rem;
            color: #1a1a2e;
            font-weight: 600;
        }
        p {
            margin: 0.9rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
            color: #fff;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #fff;
            background: linear-gradient(135deg, #f5a623, #e94560);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(233, 69, 96, 0.2);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo i {
            background: none;
            -webkit-text-fill-color: #f5a623;
            margin-right: 4px;
        }
        .main-nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #eaeef7;
            padding: 0.5rem 0.9rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.25s, color 0.25s;
            white-space: nowrap;
        }
        .main-nav a:hover,
        .main-nav a:focus-visible {
            background: rgba(233, 69, 96, 0.2);
            color: #f5a623;
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 5px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb {
            background: #eef2f7;
            padding: 0.7rem 0;
            font-size: 0.9rem;
            border-bottom: 1px solid #dce3ed;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #888;
        }
        .breadcrumb a {
            color: #2a6f97;
        }
        .breadcrumb .current {
            color: #555;
            font-weight: 500;
        }
        .hero-image {
            margin: 1.8rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            background: linear-gradient(135deg, #0f3460, #1a1a2e);
        }
        .hero-image img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
        }
        .section-card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 2.2rem;
            margin: 2rem 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            transition: box-shadow 0.3s;
        }
        .section-card:hover {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
        }
        .table-wrap {
            overflow-x: auto;
            margin: 1.2rem 0;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th,
        td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        th {
            background: #0f3460;
            color: #fff;
            font-weight: 600;
        }
        tr:nth-child(even) {
            background: #f8fafc;
        }
        tr:hover {
            background: #edf2f7;
        }
        .form-group {
            margin: 1.2rem 0;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #0f3460;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #dce3ed;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.25s;
            background: #fafcff;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: #e94560;
            outline: none;
            box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn {
            display: inline-block;
            padding: 0.7rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s, transform 0.15s;
            color: #fff;
            background: linear-gradient(135deg, #e94560, #c23152);
        }
        .btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #c23152, #a01a3a);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-secondary {
            background: #2a6f97;
        }
        .btn-secondary:hover {
            background: #1a4f6f;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
            font-size: 1.8rem;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #ddd;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5a623;
        }
        .comment-item {
            padding: 1rem 0;
            border-bottom: 1px solid #eef2f7;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #0f3460;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #888;
            margin-left: 0.5rem;
        }
        .comment-text {
            margin: 0.3rem 0 0 0;
        }
        friend-link {
            display: block;
            padding: 0.5rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 1rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            background: #eef2f7;
            color: #2a6f97;
            font-size: 0.9rem;
            transition: background 0.2s, color 0.2s;
        }
        friend-link a:hover {
            background: #e94560;
            color: #fff;
            text-decoration: none;
        }
        .site-footer {
            background: #0f3460;
            color: #dce3ed;
            padding: 2rem 0 1.2rem;
            margin-top: auto;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #f5a623;
        }
        .site-footer a:hover {
            color: #e94560;
        }
        .footer-copy {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
            margin-top: 1.2rem;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 52, 96, 0.98);
                padding: 1rem 0.5rem;
                border-radius: 12px;
                margin-top: 0.5rem;
                gap: 0.1rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 1rem;
                border-radius: 8px;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.7rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .section-card {
                padding: 1.2rem 1rem;
            }
            .container {
                padding: 0 14px;
            }
            .hero-image img {
                max-height: 220px;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.2rem;
            }
            .breadcrumb {
                font-size: 0.78rem;
            }
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            table {
                font-size: 0.8rem;
            }
            th,
            td {
                padding: 0.4rem 0.5rem;
            }
        }
        .text-muted {
            color: #666;
        }
        .text-small {
            font-size: 0.85rem;
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .badge {
            display: inline-block;
            padding: 0.15rem 0.7rem;
            border-radius: 20px;
            background: #e94560;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .badge-gold {
            background: #f5a623;
        }
        .highlight {
            background: #fff8e1;
            padding: 0.1rem 0.3rem;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.8rem;
            line-height: 1;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .fade-in {
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
