* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
            background: #0b0e1a;
            color: #e8edf5;
            line-height: 1.7;
            font-size: 16px;
            scroll-behavior: smooth;
        }
        a {
            color: #7ec8e3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #b5e6ff;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(145deg, #111627, #1a1f33);
            border-bottom: 2px solid #2a3150;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f5d77b, #e8b84b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 215, 123, 0.15);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .my-logo i {
            -webkit-text-fill-color: initial;
            color: #f5d77b;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #3e4768;
            color: #e8edf5;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            border-color: #7ec8e3;
            color: #7ec8e3;
        }
        nav {
            display: flex;
            gap: 8px 20px;
            flex-wrap: wrap;
            align-items: center;
        }
        nav a {
            color: #c8cee6;
            font-weight: 500;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            font-size: 0.95rem;
        }
        nav a:hover {
            color: #f5d77b;
            border-bottom-color: #f5d77b;
            text-decoration: none;
        }
        .breadcrumb {
            background: #141a2b;
            padding: 10px 0;
            border-bottom: 1px solid #1e2540;
            font-size: 0.85rem;
            color: #8892b0;
        }
        .breadcrumb .container {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }
        .breadcrumb a {
            color: #7ec8e3;
        }
        .breadcrumb span {
            color: #5a6485;
        }
        main {
            padding: 30px 0 50px;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5d77b, #e6b84b, #f5d77b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.4rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            color: #f0e6c5;
            margin: 2.2rem 0 0.8rem;
            border-bottom: 2px solid #2a3150;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #d4d9f0;
            margin: 1.8rem 0 0.6rem;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #bcc3e0;
            margin: 1.2rem 0 0.4rem;
        }
        p {
            margin-bottom: 1rem;
            color: #d0d6ec;
        }
        .lead {
            font-size: 1.15rem;
            color: #e8edf5;
            font-weight: 400;
            border-left: 4px solid #f5d77b;
            padding-left: 18px;
            margin-bottom: 1.5rem;
        }
        .hero-img {
            width: 100%;
            max-height: 420px;
            object-fit: cover;
            border-radius: 16px;
            margin: 20px 0 28px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            border: 1px solid #2a3150;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(245, 215, 123, 0.12), rgba(245, 215, 123, 0.04));
            padding: 0 8px;
            font-weight: 600;
            color: #f5d77b;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }
        .card {
            background: #141a2b;
            border: 1px solid #1e2540;
            border-radius: 16px;
            padding: 24px 20px;
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
            border-color: #3e4768;
        }
        .card i {
            font-size: 2rem;
            color: #f5d77b;
            margin-bottom: 12px;
        }
        .card h3 {
            margin-top: 0;
            font-size: 1.25rem;
        }
        .card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #2a3150, #1e2540);
            color: #e8edf5;
            padding: 10px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid #3e4768;
            transition: 0.25s;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: linear-gradient(135deg, #3e4768, #2a3150);
            border-color: #f5d77b;
            color: #f5d77b;
            text-decoration: none;
            transform: scale(1.02);
        }
        .btn-primary {
            background: linear-gradient(135deg, #f5d77b, #dbaa3a);
            color: #0b0e1a;
            border-color: #f5d77b;
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, #ffe28a, #e8b84b);
            color: #0b0e1a;
            border-color: #fff0c0;
        }
        .search-section {
            background: #111627;
            border: 1px solid #1e2540;
            border-radius: 16px;
            padding: 28px 30px;
            margin: 32px 0;
        }
        .search-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .search-form input {
            flex: 1;
            min-width: 180px;
            padding: 14px 20px;
            border-radius: 30px;
            border: 1px solid #2a3150;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 1rem;
            outline: none;
            transition: 0.2s;
        }
        .search-form input:focus {
            border-color: #f5d77b;
            box-shadow: 0 0 0 3px rgba(245, 215, 123, 0.15);
        }
        .search-form button {
            padding: 14px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5d77b, #dbaa3a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(245, 215, 123, 0.25);
        }
        .feedback-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 40px 0;
        }
        @media (max-width:700px) {
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .comment-box,
        .rating-box {
            background: #111627;
            border: 1px solid #1e2540;
            border-radius: 16px;
            padding: 28px 24px;
        }
        .comment-box h2,
        .rating-box h2 {
            margin-top: 0;
            border-bottom: none;
            font-size: 1.5rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px;
            border-radius: 12px;
            border: 1px solid #2a3150;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            font-family: inherit;
            transition: 0.2s;
        }
        .comment-box textarea:focus {
            border-color: #f5d77b;
            box-shadow: 0 0 0 3px rgba(245, 215, 123, 0.1);
        }
        .comment-box input,
        .rating-box input {
            width: 100%;
            padding: 12px 16px;
            border-radius: 30px;
            border: 1px solid #2a3150;
            background: #0b0e1a;
            color: #e8edf5;
            font-size: 0.95rem;
            outline: none;
            margin: 8px 0 12px;
            transition: 0.2s;
        }
        .comment-box input:focus,
        .rating-box input:focus {
            border-color: #f5d77b;
        }
        .comment-box button,
        .rating-box button {
            padding: 12px 28px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f5d77b, #dbaa3a);
            color: #0b0e1a;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .comment-box button:hover,
        .rating-box button:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 20px rgba(245, 215, 123, 0.2);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 1.8rem;
            color: #3e4768;
            cursor: pointer;
            margin: 8px 0 16px;
        }
        .star-rating i {
            transition: 0.15s;
        }
        .star-rating i.active,
        .star-rating i:hover {
            color: #f5d77b;
            transform: scale(1.1);
        }
        .meta-line {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            color: #8892b0;
            font-size: 0.9rem;
            padding: 12px 0;
            border-top: 1px solid #1e2540;
            border-bottom: 1px solid #1e2540;
            margin: 20px 0;
        }
        .meta-line i {
            margin-right: 6px;
            color: #f5d77b;
        }
        footer {
            background: #0b0e1a;
            border-top: 2px solid #1e2540;
            padding: 40px 0 30px;
            margin-top: 40px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col {
            flex: 1;
            min-width: 160px;
        }
        .footer-col h4 {
            color: #f0e6c5;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-col a {
            display: block;
            padding: 4px 0;
            color: #8892b0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #f5d77b;
        }
        friend-link {
            display: block;
            padding: 16px 0 8px;
            border-top: 1px solid #1e2540;
            margin-top: 24px;
            font-size: 0.9rem;
            color: #5a6485;
        }
        friend-link a {
            color: #7ec8e3;
            margin: 0 6px;
        }
        friend-link a:hover {
            color: #f5d77b;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            color: #3e4768;
            font-size: 0.85rem;
            border-top: 1px solid #141a2b;
            margin-top: 20px;
        }
        .copyright a {
            color: #5a6485;
        }
        @media (max-width: 820px) {
            .nav-toggle {
                display: inline-block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                padding-top: 16px;
                gap: 6px;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 10px 0;
                border-bottom: 1px solid #1e2540;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .header-inner {
                gap: 10px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .search-form input,
            .search-form button {
                width: 100%;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .hero-img {
                max-height: 220px;
            }
            .feedback-section {
                grid-template-columns: 1fr;
            }
        }
        .text-glow {
            text-shadow: 0 0 40px rgba(245, 215, 123, 0.08);
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
        }
        .gap-2 {
            gap: 20px;
        }
        .list-styled {
            padding-left: 24px;
            color: #c8cee6;
            margin-bottom: 1rem;
        }
        .list-styled li {
            margin-bottom: 6px;
        }
        .badge {
            display: inline-block;
            background: #2a3150;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #bcc3e0;
            border: 1px solid #3e4768;
        }
        .quote {
            border-left: 4px solid #f5d77b;
            padding: 12px 20px;
            background: #0f1322;
            border-radius: 0 12px 12px 0;
            margin: 16px 0;
            font-style: italic;
            color: #d0d6ec;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: #111627;
            border-radius: 12px;
            overflow: hidden;
            font-size: 0.9rem;
        }
        th {
            background: #1e2540;
            color: #f0e6c5;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-top: 1px solid #1a2138;
            color: #c8cee6;
        }
        tr:hover td {
            background: #141a2b;
        }
