* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #0d0f14;
            color: #e8edf2;
            line-height: 1.7;
            font-size: 16px;
        }
        a {
            color: #6ab0f3;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #a0d0ff;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: #141821;
            border-bottom: 2px solid #2a2f3a;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
            background: rgba(20, 24, 33, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .my-logo i {
            font-size: 2rem;
            -webkit-text-fill-color: initial;
            color: #f7971e;
        }
        .my-logo:hover {
            opacity: 0.9;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            gap: 6px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-menu a {
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.9rem;
            color: #c8d0dc;
            transition: background 0.2s, color 0.2s;
        }
        .nav-menu a:hover {
            background: #2a2f3a;
            color: #ffd200;
            text-decoration: none;
        }
        .nav-menu a.active {
            background: #f7971e;
            color: #0d0f14;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #e8edf2;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
        }
        .hamburger:hover {
            background: #2a2f3a;
        }
        .breadcrumb {
            padding: 14px 0 8px;
            font-size: 0.85rem;
            color: #8a9aa8;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .breadcrumb a {
            color: #8a9aa8;
        }
        .breadcrumb a:hover {
            color: #ffd200;
        }
        .breadcrumb span {
            color: #5a6a78;
        }
        .hero {
            padding: 30px 0 20px;
            border-bottom: 1px solid #2a2f3a;
            margin-bottom: 30px;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            margin-bottom: 12px;
        }
        .hero .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            color: #8a9aa8;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f7971e;
        }
        .last-updated {
            background: #1e232e;
            display: inline-block;
            padding: 2px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: #ffd200;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        section {
            margin-bottom: 48px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffd200;
            border-left: 5px solid #f7971e;
            padding-left: 16px;
            margin: 36px 0 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #f0c27f;
            margin: 28px 0 14px;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #d4b06a;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 16px;
            color: #d5dce6;
        }
        .highlight {
            background: #1e232e;
            padding: 20px 24px;
            border-radius: 14px;
            border-left: 4px solid #f7971e;
            margin: 20px 0;
        }
        .highlight strong {
            color: #ffd200;
        }
        ul,
        ol {
            margin: 12px 0 20px 24px;
            color: #d5dce6;
        }
        li {
            margin-bottom: 6px;
        }
        .emoji-big {
            font-size: 1.4rem;
            margin-right: 6px;
        }
        .table-wrap {
            overflow-x: auto;
            margin: 20px 0;
            border-radius: 12px;
            background: #1a1f2a;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }
        th {
            background: #2a2f3a;
            color: #ffd200;
            padding: 12px 16px;
            text-align: left;
            font-weight: 600;
        }
        td {
            padding: 10px 16px;
            border-bottom: 1px solid #2a2f3a;
        }
        tr:hover td {
            background: #222736;
        }
        .featured-img {
            margin: 24px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        }
        .featured-img img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-img figcaption {
            background: #1a1f2a;
            padding: 10px 18px;
            font-size: 0.85rem;
            color: #8a9aa8;
            text-align: center;
        }
        .link-list-inset {
            background: #1a1f2a;
            padding: 18px 22px;
            border-radius: 14px;
            margin: 20px 0;
            border: 1px solid #2a2f3a;
        }
        .link-list-inset h4 {
            margin-top: 0;
            color: #ffd200;
        }
        .link-list-inset ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px 18px;
        }
        .link-list-inset li {
            margin: 0;
        }
        .link-list-inset a {
            font-size: 0.9rem;
            display: block;
            padding: 4px 0;
        }
        .sidebar-card {
            background: #1a1f2a;
            border-radius: 14px;
            padding: 20px;
            margin-bottom: 24px;
            border: 1px solid #2a2f3a;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 12px;
            color: #ffd200;
            border-left: 3px solid #f7971e;
            padding-left: 12px;
        }
        .sidebar-card ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .sidebar-card li {
            margin-bottom: 8px;
        }
        .sidebar-card a {
            display: block;
            padding: 6px 0;
            border-bottom: 1px solid #252a36;
        }
        .sidebar-card a:hover {
            color: #ffd200;
            text-decoration: none;
        }
        .search-form {
            display: flex;
            gap: 8px;
            margin: 12px 0;
        }
        .search-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid #2a2f3a;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            transition: border 0.2s;
        }
        .search-form input:focus {
            border-color: #f7971e;
        }
        .search-form button {
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #0d0f14;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(247, 151, 30, 0.4);
        }
        .comment-box,
        .rating-box {
            background: #1a1f2a;
            border-radius: 14px;
            padding: 24px;
            margin: 20px 0;
            border: 1px solid #2a2f3a;
        }
        .comment-box h3,
        .rating-box h3 {
            margin-top: 0;
            color: #ffd200;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #2a2f3a;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 0.95rem;
            min-height: 120px;
            resize: vertical;
            outline: none;
            font-family: inherit;
        }
        .comment-box textarea:focus {
            border-color: #f7971e;
        }
        .comment-box input[type="text"] {
            width: 100%;
            padding: 12px 18px;
            border-radius: 30px;
            border: 1px solid #2a2f3a;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 0.95rem;
            outline: none;
            margin: 8px 0 14px;
        }
        .comment-box input:focus {
            border-color: #f7971e;
        }
        .btn-submit {
            padding: 12px 32px;
            border-radius: 30px;
            border: none;
            background: linear-gradient(135deg, #f7971e, #ffd200);
            color: #0d0f14;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.2s;
            font-size: 0.95rem;
        }
        .btn-submit:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 20px rgba(247, 151, 30, 0.4);
        }
        .star-rating {
            display: flex;
            gap: 6px;
            font-size: 2rem;
            cursor: pointer;
            direction: rtl;
            unicode-bidi: bidi-override;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a3f4a;
            transition: color 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffd200;
        }
        friend-link {
            display: block;
            background: #1a1f2a;
            border-radius: 14px;
            padding: 20px 24px;
            margin: 30px 0 14px;
            border: 1px solid #2a2f3a;
        }
        friend-link::before {
            content: "🔗 Friend Links";
            display: block;
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffd200;
            margin-bottom: 12px;
        }
        friend-link a {
            display: inline-block;
            margin: 4px 12px 4px 0;
            padding: 4px 12px;
            background: #252a36;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            background: #2a2f3a;
            color: #ffd200;
            text-decoration: none;
        }
        .site-footer {
            background: #141821;
            border-top: 2px solid #2a2f3a;
            padding: 30px 0 20px;
            margin-top: 50px;
            text-align: center;
            font-size: 0.9rem;
            color: #6a7a88;
        }
        .site-footer .copyright {
            margin-top: 12px;
            font-size: 0.85rem;
            color: #4a5a68;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 12px;
                gap: 4px;
                background: #141821;
                padding: 12px 0;
                border-top: 1px solid #2a2f3a;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu a {
                padding: 10px 20px;
                width: 100%;
                border-radius: 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .link-list-inset ul {
                grid-template-columns: 1fr;
            }
            .header-inner {
                align-items: center;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .star-rating {
                font-size: 1.6rem;
            }
            .container {
                padding: 0 14px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form button {
                width: 100%;
            }
            .btn-submit {
                width: 100%;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f14;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f3a;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a4a5a;
        }
        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .eeat-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #1e232e;
            padding: 4px 16px 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #8a9aa8;
            border: 1px solid #2a2f3a;
        }
        .eeat-badge i {
            color: #ffd200;
        }
