        *,
        *::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, 'Helvetica Neue', sans-serif;
            background: #f4f7fb;
            color: #1a2634;
            line-height: 1.75;
            padding: 0;
            margin: 0;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #0055a5;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #ff6b35;
            text-decoration: underline;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(145deg, #0a1f3b 0%, #0f2c4e 100%);
            color: #fff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .my-logo {
            font-size: 1.9rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, #f9d423, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 12px rgba(255, 107, 53, 0.25);
            transition: transform 0.2s;
            display: inline-block;
        }
        .my-logo:hover {
            transform: scale(1.02);
        }
        .my-logo a {
            color: inherit;
            text-decoration: none;
            -webkit-text-fill-color: transparent;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .main-nav {
            display: flex;
            gap: 8px 16px;
            flex-wrap: wrap;
            align-items: center;
        }
        .main-nav a {
            color: #e0e9f5;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.25s ease;
            position: relative;
        }
        .main-nav a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            text-decoration: none;
        }
        .main-nav a i {
            margin-right: 6px;
            font-size: 0.85rem;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-wrap {
            background: #e9eef3;
            padding: 10px 0;
            border-bottom: 1px solid #d0d9e3;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 12px;
            font-size: 0.9rem;
            color: #3e5265;
        }
        .breadcrumb a {
            color: #0055a5;
        }
        .breadcrumb i {
            font-size: 0.7rem;
            color: #7f8fa3;
        }
        .breadcrumb .current {
            color: #1a2634;
            font-weight: 600;
        }
        .hero {
            background: linear-gradient(135deg, #0f2c4e 0%, #1a3f64 100%);
            color: #fff;
            padding: 48px 0 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "🎰";
            font-size: 14rem;
            position: absolute;
            right: -4%;
            bottom: -20%;
            opacity: 0.06;
            pointer-events: none;
            transform: rotate(12deg);
        }
        .hero h1 {
            font-size: 2.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 12px;
            position: relative;
        }
        .hero h1 i {
            color: #f9d423;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.88;
            max-width: 720px;
            margin: 0 auto 20px;
        }
        .hero .update-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            padding: 6px 22px;
            border-radius: 40px;
            font-size: 0.9rem;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .hero .update-badge i {
            color: #f9d423;
            margin-right: 8px;
        }
        .search-section {
            margin: 32px 0 24px;
        }
        .search-form {
            display: flex;
            max-width: 580px;
            margin: 0 auto;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
            background: #fff;
            border: 1px solid #dce3ec;
            transition: box-shadow 0.3s;
        }
        .search-form:focus-within {
            box-shadow: 0 8px 32px rgba(0, 85, 165, 0.18);
            border-color: #0055a5;
        }
        .search-form input {
            flex: 1;
            padding: 16px 22px;
            border: none;
            font-size: 1rem;
            background: transparent;
            outline: none;
            color: #1a2634;
        }
        .search-form input::placeholder {
            color: #8a9aa8;
        }
        .search-form button {
            background: #0055a5;
            color: #fff;
            border: none;
            padding: 0 30px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.25s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .search-form button:hover {
            background: #003d7a;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            margin: 40px 0 50px;
        }
        .content-area {
            min-width: 0;
        }
        .sidebar {
            min-width: 0;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.25;
            color: #0a1f3b;
        }
        h2 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-top: 2.2rem;
            margin-bottom: 0.8rem;
            color: #0f2c4e;
            border-bottom: 3px solid #e9eef3;
            padding-bottom: 6px;
        }
        h2 i {
            color: #ff6b35;
            margin-right: 10px;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-top: 1.8rem;
            margin-bottom: 0.5rem;
            color: #1a3f64;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-top: 1.2rem;
            margin-bottom: 0.3rem;
            color: #2a4f6e;
        }
        p {
            margin-bottom: 1.2rem;
        }
        .content-area ul,
        .content-area ol {
            margin: 0.8rem 0 1.4rem 1.8rem;
        }
        .content-area li {
            margin-bottom: 0.5rem;
        }
        .highlight-box {
            background: #eef4fa;
            border-left: 6px solid #ff6b35;
            padding: 20px 26px;
            border-radius: 12px;
            margin: 1.6rem 0;
        }
        .highlight-box strong {
            color: #0a1f3b;
        }
        .data-table-wrap {
            overflow-x: auto;
            margin: 1.6rem 0;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }
        .data-table th {
            background: #0f2c4e;
            color: #fff;
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
        }
        .data-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #e9eef3;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table tr:hover td {
            background: #f4f8fe;
        }
        .btn {
            display: inline-block;
            background: #ff6b35;
            color: #fff;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 600;
            transition: all 0.25s;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }
        .btn:hover {
            background: #e5551a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
            text-decoration: none;
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            border: 2px solid #0055a5;
            color: #0055a5;
        }
        .btn-outline:hover {
            background: #0055a5;
            color: #fff;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }
        .featured-image figcaption {
            padding: 14px 18px;
            background: #eef4fa;
            font-size: 0.9rem;
            color: #3e5265;
            text-align: center;
        }
        .sidebar-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px 20px;
            margin-bottom: 28px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9eef3;
        }
        .sidebar-card h3 {
            font-size: 1.2rem;
            margin-top: 0;
            border-bottom: 2px solid #e9eef3;
            padding-bottom: 10px;
            margin-bottom: 14px;
        }
        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .sidebar-card li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f3f8;
        }
        .sidebar-card li:last-child {
            border-bottom: none;
        }
        .sidebar-card li a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .sidebar-card li a i {
            color: #ff6b35;
            width: 18px;
            text-align: center;
        }
        .comment-section {
            margin: 3rem 0 2rem;
            background: #fff;
            border-radius: 20px;
            padding: 30px 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9eef3;
        }
        .comment-section h2 {
            margin-top: 0;
            border-bottom: none;
        }
        .comment-form textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #dce3ec;
            border-radius: 14px;
            font-size: 1rem;
            font-family: inherit;
            resize: vertical;
            min-height: 110px;
            transition: border-color 0.3s;
            background: #fafcfe;
        }
        .comment-form textarea:focus {
            border-color: #0055a5;
            outline: none;
        }
        .comment-form .form-row {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 14px;
            align-items: center;
        }
        .comment-form .form-row input {
            flex: 1;
            min-width: 180px;
            padding: 12px 16px;
            border: 2px solid #dce3ec;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fafcfe;
        }
        .comment-form .form-row input:focus {
            border-color: #0055a5;
            outline: none;
        }
        .star-rating {
            display: flex;
            gap: 6px;
            direction: rtl;
            font-size: 1.8rem;
            margin: 8px 0 12px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            color: #d0d9e3;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #f9d423;
        }
        .rating-display {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin: 10px 0 16px;
        }
        .rating-display .stars-outer {
            position: relative;
            display: inline-block;
            font-size: 1.6rem;
            color: #d0d9e3;
            letter-spacing: 4px;
        }
        .rating-display .stars-outer::before {
            content: "★★★★★";
        }
        .rating-display .stars-inner {
            position: absolute;
            top: 0;
            left: 0;
            white-space: nowrap;
            overflow: hidden;
            color: #f9d423;
            width: 0%;
        }
        .rating-display .stars-inner::before {
            content: "★★★★★";
        }
        friend-link {
            display: block;
            padding: 24px 0 10px;
            border-top: 1px solid #dce3ec;
            margin-top: 30px;
        }
        friend-link ul {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 28px;
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }
        friend-link li a {
            font-size: 0.95rem;
            color: #3e5265;
        }
        friend-link li a:hover {
            color: #ff6b35;
        }
        .site-footer {
            background: #0a1f3b;
            color: #b6c9db;
            padding: 36px 0 28px;
            margin-top: 50px;
            font-size: 0.9rem;
        }
        .site-footer .copyright {
            text-align: center;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 18px;
            color: #7f96ac;
        }
        .site-footer .copyright i {
            color: #f9d423;
        }
        @media (max-width: 992px) {
            .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .sidebar {
                order: 2;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #0f2c4e;
                padding: 16px 12px;
                border-radius: 16px;
                margin-top: 10px;
                gap: 4px;
            }
            .main-nav.open {
                display: flex;
            }
            .main-nav a {
                padding: 12px 16px;
                border-radius: 10px;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .search-form {
                flex-direction: column;
                border-radius: 20px;
            }
            .search-form input {
                padding: 14px 18px;
            }
            .search-form button {
                padding: 14px 18px;
                justify-content: center;
            }
            .comment-section {
                padding: 20px 18px;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .data-table th,
            .data-table td {
                padding: 10px 12px;
                font-size: 0.85rem;
            }
            .breadcrumb {
                font-size: 0.8rem;
                gap: 4px 8px;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .hero h1 {
                font-size: 1.35rem;
            }
            .my-logo {
                font-size: 1.5rem;
            }
            .star-rating {
                font-size: 1.5rem;
            }
        }
        .tag {
            display: inline-block;
            background: #eef4fa;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            color: #2a4f6e;
            font-weight: 500;
        }
        .text-muted {
            color: #5f7487;
        }
        .mt-1 {
            margin-top: 1rem;
        }
        .mb-1 {
            margin-bottom: 1rem;
        }
        .flex-center {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .gap-2 {
            gap: 12px;
        }
        .anchor-offset {
            scroll-margin-top: 100px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin: 1.6rem 0;
        }
        .stat-card {
            background: #fff;
            padding: 18px 14px;
            border-radius: 14px;
            text-align: center;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            border: 1px solid #e9eef3;
        }
        .stat-card .num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0f2c4e;
            display: block;
        }
        .stat-card .label {
            font-size: 0.85rem;
            color: #5f7487;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
