        *,
        *::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: #0b0e14;
            color: #e8e6e3;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #f0b429;
            text-decoration: none;
            transition: color 0.25s;
        }
        a:hover,
        a:focus-visible {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        .wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        .site-header {
            background: #141a24;
            border-bottom: 3px solid #f0b429;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #f0b429, #d48c1a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(240, 180, 41, 0.2);
            display: inline-block;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.9;
        }
        .my-logo small {
            font-size: 0.55rem;
            -webkit-text-fill-color: #a0aaba;
            color: #a0aaba;
            display: block;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0b429;
            color: #f0b429;
            font-size: 1.6rem;
            padding: 6px 14px;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0b429;
            color: #141a24;
        }
        .primary-nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 18px;
        }
        .primary-nav a {
            color: #c8d0db;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .primary-nav a:hover {
            color: #f0b429;
            border-bottom-color: #f0b429;
            text-decoration: none;
        }
        .primary-nav a.active {
            color: #f0b429;
            border-bottom-color: #f0b429;
        }
        .breadcrumb-wrap {
            background: #1c2432;
            padding: 10px 0;
            border-bottom: 1px solid #2a3344;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            font-size: 0.85rem;
            color: #8895aa;
        }
        .breadcrumb li+li::before {
            content: "/";
            margin: 0 10px;
            color: #4a5568;
        }
        .breadcrumb a {
            color: #b0bed0;
        }
        .breadcrumb a:hover {
            color: #f0b429;
        }
        .breadcrumb .current {
            color: #f0b429;
            font-weight: 500;
        }
        .hero {
            background: linear-gradient(135deg, #0f1622 0%, #1a2438 100%);
            padding: 50px 0 40px;
            border-bottom: 1px solid #2a3344;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f7d875, #f0b429);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }
        .hero .meta {
            color: #8895aa;
            font-size: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .hero .meta i {
            margin-right: 6px;
            color: #f0b429;
        }
        .hero .last-updated {
            background: #1f2a3a;
            padding: 4px 14px;
            border-radius: 30px;
            font-size: 0.85rem;
        }
        .search-area {
            margin-top: 24px;
            display: flex;
            max-width: 500px;
            width: 100%;
        }
        .search-area form {
            display: flex;
            width: 100%;
            gap: 0;
        }
        .search-area input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #2a3344;
            border-right: none;
            border-radius: 40px 0 0 40px;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            outline: none;
            transition: 0.3s;
        }
        .search-area input:focus {
            border-color: #f0b429;
            background: #11161f;
        }
        .search-area button {
            padding: 12px 24px;
            border: 2px solid #f0b429;
            border-radius: 0 40px 40px 0;
            background: #f0b429;
            color: #141a24;
            font-weight: 700;
            cursor: pointer;
            transition: 0.25s;
            font-size: 1rem;
        }
        .search-area button:hover {
            background: #ffd966;
            border-color: #ffd966;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0 50px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            position: sticky;
            top: 120px;
            align-self: start;
        }
        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 16px;
            color: #f7d875;
            border-bottom: 2px solid #2a3344;
            padding-bottom: 10px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 36px 0 12px;
            color: #e8d5a3;
        }
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 28px 0 10px;
            color: #d4c08a;
        }
        p {
            margin-bottom: 18px;
            color: #d5dbe5;
        }
        .lead {
            font-size: 1.15rem;
            color: #e8e6e3;
            font-weight: 400;
            border-left: 4px solid #f0b429;
            padding-left: 20px;
            margin-bottom: 28px;
        }
        strong,
        b {
            color: #f0e6c0;
            font-weight: 600;
        }
        ul,
        ol {
            margin: 0 0 20px 24px;
            color: #d5dbe5;
        }
        li {
            margin-bottom: 8px;
        }
        blockquote {
            border-left: 4px solid #f0b429;
            padding: 16px 24px;
            margin: 24px 0;
            background: #1a2230;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: #c8d4e0;
        }
        blockquote cite {
            display: block;
            margin-top: 10px;
            font-size: 0.9rem;
            color: #8895aa;
            font-style: normal;
        }
        .featured-image {
            margin: 32px 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
        }
        .featured-image figcaption {
            background: #141a24;
            padding: 12px 18px;
            font-size: 0.85rem;
            color: #8895aa;
            text-align: center;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 24px 0 32px;
            font-size: 0.95rem;
            background: #141a24;
            border-radius: 12px;
            overflow: hidden;
        }
        .data-table th {
            background: #1f2a3a;
            color: #f7d875;
            padding: 14px 18px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 18px;
            border-bottom: 1px solid #1f2a3a;
            color: #d5dbe5;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #1a2230;
        }
        .tip-card {
            background: #1a2230;
            border-radius: 16px;
            padding: 24px 28px;
            margin: 24px 0;
            border-left: 5px solid #f0b429;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .tip-card h4 {
            margin-top: 0;
            color: #f7d875;
        }
        .sidebar-card {
            background: #141a24;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            border: 1px solid #1f2a3a;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            margin-bottom: 14px;
            color: #f7d875;
            border-bottom: 1px solid #1f2a3a;
            padding-bottom: 10px;
        }
        .sidebar-links {
            list-style: none;
            margin: 0;
        }
        .sidebar-links li {
            margin-bottom: 10px;
        }
        .sidebar-links a {
            display: block;
            padding: 8px 12px;
            background: #1c2432;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .sidebar-links a:hover {
            background: #243040;
            text-decoration: none;
            transform: translateX(4px);
        }
        .interaction-panel {
            display: flex;
            flex-wrap: wrap;
            gap: 24px 40px;
            margin: 40px 0 30px;
            padding: 28px 0;
            border-top: 1px solid #1f2a3a;
            border-bottom: 1px solid #1f2a3a;
        }
        .rating-box {
            flex: 1 1 240px;
        }
        .rating-box h4 {
            margin-top: 0;
            font-size: 1.1rem;
        }
        .star-group {
            display: flex;
            gap: 6px;
            font-size: 1.6rem;
            color: #4a5568;
            cursor: pointer;
        }
        .star-group i {
            transition: 0.2s;
        }
        .star-group i.active,
        .star-group i:hover {
            color: #f0b429;
        }
        .rating-box form {
            margin-top: 10px;
        }
        .rating-box form button {
            padding: 8px 24px;
            background: #f0b429;
            border: none;
            border-radius: 30px;
            color: #141a24;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .rating-box form button:hover {
            background: #ffd966;
        }
        .comment-box {
            flex: 2 1 360px;
        }
        .comment-box h4 {
            margin-top: 0;
            font-size: 1.1rem;
        }
        .comment-box textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #2a3344;
            border-radius: 12px;
            background: #0b0e14;
            color: #e8e6e3;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 90px;
            font-family: inherit;
            transition: 0.3s;
        }
        .comment-box textarea:focus {
            border-color: #f0b429;
            outline: none;
        }
        .comment-box form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .comment-box form button {
            align-self: flex-end;
            padding: 10px 32px;
            background: #f0b429;
            border: none;
            border-radius: 30px;
            color: #141a24;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }
        .comment-box form button:hover {
            background: #ffd966;
        }
        .site-footer {
            background: #0d121c;
            border-top: 2px solid #1f2a3a;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f7d875;
            margin-top: 0;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: #a0aaba;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f0b429;
        }
        friend-link {
            display: block;
            background: #141a24;
            padding: 18px 22px;
            border-radius: 12px;
            margin: 20px 0 10px;
            font-size: 0.9rem;
            border: 1px solid #1f2a3a;
        }
        friend-link a {
            display: inline-block;
            margin: 0 8px 6px 0;
            padding: 4px 12px;
            background: #1c2432;
            border-radius: 30px;
            color: #b0bed0;
            font-size: 0.85rem;
        }
        friend-link a:hover {
            background: #2a3344;
            color: #f0b429;
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            color: #4a5568;
            font-size: 0.85rem;
            padding-top: 20px;
            border-top: 1px solid #1a2230;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .nav-toggle {
                display: block;
            }
            .primary-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #141a24;
                padding: 16px 0 12px;
                border-top: 1px solid #1f2a3a;
                gap: 4px;
            }
            .primary-nav.open {
                display: flex;
            }
            .primary-nav a {
                padding: 10px 16px;
                border-bottom: none;
                font-size: 1rem;
            }
            .primary-nav a:hover {
                background: #1a2230;
                border-bottom: none;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .sidebar {
                grid-template-columns: 1fr;
            }
            .interaction-panel {
                flex-direction: column;
            }
            .data-table {
                font-size: 0.8rem;
            }
            .data-table th,
            .data-table td {
                padding: 8px 10px;
            }
            .wrapper {
                padding: 0 14px;
            }
            .search-area {
                max-width: 100%;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.25rem;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .my-logo {
                font-size: 1.4rem;
            }
            .breadcrumb {
                font-size: 0.75rem;
            }
            .breadcrumb li+li::before {
                margin: 0 5px;
            }
            .star-group {
                font-size: 1.3rem;
            }
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240, 180, 41, 0.15), transparent);
            padding: 0 6px;
            border-radius: 4px;
        }
        .emoji-big {
            font-size: 1.4em;
            margin-right: 4px;
        }
        .hr-divider {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #2a3344, transparent);
            margin: 36px 0;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        :focus-visible {
            outline: 2px solid #f0b429;
            outline-offset: 2px;
        }
