        *,
        *::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: #0f0c1b;
            background-image: radial-gradient(ellipse at 20% 50%, #1a1533 0%, #0f0c1b 70%);
            color: #e8e4f0;
            line-height: 1.7;
            min-height: 100vh;
            padding: 0 16px;
        }
        a {
            color: #c8a8ff;
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover,
        a:focus {
            color: #e6c8ff;
            text-shadow: 0 0 8px rgba(200, 168, 255, 0.4);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            padding: 24px 0 12px;
            border-bottom: 1px solid rgba(200, 168, 255, 0.15);
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5e6d3, #c8a8ff, #7f6bb0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: transform 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo i {
            -webkit-text-fill-color: #c8a8ff;
            font-size: 2rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e8e4f0;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.3s;
            z-index: 20;
        }
        .nav-toggle:hover {
            background: rgba(200, 168, 255, 0.15);
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 20px;
            transition: all 0.4s ease;
        }
        .main-nav a {
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        .main-nav a:hover {
            border-bottom-color: #c8a8ff;
        }
        .main-nav .active {
            border-bottom-color: #c8a8ff;
            color: #fff;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
            font-size: 0.85rem;
            padding: 10px 0 20px;
            color: #a89cc0;
            list-style: none;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 12px;
            color: #6a5f85;
        }
        .breadcrumb a {
            color: #b8a8d0;
        }
        .breadcrumb a:hover {
            color: #fff;
        }
        .breadcrumb .current {
            color: #e0d0f0;
            font-weight: 500;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #f5e6d3, #c8a8ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 18px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(200, 168, 255, 0.2);
            color: #f0e8ff;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 32px 0 14px;
            color: #e0d0f5;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 24px 0 10px;
            color: #d0c0e8;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #d8d0e5;
        }
        .lead {
            font-size: 1.2rem;
            font-weight: 400;
            color: #e8dff5;
            border-left: 4px solid #c8a8ff;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        strong,
        b {
            color: #f0e8ff;
            font-weight: 700;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(200, 168, 255, 0.15), rgba(127, 107, 176, 0.15));
            padding: 0 6px;
            border-radius: 4px;
        }
        .hero-img-wrapper {
            margin: 28px 0 36px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(200, 168, 255, 0.08);
            position: relative;
        }
        .hero-img-wrapper img {
            width: 100%;
            object-fit: cover;
            min-height: 280px;
            max-height: 500px;
            transition: transform 0.6s ease;
        }
        .hero-img-wrapper:hover img {
            transform: scale(1.02);
        }
        .hero-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(15, 12, 27, 0.92));
            padding: 40px 24px 20px;
            color: #f0e8ff;
            font-size: 0.95rem;
            font-weight: 400;
        }
        .hero-caption span {
            display: inline-block;
            background: rgba(200, 168, 255, 0.2);
            backdrop-filter: blur(6px);
            padding: 4px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        .info-card {
            background: linear-gradient(145deg, rgba(30, 24, 55, 0.8), rgba(20, 16, 40, 0.9));
            border: 1px solid rgba(200, 168, 255, 0.12);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 28px;
            transition: border-color 0.4s, box-shadow 0.4s;
            backdrop-filter: blur(4px);
        }
        .info-card:hover {
            border-color: rgba(200, 168, 255, 0.35);
            box-shadow: 0 8px 30px rgba(200, 168, 255, 0.06);
        }
        .info-card h3 {
            margin-top: 0;
        }
        .info-card .card-icon {
            font-size: 2.2rem;
            color: #c8a8ff;
            margin-bottom: 10px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .flex-center {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }
        .form-card {
            background: rgba(25, 20, 48, 0.7);
            border: 1px solid rgba(200, 168, 255, 0.15);
            border-radius: 16px;
            padding: 28px 24px;
            margin-bottom: 28px;
            backdrop-filter: blur(6px);
        }
        .form-card label {
            display: block;
            font-weight: 500;
            margin-bottom: 6px;
            color: #d0c8e0;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 10px;
            border: 1px solid rgba(200, 168, 255, 0.2);
            background: rgba(15, 12, 27, 0.7);
            color: #f0e8ff;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
            margin-bottom: 16px;
            font-family: inherit;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #c8a8ff;
            box-shadow: 0 0 0 3px rgba(200, 168, 255, 0.15);
        }
        .form-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .form-card .btn {
            background: linear-gradient(135deg, #6a4e9e, #8a6ec8);
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .form-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(138, 110, 200, 0.35);
        }
        .form-card .btn:active {
            transform: translateY(0);
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin-bottom: 16px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #4a3f60;
            cursor: pointer;
            transition: color 0.3s, transform 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
            transform: scale(1.1);
        }
        footer {
            margin-top: 60px;
            padding: 40px 0 28px;
            border-top: 1px solid rgba(200, 168, 255, 0.1);
        }
        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        footer .footer-col {
            flex: 1 1 200px;
        }
        footer h4 {
            color: #e0d0f0;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }
        footer a {
            display: block;
            padding: 4px 0;
            font-size: 0.95rem;
            color: #b0a0c8;
        }
        footer a:hover {
            color: #e6c8ff;
        }
        friend-link {
            display: block;
            padding: 16px 20px;
            background: rgba(25, 20, 48, 0.5);
            border-radius: 12px;
            border: 1px solid rgba(200, 168, 255, 0.08);
            margin: 12px 0 20px;
            font-size: 0.95rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 16px 4px 0;
            padding: 4px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 24px;
            font-size: 0.88rem;
            color: #7a6f90;
            border-top: 1px solid rgba(200, 168, 255, 0.06);
            margin-top: 20px;
        }
        .copyright strong {
            color: #b0a0c8;
        }
        .last-updated {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #a89cc0;
            background: rgba(200, 168, 255, 0.06);
            padding: 6px 16px;
            border-radius: 30px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0 8px;
                gap: 6px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                width: 100%;
                padding: 10px 12px;
                border-bottom: none;
                border-radius: 8px;
            }
            .main-nav a:hover {
                background: rgba(200, 168, 255, 0.08);
                border-bottom: none;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hero-img-wrapper img {
                min-height: 200px;
            }
            .form-card {
                padding: 20px 16px;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .my-logo i {
                font-size: 1.5rem;
            }
            footer .footer-inner {
                flex-direction: column;
                gap: 16px;
            }
        }
        @media (max-width: 480px) {
            body {
                padding: 0 12px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .star-rating label {
                font-size: 1.6rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0c1b;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a2f55;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #5a4a7a;
        }
        .emoji-big {
            font-size: 1.6rem;
            line-height: 1;
        }
        .pill-tag {
            display: inline-block;
            background: rgba(200, 168, 255, 0.12);
            padding: 2px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #c8b0e0;
            margin-right: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
        }
        table th,
        table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid rgba(200, 168, 255, 0.1);
        }
        table th {
            background: rgba(200, 168, 255, 0.08);
            font-weight: 600;
            color: #e0d0f0;
        }
        table tr:hover td {
            background: rgba(200, 168, 255, 0.04);
        }
        .quote-block {
            border-left: 4px solid #c8a8ff;
            padding: 16px 24px;
            margin: 24px 0;
            background: rgba(200, 168, 255, 0.05);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #d8cce8;
        }
        .quote-block cite {
            display: block;
            margin-top: 10px;
            font-style: normal;
            font-weight: 500;
            color: #b8a0d0;
            font-size: 0.9rem;
        }
        .btn-small {
            background: rgba(200, 168, 255, 0.12);
            border: 1px solid rgba(200, 168, 255, 0.2);
            color: #e0d0f0;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-small:hover {
            background: rgba(200, 168, 255, 0.22);
            border-color: #c8a8ff;
        }
