* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0b0e1a;
            --bg-card: #13182b;
            --bg-card-hover: #1a2140;
            --gold: #f0b90b;
            --gold-light: #fcdb5e;
            --gold-dark: #c9950a;
            --text-primary: #f0f4ff;
            --text-secondary: #b0bcdd;
            --text-muted: #6b7a9f;
            --accent-blue: #3b82f6;
            --accent-purple: #8b5cf6;
            --border-color: #1e2a4a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            --radius: 12px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
            --font-heading: 'Segoe UI', 'Poppins', system-ui, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius);
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #0b0e1a 0%, #111833 100%);
            border-bottom: 2px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(240, 185, 11, 0.15);
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none !important;
        }
        .my-logo:hover {
            -webkit-text-fill-color: transparent;
            text-decoration: none !important;
        }
        .my-logo i {
            font-size: 1.6rem;
            -webkit-text-fill-color: var(--gold);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            font-size: 1.5rem;
            padding: 8px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: var(--bg-card);
            border-color: var(--gold);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--gold);
            background: rgba(240, 185, 11, 0.08);
            text-decoration: none;
        }
        .nav-menu a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap {
            background: rgba(11, 14, 26, 0.8);
            border-bottom: 1px solid var(--border-color);
            padding: 10px 0;
            font-size: 0.85rem;
        }
        .breadcrumb-wrap nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb-wrap nav a {
            color: var(--text-muted);
        }
        .breadcrumb-wrap nav a:hover {
            color: var(--gold);
        }
        .breadcrumb-wrap nav span {
            color: var(--text-secondary);
        }
        .breadcrumb-wrap nav .sep {
            color: var(--text-muted);
            font-size: 0.7rem;
        }
        .hero {
            padding: 50px 0 40px;
            background: radial-gradient(ellipse at 20% 50%, rgba(240, 185, 11, 0.06) 0%, transparent 70%);
            text-align: center;
        }
        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--gold), #fff8e0, var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .badge-wrap {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .hero .badge {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 30px;
            padding: 6px 18px;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        .hero .badge i {
            color: var(--gold);
            margin-right: 6px;
        }
        .hero .updated {
            margin-top: 14px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .hero .updated i {
            margin-right: 6px;
        }
        section {
            padding: 40px 0;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .section-title i {
            font-size: 1.4rem;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 800px;
        }
        h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.4rem, 2.8vw, 1.9rem);
            font-weight: 700;
            color: var(--gold);
            margin: 36px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
        }
        h2:first-of-type {
            margin-top: 0;
        }
        h3 {
            font-family: var(--font-heading);
            font-size: clamp(1.15rem, 2vw, 1.45rem);
            font-weight: 600;
            color: var(--gold-light);
            margin: 28px 0 12px;
        }
        h4 {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 20px 0 10px;
            padding-left: 12px;
            border-left: 3px solid var(--gold);
        }
        p {
            margin-bottom: 16px;
            color: var(--text-secondary);
            font-size: 1rem;
        }
        .highlight-box {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--gold);
            border-radius: var(--radius);
            padding: 20px 24px;
            margin: 24px 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .highlight-box strong {
            color: var(--gold-light);
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 24px 0;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
            transition: var(--transition);
        }
        .card:hover {
            background: var(--bg-card-hover);
            border-color: rgba(240, 185, 11, 0.2);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }
        .card h4 {
            border-left-color: var(--gold);
            margin-top: 0;
        }
        .card p {
            font-size: 0.95rem;
        }
        .card .icon-lg {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .inline-link {
            color: var(--gold);
            font-weight: 500;
            padding: 0 2px;
        }
        .inline-link:hover {
            color: #fff;
            background: rgba(240, 185, 11, 0.15);
            border-radius: 4px;
            text-decoration: none;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 12px 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-style: italic;
            background: var(--bg-card);
            border-top: 1px solid var(--border-color);
        }
        .search-section {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 32px;
            margin: 32px 0;
        }
        .search-section form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .search-section input[type="text"] {
            flex: 1;
            min-width: 200px;
            padding: 14px 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
        }
        .search-section input[type="text"]:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.1);
        }
        .search-section button {
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #0b0e1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-section button:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(240, 185, 11, 0.3);
        }
        .feedback-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            margin: 32px 0;
        }
        .feedback-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 28px;
        }
        .feedback-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
        }
        .feedback-card label {
            display: block;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 6px;
            font-weight: 500;
        }
        .feedback-card input,
        .feedback-card textarea,
        .feedback-card select {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background: var(--bg-dark);
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
            font-family: var(--font-body);
            margin-bottom: 16px;
        }
        .feedback-card input:focus,
        .feedback-card textarea:focus,
        .feedback-card select:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.08);
        }
        .feedback-card textarea {
            min-height: 100px;
            resize: vertical;
        }
        .feedback-card .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            margin-bottom: 16px;
        }
        .feedback-card .star-rating input {
            display: none;
        }
        .feedback-card .star-rating label {
            font-size: 1.6rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
            padding: 2px;
        }
        .feedback-card .star-rating label:hover,
        .feedback-card .star-rating label:hover~label,
        .feedback-card .star-rating input:checked~label {
            color: var(--gold);
        }
        .feedback-card .btn-submit {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: #0b0e1a;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feedback-card .btn-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(240, 185, 11, 0.25);
        }
        .site-footer {
            background: linear-gradient(135deg, #070a14 0%, #0d1225 100%);
            border-top: 2px solid var(--border-color);
            padding: 40px 0 24px;
            margin-top: 40px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }
        .footer-inner h4 {
            color: var(--gold);
            border-left: none;
            padding-left: 0;
            margin-top: 0;
            font-size: 1.1rem;
        }
        .footer-inner p,
        .footer-inner a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .footer-inner a:hover {
            color: var(--gold);
        }
        .footer-inner .social-links {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }
        .footer-inner .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .footer-inner .social-links a:hover {
            background: var(--gold);
            color: #0b0e1a;
            border-color: var(--gold);
        }
        friend-link {
            display: block;
            padding: 20px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 20px;
        }
        friend-link .fl-title {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        friend-link .fl-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        friend-link .fl-list a {
            font-size: 0.9rem;
            color: var(--text-secondary);
            padding: 4px 0;
        }
        friend-link .fl-list a:hover {
            color: var(--gold);
        }
        .copyright {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }
        .copyright strong {
            color: var(--text-secondary);
        }
        @media (max-width: 992px) {
            .grid-3 {
                grid-template-columns: 1fr 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--bg-card);
                border: 1px solid var(--border-color);
                border-radius: var(--radius);
                padding: 12px;
                margin-top: 8px;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                width: 100%;
                padding: 10px 14px;
                border-radius: 6px;
            }
            .header-inner {
                padding: 10px 0;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .feedback-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .search-section form {
                flex-direction: column;
            }
            .search-section input[type="text"] {
                min-width: auto;
            }
            .search-section button {
                width: 100%;
                justify-content: center;
            }
            .feedback-card .btn-submit {
                width: 100%;
                justify-content: center;
            }
            section {
                padding: 24px 0;
            }
            .breadcrumb-wrap {
                font-size: 0.75rem;
                padding: 8px 0;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero {
                padding: 30px 0 24px;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .card {
                padding: 16px;
            }
            .feedback-card {
                padding: 20px;
            }
            .search-section {
                padding: 20px;
            }
            .highlight-box {
                padding: 16px 18px;
            }
        }
        .mt-0 {
            margin-top: 0 !important;
        }
        .mb-0 {
            margin-bottom: 0 !important;
        }
        .text-gold {
            color: var(--gold);
        }
        .text-muted {
            color: var(--text-muted);
        }
        .fw-700 {
            font-weight: 700;
        }
        .emoji-lg {
            font-size: 1.4rem;
        }
        .list-styled {
            list-style: none;
            padding: 0;
        }
        .list-styled li {
            padding: 6px 0 6px 24px;
            position: relative;
            color: var(--text-secondary);
        }
        .list-styled li::before {
            content: "▸";
            color: var(--gold);
            position: absolute;
            left: 0;
            font-weight: 700;
        }
        .list-styled li strong {
            color: var(--text-primary);
        }
        .divider {
            height: 1px;
            background: var(--border-color);
            margin: 32px 0;
        }
