        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0b0e;
            color: #e8e8ec;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c842;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus-visible {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.25rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        h1 {
            font-size: 2.2rem;
            margin-top: 0.25rem;
        }
        h2 {
            font-size: 1.75rem;
            border-bottom: 2px solid #f5c84230;
            padding-bottom: 0.35rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.35rem;
            margin-top: 1.75rem;
            color: #f0e6d0;
        }
        h4 {
            font-size: 1.1rem;
            margin-top: 1.25rem;
            color: #d4cfc6;
        }
        p {
            margin-bottom: 1rem;
        }
        strong,
        b {
            color: #ffffff;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(135deg, #12121a 0%, #1a1a2e 100%);
            border-bottom: 2px solid #f5c84230;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            display: flex;
            flex-direction: column;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #f5c842;
            text-transform: uppercase;
            line-height: 1.1;
            transition: transform 0.2s ease;
        }
        .my-logo:hover {
            transform: scale(1.02);
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.55rem;
            font-weight: 400;
            color: #a8a8b8;
            letter-spacing: 2px;
            text-transform: lowercase;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f5c84260;
            color: #f5c842;
            font-size: 1.6rem;
            padding: 0.4rem 0.75rem;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #f5c84220;
        }
        .primary-nav {
            display: flex;
            gap: 0.5rem 1.25rem;
            flex-wrap: wrap;
            align-items: center;
        }
        .primary-nav a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s, color 0.2s;
        }
        .primary-nav a:hover {
            border-bottom-color: #f5c842;
            text-decoration: none;
        }
        .breadcrumb {
            background: #181822;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2a3a;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            gap: 0.4rem 0.6rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            margin-right: 0.6rem;
            color: #8888a0;
        }
        .breadcrumb a {
            color: #b0b0c8;
        }
        .breadcrumb a:hover {
            color: #f5c842;
        }
        .breadcrumb .current {
            color: #f5c842;
            font-weight: 500;
        }
        .hero {
            padding: 2.5rem 0 1.5rem;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1a1a30 0%, #0b0b0e 70%);
        }
        .hero h1 {
            font-size: 2.6rem;
            letter-spacing: 2px;
            text-shadow: 0 0 40px #f5c84220;
        }
        .hero .subhead {
            font-size: 1.1rem;
            color: #c8c8d8;
            max-width: 700px;
            margin: 0.75rem auto 0;
        }
        .hero .update-badge {
            display: inline-block;
            margin-top: 1rem;
            background: #f5c84218;
            border: 1px solid #f5c84240;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f5c842;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2rem 0 3rem;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .form-card {
            background: #16161f;
            border: 1px solid #2a2a3e;
            border-radius: 14px;
            padding: 1.5rem 1.25rem;
            margin-bottom: 1.5rem;
            transition: box-shadow 0.3s;
        }
        .form-card:hover {
            box-shadow: 0 8px 30px #00000060;
        }
        .form-card h3 {
            margin-top: 0;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-card label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0.75rem 0 0.25rem;
            color: #d0d0e0;
        }
        .form-card input,
        .form-card textarea,
        .form-card select {
            width: 100%;
            padding: 0.6rem 0.8rem;
            border: 1px solid #33334a;
            border-radius: 8px;
            background: #0e0e16;
            color: #f0f0f8;
            font-size: 0.95rem;
            transition: border 0.2s;
        }
        .form-card input:focus,
        .form-card textarea:focus,
        .form-card select:focus {
            outline: none;
            border-color: #f5c842;
            box-shadow: 0 0 0 3px #f5c84220;
        }
        .form-card textarea {
            min-height: 80px;
            resize: vertical;
        }
        .form-card .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f5c842;
            color: #0b0b0e;
            font-weight: 600;
            padding: 0.6rem 1.5rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: background 0.25s, transform 0.15s;
            margin-top: 0.75rem;
        }
        .form-card .btn:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .form-card .btn-secondary {
            background: #2a2a3e;
            color: #e8e8ec;
        }
        .form-card .btn-secondary:hover {
            background: #3a3a52;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.15rem;
            font-size: 1.6rem;
            margin: 0.25rem 0 0.5rem;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #44445a;
            transition: color 0.2s;
            font-size: 1.6rem;
            margin: 0;
            padding: 0 0.1rem;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f5c842;
        }
        .widget {
            background: #16161f;
            border: 1px solid #2a2a3e;
            border-radius: 14px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
        }
        .widget h4 {
            margin-top: 0;
            font-size: 1.05rem;
            border-bottom: 1px solid #2a2a3e;
            padding-bottom: 0.5rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin-top: 0.5rem;
        }
        .widget li {
            padding: 0.35rem 0;
            border-bottom: 1px solid #1f1f2e;
        }
        .widget li:last-child {
            border-bottom: none;
        }
        .widget li a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
        }
        .widget li a::before {
            content: "▸";
            color: #f5c84260;
        }
        .featured-image {
            margin: 1.5rem 0;
            border-radius: 14px;
            overflow: hidden;
            background: #1a1a2a;
            box-shadow: 0 8px 40px #00000060;
        }
        .featured-image img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.75rem 1rem;
            font-size: 0.85rem;
            color: #a8a8c0;
            background: #12121a;
            border-top: 1px solid #2a2a3e;
        }
        .site-footer {
            background: #0d0d14;
            border-top: 2px solid #f5c84220;
            padding: 2rem 0 1.5rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
        }
        .site-footer h4 {
            color: #f5c842;
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }
        .site-footer a {
            font-size: 0.9rem;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
            font-size: 0.9rem;
        }
        .friend-link a {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .friend-link a::before {
            content: "✦";
            font-size: 0.7rem;
            color: #f5c84280;
        }
        .copyright {
            grid-column: 1 / -1;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #1f1f2e;
            font-size: 0.85rem;
            color: #8888a0;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .widget {
                margin-bottom: 0;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding-top: 1rem;
                gap: 0.25rem;
                border-top: 1px solid #2a2a3e;
                margin-top: 0.75rem;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 0.5rem 0;
                font-size: 1.05rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            h3 {
                font-size: 1.15rem;
            }
            .form-card {
                padding: 1rem;
            }
            .breadcrumb ol {
                font-size: 0.75rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.75rem;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            .my-logo small {
                font-size: 0.45rem;
            }
        }
        .text-muted {
            color: #a8a8c0;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex {
            display: flex;
        }
        .flex-wrap {
            flex-wrap: wrap;
        }
        .gap-1 {
            gap: 1rem;
        }
        .align-center {
            align-items: center;
        }
        .icon-fa {
            width: 1.1rem;
            text-align: center;
            color: #f5c842;
        }
        .highlight-box {
            background: #1a1a2a;
            border-left: 4px solid #f5c842;
            padding: 1rem 1.25rem;
            border-radius: 0 12px 12px 0;
            margin: 1.25rem 0;
        }
        .highlight-box p:last-child {
            margin-bottom: 0;
        }
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #f5c842;
            color: #0b0b0e;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
            z-index: 50;
            box-shadow: 0 4px 20px #f5c84240;
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }
        .scroll-top:hover {
            transform: scale(1.08);
        }
