        *,
        *::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: #0b0e1a;
            color: #e8eaf0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #fff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-left: 6px solid #f5c542;
            padding-left: 1rem;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #2a2f4a;
            padding-bottom: 0.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f0d68a;
        }
        h4 {
            font-size: 1.15rem;
            color: #cbd5e1;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0f1326 0%, #1a1f3a 100%);
            border-bottom: 2px solid #2a2f4a;
            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;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #f0a030);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none !important;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 1.6rem;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none !important;
        }
        .my-logo small {
            font-size: 0.5rem;
            -webkit-text-fill-color: #94a3b8;
            font-weight: 400;
            display: block;
            letter-spacing: 0.5px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c542;
            color: #f5c542;
            font-size: 1.5rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c54222;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-menu a {
            color: #cbd5e1;
            padding: 6px 14px;
            border-radius: 8px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: 0.2s;
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            background: #2a2f4a;
            color: #f5c542;
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb {
            padding: 10px 0 4px;
            font-size: 0.85rem;
            color: #94a3b8;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #64748b;
        }
        .hero-banner {
            background: linear-gradient(145deg, #11162e, #1a2048);
            border-radius: 20px;
            padding: 40px 32px;
            margin: 24px 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
            border: 1px solid #2a2f4a;
        }
        .hero-banner-text {
            flex: 1 1 280px;
        }
        .hero-banner-text h1 {
            border-left-color: #f5c542;
            margin-top: 0;
        }
        .hero-banner-text p {
            font-size: 1.1rem;
            color: #cbd5e1;
            max-width: 600px;
        }
        .hero-banner-img {
            flex: 0 0 240px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
        }
        .section-card {
            background: #11162e;
            border: 1px solid #1e2444;
            border-radius: 16px;
            padding: 28px 26px;
            margin-bottom: 28px;
            transition: 0.3s;
        }
        .section-card:hover {
            border-color: #2a2f5a;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 4px;
            color: #f0d68a;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: #0b0e1a;
            border: 1px solid #2a2f4a;
            border-radius: 10px;
            color: #e8eaf0;
            font-size: 1rem;
            transition: 0.2s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 0 3px #f5c54222;
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, #f5c542, #e6a820);
            color: #0b0e1a;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.25s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px #f5c54233;
            color: #0b0e1a;
            text-decoration: none;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f5c542;
            color: #f5c542;
        }
        .btn-outline:hover {
            background: #f5c542;
            color: #0b0e1a;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            gap: 4px;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #3a3f5a;
            cursor: pointer;
            transition: 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c542;
            text-shadow: 0 0 12px #f5c54266;
        }
        .comment-item {
            padding: 16px 0;
            border-bottom: 1px solid #1e2444;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #f0d68a;
        }
        .comment-date {
            font-size: 0.8rem;
            color: #64748b;
            margin-left: 12px;
        }
        .comment-body {
            margin-top: 4px;
            color: #cbd5e1;
        }
        .site-footer {
            margin-top: 48px;
            padding: 32px 0 24px;
            border-top: 2px solid #1e2444;
            background: #0a0d1a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-grid h4 {
            color: #f5c542;
            margin-top: 0;
            font-size: 1rem;
        }
        .footer-grid a {
            display: block;
            padding: 2px 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .footer-grid a:hover {
            color: #f5c542;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1a1f3a;
            font-size: 0.85rem;
            color: #64748b;
        }
        .copyright strong {
            color: #94a3b8;
        }
        friend-link {
            display: block;
            padding: 12px 16px;
            background: #0f1326;
            border-radius: 12px;
            border: 1px solid #1e2444;
            font-size: 0.9rem;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 2px 0;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 12px;
                border-top: 1px solid #1e2444;
                margin-top: 8px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 16px;
                border-radius: 6px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero-banner {
                padding: 24px 18px;
            }
            .hero-banner-img {
                flex-basis: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            .section-card {
                padding: 20px 16px;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.45rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .star-rating label {
                font-size: 1.4rem;
            }
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mt-2 {
            margin-top: 2rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .mb-2 {
            margin-bottom: 2rem;
        }
        .text-accent {
            color: #f5c542;
        }
        .text-muted {
            color: #94a3b8;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .badge {
            display: inline-block;
            background: #f5c54222;
            color: #f5c542;
            padding: 2px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0b0e1a;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f4a;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3f5a;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
