        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0d0f14;
            color: #e8e9ed;
            line-height: 1.7;
            padding: 0;
            margin: 0;
        }
        a {
            color: #f5b642;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffd966;
            transform: translateY(-1px);
        }
        a:focus-visible {
            outline: 2px solid #f5b642;
            outline-offset: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #ffffff;
            margin-top: 0;
        }
        h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            margin-bottom: 1.2rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: clamp(1.5rem, 3.5vw, 2.4rem);
            margin: 2.8rem 0 1rem 0;
            border-bottom: 2px solid rgba(245, 182, 66, 0.3);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: clamp(1.2rem, 2.5vw, 1.7rem);
            margin: 2rem 0 0.8rem 0;
            color: #f5d89a;
        }
        h4 {
            font-size: clamp(1rem, 2vw, 1.3rem);
            margin: 1.5rem 0 0.5rem 0;
            color: #d4c5a0;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            color: #d5d7de;
        }
        ul,
        ol {
            margin: 0.8rem 0 1.5rem 1.8rem;
            color: #d5d7de;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong,
        b {
            color: #ffffff;
            font-weight: 700;
        }
        em {
            color: #f5d89a;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: #161a22;
            border-bottom: 2px solid #2a2f3a;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem 1.2rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5b642, #f7d06a, #f5b642);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-shadow: 0 0 30px rgba(245, 182, 66, 0.15);
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo small {
            font-size: 0.5em;
            -webkit-text-fill-color: #8899aa;
            background: none;
            display: block;
            font-weight: 400;
            letter-spacing: 0.2em;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #f5b642;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.3rem 0.6rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: rgba(245, 182, 66, 0.1);
        }
        .nav-menu {
            display: flex;
            gap: 0.2rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #c8ccd4;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: rgba(245, 182, 66, 0.12);
            color: #f5b642;
        }
        .nav-menu a.active {
            color: #f5b642;
            background: rgba(245, 182, 66, 0.08);
        }
        .breadcrumb {
            background: #1a1e28;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            color: #8899aa;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        .breadcrumb a {
            color: #8899aa;
        }
        .breadcrumb a:hover {
            color: #f5b642;
        }
        .breadcrumb span {
            margin: 0 0.4rem;
        }
        .hero {
            background: linear-gradient(145deg, #0d1117 0%, #1a1e2a 100%);
            padding: 3rem 1.2rem 2.5rem;
            text-align: center;
            border-bottom: 1px solid #2a2f3a;
        }
        .hero h1 {
            margin-bottom: 0.5rem;
        }
        .hero p {
            max-width: 780px;
            margin: 0.5rem auto 1.5rem;
            font-size: 1.15rem;
            color: #b0b8c5;
        }
        .hero .last-updated {
            display: inline-block;
            background: rgba(245, 182, 66, 0.12);
            padding: 0.3rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #f5b642;
        }
        .search-section {
            background: #161a22;
            padding: 1.5rem 1.2rem;
            border-radius: 16px;
            margin: 1.5rem 0;
        }
        .search-form {
            display: flex;
            gap: 0.8rem;
            max-width: 640px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #2a2f3a;
            background: #0d1117;
            color: #e8e9ed;
            font-size: 1rem;
            transition: border 0.2s;
            min-width: 180px;
        }
        .search-form input:focus {
            border-color: #f5b642;
            outline: none;
        }
        .search-form button {
            padding: 0.8rem 1.8rem;
            background: #f5b642;
            color: #0d1117;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media(min-width:900px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #161a22;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid #2a2f3a;
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        .sidebar h3 {
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #2a2f3a;
            padding-bottom: 0.6rem;
        }
        .sidebar ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar li {
            margin-bottom: 0.4rem;
        }
        .sidebar a {
            display: block;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: background 0.2s;
        }
        .sidebar a:hover {
            background: rgba(245, 182, 66, 0.08);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            background: #1a1e28;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.85rem;
            color: #8899aa;
            background: #1a1e28;
        }
        .interaction-section {
            background: #161a22;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2f3a;
        }
        .interaction-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 600px;
        }
        .comment-form input,
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #2a2f3a;
            background: #0d1117;
            color: #e8e9ed;
            font-size: 1rem;
            transition: border 0.2s;
            font-family: inherit;
        }
        .comment-form input:focus,
        .comment-form textarea:focus,
        .rating-form input:focus,
        .rating-form select:focus {
            border-color: #f5b642;
            outline: none;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.7rem 2rem;
            background: #f5b642;
            color: #0d1117;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #ffd966;
            transform: translateY(-2px);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #3a3f4a;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f5b642;
            transform: scale(1.1);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            background: #161a22;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2f3a;
        }
        .data-table th {
            background: #1e232f;
            color: #f5b642;
            font-weight: 600;
            padding: 0.9rem 1.2rem;
            text-align: left;
            font-size: 0.9rem;
        }
        .data-table td {
            padding: 0.8rem 1.2rem;
            border-top: 1px solid #2a2f3a;
            color: #c8ccd4;
        }
        .data-table tr:hover td {
            background: rgba(245, 182, 66, 0.04);
        }
        footer {
            background: #0d1117;
            border-top: 2px solid #2a2f3a;
            padding: 2.5rem 1.2rem 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        @media(min-width:700px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr;
            }
        }
        .footer-copy {
            color: #6a7a8a;
            font-size: 0.85rem;
            line-height: 1.6;
        }
        .footer-copy p {
            color: #6a7a8a;
            font-size: 0.85rem;
            margin-bottom: 0.3rem;
        }
        friend-link {
            display: block;
            background: #161a22;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #2a2f3a;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.8rem 0.3rem 0;
            font-size: 0.9rem;
            color: #8899aa;
        }
        friend-link a:hover {
            color: #f5b642;
        }
        friend-link::before {
            content: "🤝 Friends & Partners";
            display: block;
            font-weight: 600;
            color: #f5b642;
            margin-bottom: 0.6rem;
            font-size: 1rem;
        }
        @media(max-width:768px) {
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.1rem;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 0.7rem 1rem;
                width: 100%;
                border-radius: 8px;
            }
            .header-inner {
                padding: 0.6rem 1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .sidebar {
                position: static;
            }
            .data-table {
                font-size: 0.85rem;
            }
            .data-table th,
            .data-table td {
                padding: 0.6rem 0.8rem;
            }
            .hero {
                padding: 2rem 1rem 1.8rem;
            }
            .interaction-section {
                padding: 1.5rem 1rem;
            }
            .rating-stars {
                font-size: 1.3rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 1rem;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
        @media(max-width:480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.45em;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            p {
                font-size: 0.95rem;
            }
            .container {
                padding: 0 0.8rem;
            }
            .featured-image {
                margin: 1.2rem 0;
                border-radius: 12px;
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .card-hover {
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(245, 182, 66, 0.06);
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d1117;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f3a;
            border-radius: 12px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4050;
        }
        @media print {
            header,
            .search-section,
            .sidebar,
            .interaction-section,
            footer {
                display: none;
            }
            body {
                background: #fff;
                color: #000;
            }
            h1,
            h2,
            h3,
            h4,
            strong {
                color: #000;
            }
            a {
                color: #000;
                text-decoration: underline;
            }
        }
