        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: #0f0f0f;
            color: #e0e0e0;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: #d4a574;
            text-decoration: none;
            transition: color 0.25s, opacity 0.25s;
        }
        a:hover,
        a:focus {
            color: #f5cba0;
            outline: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f5f0e8;
            margin-top: 1.8rem;
            margin-bottom: 0.8rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #d4a574;
            padding-bottom: 0.5rem;
            margin-top: 0.5rem;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #d4a574;
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 2rem;
        }
        h4 {
            font-size: 1.25rem;
            margin-top: 1.5rem;
            color: #d4a574;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        :root {
            --bg-dark: #0f0f0f;
            --bg-card: #1a1a1a;
            --bg-card-hover: #252525;
            --accent: #d4a574;
            --accent-hover: #f5cba0;
            --text-main: #e0e0e0;
            --text-light: #b0a898;
            --border-color: #2a2a2a;
            --success: #6aaa6a;
            --warning: #d4a574;
        }
        .site-header {
            background: #141414;
            border-bottom: 2px solid #2a2a2a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.6rem 0;
            backdrop-filter: blur(8px);
            background: rgba(20, 20, 20, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
        }
        .my-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f5f0e8;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .my-logo i {
            color: #d4a574;
            font-size: 1.4rem;
        }
        .my-logo:hover {
            color: #d4a574;
        }
        .my-logo span {
            font-weight: 300;
            color: #b0a898;
            font-size: 0.9rem;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.3rem 0.5rem;
            border-radius: 4px;
            transition: background 0.2s;
        }
        .nav-toggle:hover {
            background: #2a2a2a;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c0b8a8;
            transition: background 0.2s, color 0.2s;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background: #2a2a2a;
            color: #f5f0e8;
        }
        .main-nav a i {
            margin-right: 0.4rem;
            font-size: 0.85rem;
            color: #d4a574;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.8rem;
            padding: 0.8rem 0 0.4rem;
            font-size: 0.85rem;
            color: #b0a898;
            border-bottom: 1px solid #1e1e1e;
            margin-bottom: 1.5rem;
        }
        .breadcrumb a {
            color: #b0a898;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb a:hover {
            color: #d4a574;
        }
        .breadcrumb .sep {
            color: #555;
            font-size: 0.7rem;
        }
        .breadcrumb .current {
            color: #d4a574;
            font-weight: 600;
        }
        .section-card {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #222;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .section-card:hover {
            border-color: #3a3a3a;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .feature-item {
            background: #1a1a1a;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #252525;
            transition: transform 0.25s, border-color 0.25s;
        }
        .feature-item:hover {
            transform: translateY(-4px);
            border-color: #d4a574;
        }
        .feature-item i {
            font-size: 2rem;
            color: #d4a574;
            margin-bottom: 0.8rem;
        }
        .feature-item h4 {
            margin-top: 0.2rem;
            margin-bottom: 0.5rem;
        }
        .hero-image-wrap {
            margin: 1.8rem 0;
            border-radius: 12px;
            overflow: hidden;
            background: #111;
            position: relative;
        }
        .hero-image-wrap img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
            border-radius: 12px;
        }
        .hero-image-wrap .img-caption {
            padding: 0.6rem 1rem;
            background: rgba(0, 0, 0, 0.7);
            font-size: 0.85rem;
            color: #b0a898;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            backdrop-filter: blur(4px);
        }
        .search-box {
            display: flex;
            gap: 0.5rem;
            max-width: 560px;
            margin: 1.2rem 0;
        }
        .search-box input {
            flex: 1;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #1a1a1a;
            color: #e0e0e0;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .search-box input:focus {
            border-color: #d4a574;
            outline: none;
        }
        .search-box button {
            padding: 0.7rem 1.4rem;
            background: #d4a574;
            color: #0f0f0f;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .search-box button:hover {
            background: #f5cba0;
            transform: scale(1.02);
        }
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            max-width: 600px;
            margin: 1.2rem 0;
        }
        .comment-form textarea,
        .comment-form input,
        .rating-form select,
        .rating-form input {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #333;
            background: #1a1a1a;
            color: #e0e0e0;
            font-size: 0.95rem;
            transition: border 0.3s;
        }
        .comment-form textarea:focus,
        .comment-form input:focus,
        .rating-form select:focus,
        .rating-form input:focus {
            border-color: #d4a574;
            outline: none;
        }
        .comment-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            align-self: flex-start;
            padding: 0.6rem 1.6rem;
            background: #d4a574;
            color: #0f0f0f;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.25s, transform 0.15s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background: #f5cba0;
            transform: scale(1.02);
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.5rem;
            color: #555;
            cursor: pointer;
        }
        .rating-stars i.active {
            color: #f5cba0;
        }
        .rating-stars i:hover {
            color: #d4a574;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 0.8rem;
            margin: 1.2rem 0;
        }
        .links-grid a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.8rem;
            background: #1a1a1a;
            border-radius: 6px;
            border: 1px solid #252525;
            font-size: 0.9rem;
            transition: background 0.2s, border-color 0.2s;
        }
        .links-grid a:hover {
            background: #252525;
            border-color: #d4a574;
        }
        .links-grid a i {
            color: #d4a574;
            font-size: 0.8rem;
        }
        .site-footer {
            background: #0a0a0a;
            border-top: 2px solid #1a1a1a;
            padding: 2.5rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-col h4 {
            color: #d4a574;
            font-size: 1.1rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid #222;
            padding-bottom: 0.4rem;
        }
        .footer-col a {
            display: block;
            padding: 0.25rem 0;
            font-size: 0.9rem;
            color: #b0a898;
        }
        .footer-col a:hover {
            color: #d4a574;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #1a1a1a;
            font-size: 0.85rem;
            color: #777;
        }
        .copyright strong {
            color: #b0a898;
        }
        friend-link {
            display: block;
            background: #111;
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            border: 1px solid #222;
            margin: 1.2rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0.2rem 0.6rem 0.2rem 0;
            padding: 0.2rem 0.6rem;
            background: #1a1a1a;
            border-radius: 4px;
            font-size: 0.85rem;
            border: 1px solid #2a2a2a;
        }
        friend-link a:hover {
            border-color: #d4a574;
        }
        friend-link::before {
            content: "🌐 Friend Links: ";
            font-weight: 600;
            color: #d4a574;
            display: block;
            margin-bottom: 0.4rem;
            font-size: 0.95rem;
        }
        .schema-hidden {
            display: none;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #141414;
                padding: 0.8rem 0;
                border-top: 1px solid #2a2a2a;
                margin-top: 0.4rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.7rem 1rem;
                border-radius: 0;
                width: 100%;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
            .search-box {
                flex-direction: column;
            }
            .hero-image-wrap .img-caption {
                position: relative;
                background: #111;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .footer-inner {
                grid-template-columns: 1fr;
            }
            .my-logo {
                font-size: 1.2rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .section-card {
                padding: 0.8rem 0.8rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #0f0f0f;
        }
        ::-webkit-scrollbar-thumb {
            background: #3a3a3a;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }
        .eeat-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.5rem;
            padding: 0.8rem 1rem;
            background: #1a1a1a;
            border-radius: 8px;
            border: 1px solid #252525;
            margin: 1rem 0;
            font-size: 0.85rem;
            color: #b0a898;
        }
        .eeat-badge i {
            color: #d4a574;
            margin-right: 0.3rem;
        }
        .last-updated {
            display: inline-block;
            background: #1a1a1a;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #b0a898;
            border: 1px solid #252525;
        }
        .last-updated i {
            color: #d4a574;
            margin-right: 0.3rem;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
            font-size: 0.9rem;
        }
        .data-table th {
            background: #1a1a1a;
            color: #d4a574;
            padding: 0.6rem 0.8rem;
            text-align: left;
            border-bottom: 2px solid #2a2a2a;
        }
        .data-table td {
            padding: 0.5rem 0.8rem;
            border-bottom: 1px solid #1e1e1e;
        }
        .data-table tr:hover td {
            background: #1a1a1a;
        }
