        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f14;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f7c948;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ffdd77;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
            margin: 0.75rem 0;
        }
        li {
            margin-bottom: 0.35rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.25;
            color: #f0f4fa;
            margin-top: 1.8rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f7c948;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #f7c948;
            padding-left: 0.9rem;
            margin-top: 2.4rem;
        }
        h3 {
            font-size: 1.4rem;
            color: #f7c948;
        }
        h4 {
            font-size: 1.15rem;
            color: #cfdbe8;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.2rem;
        }
        header {
            background: #141821;
            border-bottom: 2px solid #2a2f3e;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.5rem 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
        }
        .my-logo {
            font-size: 1.7rem;
            font-weight: 800;
            color: #f7c948;
            letter-spacing: -0.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #f7c948, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .my-logo i {
            -webkit-text-fill-color: #f7c948;
            font-size: 1.5rem;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f7c948;
            color: #f7c948;
            font-size: 1.6rem;
            padding: 0.25rem 0.7rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f7c94822;
        }
        .main-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.25rem 1.2rem;
        }
        .main-nav a {
            color: #cfdbe8;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }
        .main-nav a:hover {
            color: #f7c948;
            border-bottom-color: #f7c948;
            text-decoration: none;
        }
        .main-nav a.active {
            color: #f7c948;
            border-bottom-color: #f7c948;
        }
        .breadcrumb {
            background: #1a1f2b;
            padding: 0.6rem 0;
            font-size: 0.85rem;
            border-bottom: 1px solid #2a2f3e;
        }
        .breadcrumb ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem 0.6rem;
            padding: 0;
            margin: 0;
        }
        .breadcrumb li {
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .breadcrumb li+li::before {
            content: "›";
            color: #7a8394;
            font-weight: 700;
            margin-right: 0.3rem;
        }
        .breadcrumb a {
            color: #aab4c5;
        }
        .breadcrumb a:hover {
            color: #f7c948;
        }
        .breadcrumb .current {
            color: #f7c948;
            font-weight: 500;
        }
        .hero-section {
            background: linear-gradient(145deg, #141821 0%, #1e2537 100%);
            border-radius: 18px;
            padding: 2.5rem 2rem;
            margin: 1.8rem 0 2.5rem;
            border: 1px solid #2f3548;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "⚡";
            position: absolute;
            top: -20px;
            right: -10px;
            font-size: 10rem;
            opacity: 0.04;
            transform: rotate(15deg);
        }
        .hero-section h1 {
            border-bottom: none;
            margin-top: 0;
            padding-bottom: 0;
            font-size: 2.6rem;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            color: #aab4c5;
            font-size: 0.9rem;
            margin: 0.5rem 0 1.2rem;
        }
        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .hero-section .last-updated {
            display: inline-block;
            background: #2a2f3e;
            padding: 0.2rem 0.9rem;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #c8d2e0;
        }
        .search-wrapper {
            background: #1a1f2b;
            border-radius: 60px;
            padding: 0.4rem 0.4rem 0.4rem 1.5rem;
            display: flex;
            align-items: center;
            max-width: 520px;
            border: 1px solid #2f3548;
            transition: 0.3s;
            margin: 1.8rem 0;
        }
        .search-wrapper:focus-within {
            border-color: #f7c948;
            box-shadow: 0 0 0 3px #f7c94833;
        }
        .search-wrapper i {
            color: #7a8394;
            font-size: 1.1rem;
        }
        .search-wrapper input {
            background: transparent;
            border: none;
            padding: 0.7rem 0.9rem;
            flex: 1;
            color: #e8edf2;
            font-size: 1rem;
            outline: none;
            min-width: 0;
        }
        .search-wrapper input::placeholder {
            color: #6a7488;
        }
        .search-wrapper button {
            background: #f7c948;
            border: none;
            color: #0d0f14;
            font-weight: 700;
            padding: 0.6rem 1.6rem;
            border-radius: 40px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-wrapper button:hover {
            background: #ffdd66;
            transform: scale(1.02);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            margin: 2rem 0;
        }
        .main-content {
            min-width: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }
        .widget {
            background: #181e2b;
            border-radius: 14px;
            padding: 1.5rem 1.3rem;
            border: 1px solid #2a2f3e;
        }
        .widget h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 1rem;
            border-bottom: 1px solid #2f3548;
            padding-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .widget li {
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #232836;
            padding-bottom: 0.5rem;
        }
        .widget li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .widget a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.92rem;
        }
        .widget a i {
            color: #f7c948;
            font-size: 0.8rem;
        }
        .featured-figure {
            margin: 2rem 0;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #2f3548;
            background: #141821;
        }
        .featured-figure img {
            width: 100%;
            max-height: 480px;
            object-fit: cover;
        }
        .featured-figure figcaption {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #aab4c5;
            font-style: italic;
            background: #141821;
        }
        .btn-soft {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #f7c948;
            color: #0d0f14;
            font-weight: 700;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-size: 0.95rem;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-soft:hover {
            background: #ffdd66;
            transform: translateY(-2px);
            text-decoration: none;
            color: #0d0f14;
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 2px solid #f7c948;
            color: #f7c948;
            font-weight: 600;
            padding: 0.5rem 1.3rem;
            border-radius: 40px;
            font-size: 0.9rem;
            transition: 0.2s;
            background: transparent;
        }
        .btn-outline:hover {
            background: #f7c948;
            color: #0d0f14;
            text-decoration: none;
        }
        .interaction-area {
            background: #181e2b;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            margin: 2.5rem 0;
            border: 1px solid #2a2f3e;
        }
        .interaction-area h2 {
            margin-top: 0;
            border-left-color: #f7c948;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            color: #cfdbe8;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 10px;
            border: 1px solid #2f3548;
            background: #0d0f14;
            color: #e8edf2;
            font-size: 0.95rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #f7c948;
            box-shadow: 0 0 0 3px #f7c94833;
        }
        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 0.2rem;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3a4050;
            transition: 0.2s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f7c948;
        }
        .submit-btn {
            background: #f7c948;
            border: none;
            color: #0d0f14;
            font-weight: 700;
            padding: 0.8rem 2.2rem;
            border-radius: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .submit-btn:hover {
            background: #ffdd66;
            transform: translateY(-2px);
        }
        .link-group {
            background: #181e2b;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid #f7c948;
        }
        .link-group h4 {
            margin-top: 0;
            color: #f7c948;
        }
        .link-group ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 0.5rem 1.2rem;
        }
        .link-group li {
            margin: 0;
            padding: 0;
            border: none;
        }
        .link-group a {
            font-size: 0.92rem;
        }
        friend-link {
            display: block;
            background: #141821;
            border-top: 2px solid #2a2f3e;
            padding: 1.8rem 0;
            margin-top: 2rem;
        }
        friend-link .container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 2rem;
            justify-content: center;
        }
        friend-link a {
            color: #aab4c5;
            font-size: 0.9rem;
            padding: 0.2rem 0.6rem;
            border-radius: 6px;
            transition: 0.2s;
        }
        friend-link a:hover {
            color: #f7c948;
            background: #1a1f2b;
            text-decoration: none;
        }
        friend-link .friend-label {
            color: #7a8394;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        footer {
            background: #0a0c12;
            border-top: 2px solid #1e2537;
            padding: 2rem 0 1.2rem;
            margin-top: auto;
            text-align: center;
        }
        footer p {
            color: #6a7488;
            font-size: 0.85rem;
            margin: 0.2rem 0;
        }
        footer .copyright {
            color: #5a6478;
            font-size: 0.8rem;
            letter-spacing: 0.3px;
        }
        footer .logo-footer {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f7c948;
            margin-bottom: 0.5rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: 2;
            }
            .hero-section h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.2rem;
                border-top: 1px solid #2a2f3e;
                margin-top: 0.5rem;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 0.6rem 0.8rem;
                border-bottom: 1px solid #1e2537;
                width: 100%;
            }
            .header-inner {
                align-items: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .hero-section {
                padding: 1.5rem 1.2rem;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .search-wrapper {
                flex-wrap: wrap;
                border-radius: 20px;
                padding: 0.3rem;
            }
            .search-wrapper input {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
            .search-wrapper button {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
                border-radius: 20px;
            }
            .link-group ul {
                grid-template-columns: 1fr;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .my-logo {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 0.8rem;
            }
            h1 {
                font-size: 1.5rem;
            }
            .hero-section h1 {
                font-size: 1.5rem;
            }
            .hero-meta {
                font-size: 0.8rem;
                gap: 0.5rem 1rem;
            }
            .interaction-area {
                padding: 1.2rem 1rem;
            }
            .star-rating {
                font-size: 1.4rem;
            }
        }
        .eeat-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            background: #1a1f2b;
            border-radius: 12px;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #2a2f3e;
            font-size: 0.9rem;
        }
        .eeat-badge i {
            color: #f7c948;
            margin-right: 0.4rem;
        }
        .eeat-badge span {
            display: inline-flex;
            align-items: center;
        }
        .highlight {
            color: #f7c948;
            font-weight: 600;
        }
        .small-meta {
            color: #6a7488;
            font-size: 0.8rem;
        }
        .divider {
            border: none;
            border-top: 1px solid #2a2f3e;
            margin: 1.8rem 0;
        }
        .emoji-big {
            font-size: 1.4rem;
            vertical-align: middle;
        }
