/* 11pt site chrome — pt11-* 独立 class，来源 index.html */

/* Header - Fixed at Top */
        .pt11-hd {
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(15px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1100;
            border-bottom: 2px solid var(--primary-color);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            overflow: visible;
        }
        
        /* 仅 pt11-chrome 页面顶栏留白，与各页 inline body 规则无关 */
        body.pt11-chrome {
            padding-top: 110px !important;
        }
        
        .pt11-hd-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            gap: 1rem;
            position: relative;
        }
        
        /* Header汉堡按钮 */
        .pt11-hd-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.75rem;
            order: -1;
            min-width: 44px;
            min-height: 44px;
            touch-action: manipulation;
        }
        
        .pt11-hd-menu-btn .pt11-hd-burger {
            width: 28px;
            height: 22px;
        }
        
        .pt11-hd-menu-btn .pt11-hd-burger span {
            height: 3px;
        }
        
        .pt11-hd-menu-btn .pt11-hd-burger span:nth-child(1) {
            top: 0px;
        }
        
        .pt11-hd-menu-btn .pt11-hd-burger span:nth-child(2) {
            top: 9px;
        }
        
        .pt11-hd-menu-btn .pt11-hd-burger span:nth-child(3) {
            top: 18px;
        }
        
        .pt11-hd-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .pt11-hd-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .pt11-hd-logo:hover {
            transform: scale(1.05);
        }
        
        .pt11-hd-title h1 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }
        
        .pt11-hd-badge {
            font-size: 0.75rem;
            color: var(--success-color);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .pt11-hd-badge-icon {
            width: 16px;
            height: 16px;
            background: var(--success-color);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
        }
        
        .pt11-hd-actions {
            display: flex;
            gap: 1rem;
        }
        
        .pt11-hd-btn {
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .pt11-hd-btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ffed4e 100%);
            color: var(--secondary-color);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        
        .pt11-hd-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
        }
        
        .pt11-hd-btn-outline {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--primary-color);
        }
        
        .pt11-hd-btn-outline:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
        }
        
        /* Navigation */
        .pt11-nav {
            background: rgba(22, 33, 62, 0.9);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            backdrop-filter: blur(10px);
        }
        
        .pt11-nav .pt11-wrap {
            display: flex;
            justify-content: flex-start;
        }
        
        /* 汉堡菜单按钮 - 默认隐藏 */
        .pt11-hd-menu-btn-alt {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
        
        .pt11-hd-burger {
            width: 30px;
            height: 24px;
            position: relative;
            transform: rotate(0deg);
            transition: 0.5s ease-in-out;
            cursor: pointer;
        }
        
        .pt11-hd-burger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--primary-color);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }
        
        .pt11-hd-burger span:nth-child(1) {
            top: 0px;
        }
        
        .pt11-hd-burger span:nth-child(2) {
            top: 10px;
        }
        
        .pt11-hd-burger span:nth-child(3) {
            top: 20px;
        }
        
        /* 汉堡菜单激活状态 */
        .pt11-hd-burger.pt11-is-open span:nth-child(1) {
            top: 10px;
            transform: rotate(135deg);
        }
        
        .pt11-hd-burger.pt11-is-open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .pt11-hd-burger.pt11-is-open span:nth-child(3) {
            top: 10px;
            transform: rotate(-135deg);
        }
        
        /* 桌面端导航 */
        .pt11-nav-list {
            display: flex;
            list-style: none;
            justify-content: flex-start;
            flex-wrap: nowrap;
            gap: 0.5rem;
            padding: 0.75rem 0;
            min-width: min-content;
        }
        
        .pt11-nav-list li {
            flex-shrink: 0;
        }
        
        .pt11-nav-list li a {
            color: var(--text-light);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: var(--transition);
            font-size: 0.85rem;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .pt11-nav-list li a:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .pt11-nav-list li a:active {
            transform: translateY(0);
        }
        
        /* 桌面端导航样式 */
        @media (min-width: 769px) {
            .pt11-nav {
                overflow: visible;
            }
            
            .pt11-nav .pt11-wrap {
                justify-content: flex-start;
            }
            
            .pt11-nav-list {
                position: static;
                width: 100%;
                max-width: 100%;
                height: auto;
                background: none;
                flex-direction: row;
                justify-content: flex-start;
                align-items: center;
                padding: 1rem 0;
                overflow: visible;
                box-shadow: none;
                flex-wrap: wrap;
                gap: 0.4rem 0.8rem;
            }
            
            .pt11-nav-list li {
                border-bottom: none;
                opacity: 1;
                animation: none;
                flex-shrink: 0;
            }
            
            .pt11-nav-list li a {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
                border-radius: 8px;
                white-space: nowrap;
                position: relative;
            }
            
            .pt11-nav-list li a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 2px;
                background: var(--primary-color);
                transition: all 0.3s ease;
                transform: translateX(-50%);
            }
            
            .pt11-nav-list li a:hover {
                padding-left: 1.2rem;
                background: rgba(255, 215, 0, 0.15);
            }
            
            .pt11-nav-list li a:hover::after {
                width: 80%;
            }
            
            /* 隐藏遮罩层和汉堡按钮 */
            .pt11-hd-menu-btn-alt,
            .pt11-nav-overlay,
            .pt11-hd-menu-btn {
                display: none;
            }
            
            /* 桌面端header样式 */
            .pt11-hd-row {
                padding: 1rem 0;
            }
            
            .pt11-hd-logo {
                width: 80px;
                height: 80px;
            }
            
            /* 桌面端Footer优化 */
            .sidebar_bfe2 {
                padding-top: 1rem;
                margin-top: 0.5rem;
            }
            
            .sidebar_bfe2 p {
                margin: 0.25rem 0;
                font-size: 0.8rem;
            }
        }
        
        /* 桌面端滚动条 */
        @media (min-width: 769px) {
            .pt11-nav::-webkit-scrollbar {
                height: 4px;
            }
            
            .pt11-nav::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.2);
            }
            
            .pt11-nav::-webkit-scrollbar-thumb {
                background: rgba(255, 215, 0, 0.5);
                border-radius: 2px;
            }
            
            .pt11-nav::-webkit-scrollbar-thumb:hover {
                background: var(--primary-color);
            }
        }
        
        /* Hero Section - LCP Optimized */
        .slider_efa1 {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%),
                        url('/static/kdtvry/logo.png') center/cover;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .slider_efa1::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .aside_628a {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .slider_efa1 h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        
        .copper-18b6 {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        /* Hero Logo 样式 */
        .thumbnail-north-9641 {
            margin: 2rem auto;
            text-align: center;
        }
        
        .thumbnail-north-9641 img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .thumbnail-north-9641 img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 48px rgba(255, 215, 0, 0.5);
        }
        
        .last-04cb {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 2rem 0;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            backdrop-filter: blur(5px);
        }
        
        .copper-bd0d {
            text-align: center;
        }
        
        .notification_huge_9f3c {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .disabled-slow-b04b {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        .grid_easy_23ff {
            color: var(--text-light);
            font-size: 0.85rem;
        }
        
        /* Author Byline Section - E-E-A-T 2026 Critical */
        .wood_23e7 {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            margin: 3rem 0;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-color);
        }
        
        .iron_8c75 {
            display: flex;
            align-items: center;
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .dirty-84d2 {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid var(--primary-color);
            object-fit: cover;
        }
        
        .short_3732 {
            flex: 1;
        }
        
        .notification-38d1 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .pro_0562 {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }
        
        .message_a82a {
            display: flex;
            gap: 1rem;
            margin-top: 0.75rem;
        }
        
        .heading-focused-e828 {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .heading-focused-e828:hover {
            text-decoration: underline;
        }
        
        /* Author Logos - 3张240x240 */
        .shade_8f49 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(255, 215, 0, 0.2);
            flex-wrap: wrap;
        }
        
        .nav_3255 {
            text-align: center;
            transition: var(--transition);
        }
        
        .nav_3255 img {
            width: 240px;
            height: 240px;
            object-fit: contain;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border: 2px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .nav_3255:hover img {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--primary-color);
            box-shadow: 0 12px 32px rgba(255, 215, 0, 0.4);
        }
        
        .paragraph-dynamic-175a {
            margin-top: 1rem;
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.4;
        }
        
        /* Feature Cards Grid */
        .aside-red-183d {
            padding: 4rem 0;
            width: 100%;
        }
        
        /* Global Section Styles */
        section {
            width: 100%;
            overflow-x: hidden;
        }
        
        .sidebar-old-9331 {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .detail_ff14 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .footer.pt11-ft-north-a8af {
            color: var(--text-light);
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .container-copper-e07f {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
            width: 100%;
        }
        
        .dirty-c40f {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 2rem;
            transition: var(--transition);
            border: 1px solid rgba(255, 215, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .dirty-c40f::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s;
        }
        
        .dirty-c40f:hover::before {
            opacity: 1;
        }
        
        .dirty-c40f:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            border-color: var(--primary-color);
        }
        
        .slider_purple_63f2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        ..pt11-nav-hard-ed32 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .slider-b56f {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .shade-0d24 {
            list-style: none;
            color: var(--text-light);
        }
        
        .shade-0d24 li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .shade-0d24 li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: bold;
        }
        
        /* RTP Table Section */
        .banner_south_42a9 {
            background: rgba(255, 255, 255, 0.03);
            padding: 4rem 0;
            margin: 3rem 0;
            width: 100%;
        }
        
        .gradient_motion_011d {
            overflow-x: auto;
            margin: 2rem 0;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(26, 26, 46, 0.8);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        thead {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
        }
        
        th {
            padding: 1.25rem;
            text-align: left;
            color: var(--primary-color);
            font-weight: 600;
            border-bottom: 2px solid var(--primary-color);
        }
        
        td {
            padding: 1rem 1.25rem;
            color: var(--text-light);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        tbody tr:hover {
            background: rgba(255, 215, 0, 0.05);
        }
        
        .last_93e8 {
            color: var(--success-color);
            font-weight: 600;
        }
        
        .dropdown_over_271e {
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .primary-large-6d3e {
            background: #D32F2F;
            color: white;
        }
        
        .grid-fresh-627b {
            background: #FF9800;
            color: white;
        }
        
        .inner_ac9b {
            background: #4CAF50;
            color: white;
        }
        
        /* Testimonials Section */
        .stone_e00a {
            padding: 4rem 0;
        }
        
        .border-dynamic-a89a {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
            width: 100%;
        }
        
        .column_orange_f1ec {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
            border-left: 5px solid var(--success-color);
            padding: 2rem;
            border-radius: var(--border-radius);
        }
        
        .chip_7b02 {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 1rem;
        }
        
        .bronze-b2d6 {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .status-6ac5 {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }
        
        .inner_f0ad {
            background: var(--success-color);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .image-3d54 {
            font-size: 2rem;
            color: var(--text-light);
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .out_5f76 {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .image_9170 {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            font-size: 0.9rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* FAQ Section - Schema Optimized */
        .backdrop-a21d {
            padding: 4rem 0;
        }
        
        .icon_5328 {
            max-width: 900px;
            margin: 2rem auto;
        }
        
        details {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 215, 0, 0.2);
            overflow: hidden;
        }
        
        summary {
            padding: 1.5rem;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        summary:hover {
            background: rgba(255, 215, 0, 0.05);
        }
        
        summary::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s;
        }
        
        details[open] summary::after {
            transform: rotate(45deg);
        }
        
        .in_c821 {
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: var(--text-light);
            line-height: 1.8;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .in_c821 strong {
            color: var(--primary-color);
        }
        
        /* Statistics Section */
        .sort_a79e {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
            padding: 4rem 0;
            border-top: 2px solid var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
        }
        
        .tertiary-06aa {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .logo_north_f8b6 {
            text-align: center;
            padding: 2rem;
            background: rgba(26, 26, 46, 0.6);
            border-radius: var(--border-radius);
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        
        .red_0022 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .left-e0df {
            color: var(--text-light);
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .module-stale-20b7 {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
            margin-top: 0.3rem;
        }
        
        /* Responsible Gaming Section */
        .panel_2fb1 {
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
            padding: 4rem 0;
            border-radius: var(--border-radius);
            margin: 3rem 0;
        }
        
        .stone_7f5d {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .preview_fd77 {
            background: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 5px solid #FF9800;
        }
        
        .blue-e8c7 {
            color: #FF9800;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        .row_hovered_8635 {
            list-style: none;
            color: var(--text-light);
            line-height: 2;
        }
        
        .row_hovered_8635 li::before {
            content: '⚠️';
            margin-right: 0.5rem;
        }
        
        .iron_017d {
            background: rgba(244, 67, 54, 0.2);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border: 2px solid #F44336;
            margin-top: 2rem;
        }
        
        .sidebar-top-125b {
            color: #F44336;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .info-green-523e {
            color: var(--text-light);
            line-height: 1.8;
        }

/* Footer - Compact Design */
        footer.pt11-ft {
            background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(16, 16, 32, 0.98) 100%);
            padding: 2.5rem 0 1rem;
            border-top: 2px solid var(--primary-color);
            width: 100%;
        }
        
        /* 桌面端紧凑布局 */
        @media (min-width: 769px) {
            .active_7a96 {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .pagination_1734:first-child {
                grid-column: 1;
            }
            
            .pagination_1734 h3 {
                font-size: 1rem;
                margin-bottom: 0.75rem;
            }
            
            .pagination_1734 p {
                font-size: 0.85rem;
                line-height: 1.6;
            }
            
            .complex_eb3b {
                font-size: 0.85rem;
            }
            
            .complex_eb3b li {
                margin-bottom: 0.4rem;
            }
            
            .menu_44c7 {
                margin: 1rem 0;
                gap: 1rem;
            }
            
            .article-warm-c903 {
                padding: 0.75rem;
            }
        }
        
        .pagination_1734 h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .complex_eb3b {
            list-style: none;
        }
        
        .complex_eb3b li {
            margin-bottom: 0.5rem;
        }
        
        .complex_eb3b a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        
        .complex_eb3b a:hover {
            color: var(--primary-color);
            transform: translateX(3px);
        }
        
        .sidebar_bfe2 {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }
        
        .sidebar_bfe2 p {
            margin: 0.5rem 0;
            line-height: 1.6;
        }
        
        .menu_44c7 {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin: 1.5rem 0;
        }
        
        .article-warm-c903 {
            text-align: center;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: var(--transition);
        }
        
        .article-warm-c903:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Footer额外样式优化 */
        .pagination_1734:first-child h3 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .pagination_1734:first-child p {
            max-width: 350px;
        }
        
        /* 桌面端Footer链接列表优化 */
        @media (min-width: 769px) {
            .complex_eb3b li a::before {
                content: '›';
                color: var(--primary-color);
                margin-right: 0.3rem;
                transition: var(--transition);
            }
            
            .complex_eb3b li a:hover::before {
                margin-right: 0.5rem;
            }
        }

/* Mobile Optimization - Core Web Vitals */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .pt11-nav {
                display: block !important;
                visibility: visible !important;
                position: static;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                transform: none !important;
            }
            
            /* 显示Header中的汉堡按钮 */
            .pt11-hd-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                z-index: 1101;
                flex-shrink: 0;
                pointer-events: auto;
                padding: 0.5rem;
                margin: 0;
                min-width: 44px;
                min-height: 44px;
            }
            
            .pt11-hd-row {
                flex-wrap: nowrap;
                justify-content: space-between;
                text-align: left;
                padding: 0.5rem 0;
                overflow: visible;
                position: relative;
            }
            
            .pt11-hd-brand {
                flex-direction: row;
                align-items: center;
                text-align: left;
                gap: 0.75rem;
                flex: 1;
                min-width: 0;
            }
            
            .pt11-hd-logo {
                width: 50px;
                height: 50px;
                flex-shrink: 0;
            }
            
            .pt11-hd-title {
                text-align: left;
                flex: 1;
                min-width: 0;
            }
            
            .pt11-hd-title h1 {
                font-size: 1.1rem;
                line-height: 1.2;
            }
            
            .pt11-hd-badge {
                justify-content: flex-start;
                font-size: 0.65rem;
                flex-wrap: wrap;
            }
            
            .pt11-hd-actions {
                flex-direction: row;
                gap: 0.5rem;
                flex-shrink: 0;
            }
            
            .pt11-hd-btn {
                width: auto;
                padding: 0.5rem 0.75rem;
                font-size: 0.8rem;
                white-space: nowrap;
            }
            
            /* 移动端隐藏导航栏中的汉堡菜单按钮（已移到header） */
            .pt11-hd-menu-btn-alt {
                display: none;
            }
            
            /* 移动端菜单默认隐藏 */
            .pt11-nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                height: 100dvh;
                max-height: 100vh;
                max-height: 100dvh;
                background: linear-gradient(180deg, rgba(22, 33, 62, 0.98) 0%, rgba(26, 26, 46, 0.98) 100%);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                flex-direction: column;
                flex-wrap: nowrap;
                justify-content: flex-start;
                align-items: stretch;
                padding: 70px 0 90px 0;
                gap: 0;
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
                z-index: 1200;
                display: flex !important;
            }
            
            /* 菜单激活状态 - 增强背景确保可见 */
            .pt11-nav-list.pt11-is-open {
                right: 0 !important;
                background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%) !important;
            }
            
            /* 移动端菜单项样式 */
            .pt11-nav-list li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 215, 0, 0.1);
                list-style: none;
                opacity: 1 !important;
                flex-shrink: 0;
            }
            
            /* 确保菜单标题始终可见 */
            .pt11-nav-list li:first-child {
                background: transparent !important;
            }
            
            .pt11-nav-list li:first-child div {
                padding: 1rem 1.5rem;
            }
            
            /* 菜单关闭按钮样式 */
            .pt11-nav-list button {
                background: none;
                border: none;
                color: var(--primary-color);
                font-size: 1.5rem;
                cursor: pointer;
                padding: 0;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.3s ease;
            }
            
            .pt11-nav-list button:hover {
                transform: rotate(90deg);
            }
            
            .pt11-nav-list li a {
                width: 100%;
                padding: 0.7rem 1.5rem;
                font-size: 0.95rem;
                border-radius: 0;
                justify-content: flex-start;
                gap: 0.8rem;
                transition: all 0.3s ease;
                color: #ffffff !important;
                display: flex;
                align-items: center;
                text-decoration: none;
            }
            
            /* 确保"Menu"标题文字可见 */
            .pt11-nav-list li:first-child span {
                color: var(--primary-color) !important;
            }
            
            .pt11-nav-list li a:hover,
            .pt11-nav-list li a:active {
                background: rgba(255, 215, 0, 0.15);
                padding-left: 2rem;
                transform: none;
            }
            
            /* 遮罩层 */
            .pt11-nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.7);
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.4s ease, visibility 0.4s ease;
                z-index: 1150;
            }
            
            .pt11-nav-overlay.pt11-is-open {
                opacity: 1;
                visibility: visible;
            }
            
            /* 菜单滚动条样式 */
            .pt11-nav-list::-webkit-scrollbar {
                width: 6px;
            }
            
            .pt11-nav-list::-webkit-scrollbar-track {
                background: rgba(0, 0, 0, 0.2);
            }
            
            .pt11-nav-list::-webkit-scrollbar-thumb {
                background: rgba(255, 215, 0, 0.5);
                border-radius: 3px;
            }


/* 顶栏/栏目/页脚：直接复用各页 .tall-3bbb，与 fortune 面包屑同宽 */
.pt11-hd > .pt11-wrap.tall-3bbb,
.pt11-nav > .pt11-wrap.tall-3bbb,
.pt11-ft > .pt11-wrap.tall-3bbb {
    width: 100%;
    box-sizing: border-box;
}
.pt11-nav .pt11-wrap.tall-3bbb {
    display: flex;
    justify-content: flex-start !important;
}
@media (min-width: 769px) {
    .pt11-nav-list {
        justify-content: flex-start !important;
    }
}
@media (max-width: 768px) {
    .pt11-hd-menu-btn {
        margin: 0 !important;
        padding: 0.5rem 0 !important;
    }
    .pt11-hd-actions {
        margin-right: 0 !important;
    }
}

/* pt11 footer layout（独立 class，不受各页 inline 影响） */
.pt11-ft-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
    padding: 3rem 0 2rem 0;
}
.pt11-ft-title { color: var(--primary-color); font-size: 1.3rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.pt11-ft-desc { color: rgba(255, 255, 255, 0.8); line-height: 1.7; font-size: 0.9rem; margin-bottom: 1.5rem; }
.pt11-ft-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.pt11-ft-badge { padding: 0.8rem 1.2rem; border-radius: 8px; text-align: center; min-width: 100px; }
.pt11-ft-badge-ecogra { background: rgba(76, 175, 80, 0.15); border: 1px solid rgba(76, 175, 80, 0.4); }
.pt11-ft-badge-ecogra strong { color: #4CAF50; font-size: 0.85rem; }
.pt11-ft-badge-ssl { background: rgba(255, 193, 7, 0.15); border: 1px solid rgba(255, 193, 7, 0.4); }
.pt11-ft-badge-ssl strong { color: #FFC107; font-size: 0.85rem; }
.pt11-ft-badge-lgpd { background: rgba(33, 150, 243, 0.15); border: 1px solid rgba(33, 150, 243, 0.4); }
.pt11-ft-badge-lgpd strong { color: #2196F3; font-size: 0.85rem; }
.pt11-ft-badge-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.pt11-ft-col-title { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 1.2rem; font-weight: 700; }
.pt11-ft-links { list-style: none; padding: 0; margin: 0; }
.pt11-ft-links li { margin-bottom: 0.6rem; }
.pt11-ft-links a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color 0.3s; display: block; }
.pt11-ft-links a:hover { color: var(--primary-color); }
.pt11-ft-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1.5rem 0; text-align: center; }
.pt11-ft-copy { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin-bottom: 0.5rem; }
.pt11-ft-meta { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; margin: 0; }
@media (max-width: 768px) {
    .pt11-ft-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0 1rem 0; }
    .pt11-nav-menu-head { display: none !important; }
}
@media (min-width: 769px) {
    .pt11-nav-menu-head { display: none !important; }
    .pt11-nav-overlay { display: none !important; }
}

/* === pt11 公共头部：只用 class，与各页 inline style 无关 === */
body.pt11-chrome { padding-top: 110px !important; }
@media (max-width: 768px) { body.pt11-chrome { padding-top: 70px !important; } }
.pt11-hd { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 1100 !important; }
.pt11-nav { position: relative !important; }

/* === pt11 隔离：禁止各页 inline 的 h1/img/a 通用规则渗入顶栏 === */
.pt11-hd img.pt11-hd-logo,
.pt11-hd .pt11-hd-logo {
    width: 80px !important;
    height: 80px !important;
    max-width: 80px !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
    image-rendering: auto !important;
    object-fit: contain !important;
}
.pt11-hd .pt11-hd-title h1,
.pt11-hd h1 {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    margin: 0 0 0.25rem 0 !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}
.pt11-hd .pt11-hd-btn {
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    max-width: none !important;
    transform: none !important;
}
.pt11-nav .pt11-nav-list li a {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    word-break: normal !important;
}
@media (max-width: 768px) {
    .pt11-hd img.pt11-hd-logo,
    .pt11-hd .pt11-hd-logo {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
    }
    .pt11-hd .pt11-hd-title h1,
    .pt11-hd h1 {
        font-size: 1.1rem !important;
    }
}
