        *,
        *::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: #0e0f12;
            color: #e8eaf0;
            line-height: 1.75;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f5c542;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            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;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-top: 0;
            color: #ffffff;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2rem;
            margin: 2.4rem 0 1.2rem 0;
            border-left: 6px solid #f5c542;
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.5rem;
            margin: 2rem 0 0.8rem 0;
            color: #f0f2f8;
        }
        h4 {
            font-size: 1.2rem;
            margin: 1.2rem 0 0.6rem 0;
            color: #d0d4e0;
        }
        p {
            margin-bottom: 1.2rem;
        }
        strong,
        b {
            color: #ffde7a;
            font-weight: 700;
        }
        blockquote {
            border-left: 4px solid #f5c542;
            padding: 1rem 1.5rem;
            margin: 1.6rem 0;
            background: #1a1c23;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #cfd2dc;
        }
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(to right, #f5c542, transparent);
            margin: 2.4rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: #14161c;
            border-bottom: 2px solid #2a2d38;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
            background: rgba(14, 15, 18, 0.96);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .my-logo {
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f5c542, #e89b2e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f5c542;
            font-size: 1.8rem;
        }
        .my-logo small {
            font-size: 0.7rem;
            -webkit-text-fill-color: #9aa0b0;
            font-weight: 400;
            letter-spacing: 0.1em;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        nav {
            display: flex;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav a {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #c8ccd8;
            transition: background 0.2s, color 0.2s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #2a2d38;
            color: #f5c542;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e8eaf0;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #2a2d38;
        }
        #nav-toggle {
            display: none;
        }
        .breadcrumb {
            padding: 1rem 0 0.2rem 0;
            font-size: 0.85rem;
            color: #8a8f9e;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            align-items: center;
        }
        .breadcrumb a {
            color: #b0b5c4;
        }
        .breadcrumb a:hover {
            color: #f5c542;
        }
        .breadcrumb span {
            color: #5a5f6e;
        }
        .hero {
            padding: 2.4rem 0 1.6rem 0;
            text-align: center;
            background: radial-gradient(ellipse at 50% 0%, #1f232e 0%, #0e0f12 70%);
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 0.6rem;
        }
        .hero .subtitle {
            font-size: 1.2rem;
            color: #b0b5c4;
            max-width: 760px;
            margin: 0 auto 1.2rem auto;
        }
        .hero .meta {
            font-size: 0.9rem;
            color: #6a6f7e;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .hero .meta i {
            margin-right: 0.3rem;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.4rem;
            padding: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .card {
            background: #1a1c23;
            border-radius: 16px;
            padding: 1.6rem;
            margin-bottom: 1.6rem;
            border: 1px solid #2a2d38;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
        }
        .card h3 {
            margin-top: 0;
        }
        .table-wrap {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            margin: 1.2rem 0;
        }
        th,
        td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid #2a2d38;
        }
        th {
            background: #232631;
            color: #f5c542;
            font-weight: 600;
            white-space: nowrap;
        }
        td {
            color: #d0d4e0;
        }
        tr:hover td {
            background: #1e212a;
        }
        .featured-img {
            margin: 1.6rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
        }
        .featured-img figcaption {
            font-size: 0.85rem;
            color: #8a8f9e;
            padding: 0.8rem 0 0 0;
            text-align: center;
            font-style: italic;
        }
        .form-card {
            background: #1a1c23;
            border-radius: 16px;
            padding: 1.6rem;
            margin: 1.6rem 0;
            border: 1px solid #2a2d38;
        }
        .form-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #c8ccd8;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border: 2px solid #2a2d38;
            border-radius: 10px;
            background: #0e0f12;
            color: #e8eaf0;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f5c542;
            box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.8rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            background: #f5c542;
            color: #0e0f12;
        }
        .btn:hover {
            background: #ffde7a;
            transform: scale(1.02);
        }
        .btn-secondary {
            background: #2a2d38;
            color: #e8eaf0;
        }
        .btn-secondary:hover {
            background: #3a3e4c;
        }
        .rating-stars {
            display: flex;
            gap: 0.3rem;
            font-size: 1.6rem;
            color: #4a4e5c;
            cursor: pointer;
        }
        .rating-stars .star {
            transition: color 0.2s, transform 0.1s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #f5c542;
            transform: scale(1.15);
        }
        .sidebar .card {
            padding: 1.2rem;
        }
        .sidebar .card h4 {
            font-size: 1.1rem;
            margin-top: 0;
            border-bottom: 2px solid #2a2d38;
            padding-bottom: 0.5rem;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar ul li {
            padding: 0.4rem 0;
            border-bottom: 1px solid #1e212a;
        }
        .sidebar ul li a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .sidebar ul li a i {
            width: 1.2rem;
            color: #f5c542;
        }
        friend-link {
            display: block;
            padding: 1.2rem 0;
            border-top: 2px solid #2a2d38;
            margin-top: 1.2rem;
        }
        friend-link::before {
            content: "🔗 Friendly Links";
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: #f5c542;
            margin-bottom: 0.8rem;
        }
        .friend-links-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem 1.6rem;
            list-style: none;
            padding: 0;
        }
        .friend-links-list li a {
            font-size: 0.9rem;
            padding: 0.2rem 0;
        }
        footer {
            background: #0a0b0e;
            border-top: 2px solid #1a1c23;
            padding: 2rem 0 1.2rem 0;
            margin-top: auto;
            text-align: center;
            font-size: 0.9rem;
            color: #6a6f7e;
        }
        footer .copyright {
            margin-top: 1rem;
            font-size: 0.8rem;
        }
        @media (max-width: 1024px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .sidebar .card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: #14161c;
                padding: 0.8rem 0;
                border-radius: 0 0 12px 12px;
                margin-top: 0.4rem;
            }
            nav a {
                padding: 0.7rem 1.2rem;
                border-bottom: 1px solid #1e212a;
            }
            #nav-toggle:checked~.nav-wrapper nav {
                display: flex;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .hero .meta {
                flex-direction: column;
                gap: 0.4rem;
                align-items: center;
            }
            .table-wrap {
                font-size: 0.85rem;
            }
            th,
            td {
                padding: 0.5rem 0.6rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .my-logo small {
                display: none;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .form-card {
                padding: 1rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0e0f12;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2d38;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3a3e4c;
        }
        .tag {
            display: inline-block;
            background: #2a2d38;
            color: #f5c542;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #f5c542;
            line-height: 1.2;
        }
        .flex-icon-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            margin: 1.2rem 0;
        }
        .flex-icon-row .item {
            flex: 1 1 160px;
            text-align: center;
            padding: 1rem;
            background: #1a1c23;
            border-radius: 12px;
            border: 1px solid #2a2d38;
        }
        .flex-icon-row .item i {
            font-size: 2rem;
            color: #f5c542;
            margin-bottom: 0.4rem;
        }
        .update-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #232631;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: #b0b5c4;
        }
