        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: #0d0f12;
            color: #e8edf2;
            line-height: 1.7;
            padding: 0;
            margin: 0;
            min-height: 100vh;
        }
        a {
            color: #f0b90b;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #ffd966;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #ffffff;
            margin-top: 1.8rem;
            margin-bottom: 0.6rem;
        }
        h1 {
            font-size: 2.4rem;
            border-bottom: 3px solid #f0b90b;
            padding-bottom: 0.4rem;
            display: inline-block;
        }
        h2 {
            font-size: 1.9rem;
            border-left: 5px solid #f0b90b;
            padding-left: 0.8rem;
        }
        h3 {
            font-size: 1.5rem;
            color: #f5d742;
        }
        h4 {
            font-size: 1.2rem;
            color: #d4e0ed;
        }
        p {
            margin-bottom: 1rem;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: #161a1f;
            border-bottom: 2px solid #2a2f36;
            padding: 0.6rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(6px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f0b90b, #f7d94e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-shadow: 0 0 30px rgba(240, 185, 11, 0.15);
        }
        .my-logo small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #9aa8b9;
            -webkit-text-fill-color: #9aa8b9;
            margin-left: 6px;
        }
        .my-logo:hover {
            opacity: 0.85;
            text-decoration: none;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid #f0b90b;
            color: #f0b90b;
            font-size: 1.5rem;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }
        .nav-toggle:hover {
            background: #f0b90b;
            color: #0d0f12;
        }
        nav {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            flex-wrap: wrap;
        }
        nav a {
            color: #c8d2de;
            padding: 0.4rem 0.9rem;
            border-radius: 6px;
            font-size: 0.92rem;
            font-weight: 500;
            transition: 0.2s;
            white-space: nowrap;
        }
        nav a:hover {
            background: #2a2f36;
            color: #f0b90b;
            text-decoration: none;
        }
        nav a.active {
            background: #f0b90b;
            color: #0d0f12;
        }
        .breadcrumb {
            background: #1e2329;
            padding: 0.5rem 20px;
            font-size: 0.85rem;
            color: #9aa8b9;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #9aa8b9;
        }
        .breadcrumb a:hover {
            color: #f0b90b;
        }
        .breadcrumb span {
            color: #f0b90b;
        }
        main {
            padding: 2rem 0 3rem;
        }
        .last-update {
            color: #9aa8b9;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a2f36;
            padding-bottom: 0.6rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .last-update i {
            color: #f0b90b;
        }
        .feature-image-wrap {
            margin: 1.8rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }
        .feature-image-wrap img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .section-card {
            background: #161a1f;
            border-radius: 16px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            border: 1px solid #2a2f36;
            transition: 0.2s;
        }
        .section-card:hover {
            border-color: #3d4550;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
        }
        .highlight-box {
            background: #1e2329;
            border-left: 5px solid #f0b90b;
            padding: 1.2rem 1.8rem;
            border-radius: 0 12px 12px 0;
            margin: 1.2rem 0;
        }
        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .insight-item {
            background: #1e2329;
            padding: 1.2rem 1.4rem;
            border-radius: 12px;
            border: 1px solid #2a2f36;
        }
        .insight-item i {
            color: #f0b90b;
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: #d4e0ed;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2f36;
            background: #0d0f12;
            color: #e8edf2;
            font-size: 1rem;
            transition: 0.2s;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #f0b90b;
            outline: none;
            box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.2);
        }
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        .btn {
            background: #f0b90b;
            color: #0d0f12;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn:hover {
            background: #ffd966;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 185, 11, 0.25);
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #f0b90b;
            color: #f0b90b;
        }
        .btn-outline:hover {
            background: #f0b90b;
            color: #0d0f12;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 4px;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #3d4550;
            transition: 0.15s;
            cursor: pointer;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f0b90b;
            text-shadow: 0 0 12px rgba(240, 185, 11, 0.3);
        }
        .comment-item {
            background: #1e2329;
            padding: 1rem 1.4rem;
            border-radius: 10px;
            margin-bottom: 0.8rem;
            border-left: 3px solid #f0b90b;
        }
        .comment-item strong {
            color: #f0b90b;
        }
        .comment-item .date {
            font-size: 0.8rem;
            color: #9aa8b9;
        }
        .links-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0.8rem;
            margin: 1rem 0;
        }
        .links-list a {
            background: #1e2329;
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 1px solid #2a2f36;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .links-list a:hover {
            border-color: #f0b90b;
            background: #232a32;
            text-decoration: none;
        }
        .links-list a i {
            color: #f0b90b;
            width: 20px;
            text-align: center;
        }
        friend-link {
            display: block;
            padding: 1.5rem 0 0.5rem;
        }
        friend-link a {
            display: inline-block;
            margin: 0.3rem 0.6rem 0.3rem 0;
            padding: 0.3rem 1rem;
            background: #1e2329;
            border-radius: 20px;
            border: 1px solid #2a2f36;
            font-size: 0.9rem;
        }
        friend-link a:hover {
            border-color: #f0b90b;
            background: #232a32;
        }
        footer {
            background: #0d0f12;
            border-top: 2px solid #1e2329;
            padding: 2rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .footer-copy {
            color: #9aa8b9;
            font-size: 0.85rem;
        }
        .footer-copy a {
            color: #f0b90b;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .section-card {
                padding: 1.2rem 1.2rem;
            }
            .header-inner {
                padding: 0 12px;
            }
            .nav-toggle {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                padding-top: 0.8rem;
                gap: 0.2rem;
            }
            nav.open {
                display: flex;
            }
            nav a {
                padding: 0.6rem 1rem;
                border-radius: 6px;
                background: #1e2329;
            }
            .breadcrumb {
                font-size: 0.75rem;
                padding: 0.4rem 12px;
                overflow-x: auto;
                white-space: nowrap;
            }
            .insight-grid {
                grid-template-columns: 1fr;
            }
            .links-list {
                grid-template-columns: 1fr;
            }
            .feature-image-wrap {
                margin: 1rem 0 1.5rem;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .my-logo {
                font-size: 1.4rem;
            }
            .my-logo small {
                font-size: 0.7rem;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0d0f12;
        }
        ::-webkit-scrollbar-thumb {
            background: #2a2f36;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #3d4550;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
            font-size: 0.95rem;
        }
        .stats-table th {
            background: #f0b90b;
            color: #0d0f12;
            padding: 0.6rem 0.8rem;
            text-align: left;
            font-weight: 700;
        }
        .stats-table td {
            padding: 0.5rem 0.8rem;
            border-bottom: 1px solid #2a2f36;
        }
        .stats-table tr:hover td {
            background: #1e2329;
        }
