        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #0b0b0b;
            color: #e8e6e3;
            line-height: 1.8;
            padding: 0 1rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover,
        a:focus {
            color: #ffde7a;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.6rem;
        }
        li {
            margin-bottom: 0.4rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0.5rem;
            width: 100%;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.8rem 0 1.2rem;
            color: #f5c542;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 12px rgba(245, 197, 66, 0.15);
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 2.8rem 0 1.2rem;
            color: #f5c542;
            border-bottom: 2px solid rgba(245, 197, 66, 0.25);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 2rem 0 0.8rem;
            color: #f0e6d3;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 1.4rem 0 0.6rem;
            color: #d4c9b8;
        }
        p {
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #cdc6b8;
            margin-bottom: 2rem;
            border-left: 4px solid #f5c542;
            padding-left: 1.2rem;
        }
        .site-header {
            padding: 1rem 0 0.6rem;
            border-bottom: 1px solid rgba(245, 197, 66, 0.15);
            margin-bottom: 1.2rem;
        }
        .header-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f5c542;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #f5c542 0%, #e8a832 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(245, 197, 66, 0.1);
            display: inline-block;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .my-logo small {
            font-size: 0.7rem;
            display: block;
            -webkit-text-fill-color: #a89f8e;
            color: #a89f8e;
            font-weight: 400;
            letter-spacing: 0.02em;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.3rem 1.2rem;
        }
        .main-nav a {
            font-size: 1rem;
            font-weight: 500;
            padding: 0.3rem 0.2rem;
            color: #d4c9b8;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 2px;
            background: #f5c542;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after,
        .main-nav a:focus::after {
            width: 100%;
        }
        .main-nav a:hover {
            text-decoration: none;
            color: #f5c542;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f5c542;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.2rem 0.4rem;
            transition: transform 0.2s;
        }
        .hamburger:hover {
            transform: scale(1.1);
        }
        .nav-toggle {
            display: none;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.6rem 0 0.2rem;
            font-size: 0.9rem;
            color: #9e9484;
            gap: 0.4rem 0.8rem;
        }
        .breadcrumb li+li::before {
            content: '▸';
            margin-right: 0.6rem;
            color: #5a5244;
        }
        .breadcrumb a {
            color: #c4b89e;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb .active {
            color: #f5c542;
            font-weight: 500;
        }
        .search-section {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            margin: 2.4rem 0;
            border: 1px solid rgba(245, 197, 66, 0.08);
        }
        .search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            max-width: 720px;
            margin: 0 auto;
        }
        .search-form input[type="text"] {
            flex: 1 1 240px;
            padding: 0.9rem 1.2rem;
            border-radius: 40px;
            border: 1px solid #3a352c;
            background: #0b0b0b;
            color: #e8e6e3;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input[type="text"]:focus {
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .search-form button {
            padding: 0.9rem 2rem;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0b0b0b;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-form button:hover,
        .search-form button:focus {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem 3rem;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr 320px;
            }
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            background: #141414;
            border-radius: 16px;
            padding: 1.8rem 1.5rem;
            border: 1px solid rgba(245, 197, 66, 0.06);
            align-self: start;
            position: sticky;
            top: 1.5rem;
        }
        .sidebar h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #f5c542;
        }
        .sidebar ul {
            list-style: none;
            padding-left: 0;
        }
        .sidebar li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .sidebar li:last-child {
            border-bottom: none;
        }
        .sidebar a {
            font-size: 0.95rem;
        }
        .rating-area,
        .comment-area {
            background: #1a1a1a;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            margin: 2.4rem 0;
            border: 1px solid rgba(245, 197, 66, 0.08);
        }
        .rating-area h3,
        .comment-area h3 {
            margin-top: 0;
            color: #f5c542;
        }
        .star-group {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 2rem;
            margin: 0.8rem 0 1.2rem;
        }
        .star-group input {
            display: none;
        }
        .star-group label {
            color: #4a4438;
            cursor: pointer;
            transition: color 0.2s, transform 0.15s;
        }
        .star-group label:hover,
        .star-group label:hover~label,
        .star-group input:checked~label {
            color: #f5c542;
        }
        .star-group label:hover {
            transform: scale(1.12);
        }
        .rating-form textarea,
        .comment-form textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            border: 1px solid #3a352c;
            background: #0b0b0b;
            color: #e8e6e3;
            font-size: 1rem;
            resize: vertical;
            min-height: 100px;
            outline: none;
            transition: border 0.3s;
        }
        .rating-form textarea:focus,
        .comment-form textarea:focus {
            border-color: #f5c542;
        }
        .rating-form button,
        .comment-form button {
            margin-top: 0.8rem;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            border: none;
            background: #f5c542;
            color: #0b0b0b;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s;
        }
        .rating-form button:hover,
        .comment-form button:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            background: rgba(0, 0, 0, 0.6);
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #b8ad9a;
            font-style: italic;
        }
        .site-footer {
            margin-top: 4rem;
            padding: 2rem 0 1.5rem;
            border-top: 1px solid rgba(245, 197, 66, 0.1);
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        friend-link {
            display: block;
            font-style: normal;
            background: #141414;
            border-radius: 12px;
            padding: 1.5rem 1.8rem;
            border: 1px solid rgba(245, 197, 66, 0.06);
            flex: 1 1 280px;
        }
        friend-link::before {
            content: '🔗 Friends & Resources';
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #f5c542;
            margin-bottom: 0.8rem;
        }
        .friend-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.2rem;
            list-style: none;
            padding-left: 0;
        }
        .friend-list li a {
            font-size: 0.95rem;
        }
        .copyright {
            text-align: center;
            padding: 1.2rem 0 0.4rem;
            color: #7a7264;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            margin-top: 1.5rem;
        }
        .copyright strong {
            color: #b8ad9a;
        }
        .last-updated {
            text-align: right;
            font-size: 0.85rem;
            color: #6a6254;
            margin-top: 0.5rem;
        }
        @media (max-width: 767px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .lead {
                font-size: 1.1rem;
            }
            .header-row {
                flex-wrap: wrap;
            }
            .hamburger {
                display: inline-block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                padding: 1rem 0 0.4rem;
                gap: 0.6rem;
            }
            .nav-toggle:checked~.main-nav {
                display: flex;
            }
            .nav-toggle:checked~.hamburger .fa-bars::before {
                content: '\f00d';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
            }
            .sidebar {
                position: static;
                margin-top: 2rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
                justify-content: center;
            }
            .star-group {
                font-size: 1.6rem;
            }
        }
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
            .main-nav {
                display: flex !important;
            }
            body {
                padding: 0 2rem;
            }
        }
        @media (min-width: 1200px) {
            body {
                padding: 0 3rem;
            }
        }
        .highlight-box {
            background: #1e1b16;
            border-left: 4px solid #f5c542;
            padding: 1.2rem 1.5rem;
            border-radius: 0 12px 12px 0;
            margin: 1.6rem 0;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.2rem 0;
        }
        .stat-card {
            background: #1a1a1a;
            padding: 1.2rem 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(245, 197, 66, 0.06);
        }
        .stat-card .num {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c542;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #9e9484;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .quote-block {
            font-style: italic;
            padding: 1.2rem 1.8rem;
            background: #14110e;
            border-radius: 12px;
            margin: 1.6rem 0;
            border: 1px solid rgba(245, 197, 66, 0.1);
            color: #d4c9b8;
        }
        .quote-block cite {
            display: block;
            margin-top: 0.8rem;
            font-style: normal;
            font-weight: 500;
            color: #f5c542;
            font-size: 0.95rem;
        }
        .btn-top {
            display: inline-block;
            margin-top: 0.6rem;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            background: rgba(245, 197, 66, 0.1);
            color: #f5c542;
            font-size: 0.85rem;
            border: 1px solid rgba(245, 197, 66, 0.15);
            transition: background 0.3s;
        }
        .btn-top:hover {
            background: rgba(245, 197, 66, 0.2);
            text-decoration: none;
        }
        .schema-hidden {
            display: none;
        }
