:root {
    --primary-color: #7C3AED;
    --primary-light: #A78BFA;
    --secondary-color: #5B21B6;
    --accent-color: #06B6D4;
    --accent-warm: #F59E0B;
    --text-color: #1E293B;
    --text-muted: #64748B;
    --light-bg: #F8FAFC;
    --surface: #FFFFFF;
    --dark-bg: #1E1B4B;
    --dark-surface: #312E81;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-600: #64748B;
    --gray-700: #475569;
    --gray-800: #334155;
    --gray-900: #0F172A;
    --gradient-main: linear-gradient(135deg, #1E1B4B 0%, #5B21B6 50%, #7C3AED 100%);
    --gradient-accent: linear-gradient(135deg, #06B6D4, #7C3AED);
    --shadow-sm: 0 1px 3px rgba(30, 27, 75, 0.08);
    --shadow-md: 0 4px 20px rgba(30, 27, 75, 0.1);
    --shadow-lg: 0 12px 40px rgba(30, 27, 75, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --section-padding-y: 4rem;
    --card-padding: 1.5rem;
    --card-border: 1px solid var(--gray-200);
    --transition-speed: 0.3s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: var(--surface);
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== 通用区块标题 ===== */
.ze968esection-header {
    max-width: 680px;
    margin: 0 auto 2.5rem;
    padding: 0 0.25rem;
}

.ze968esection-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.ze968esection-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ze968esection-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
    line-height: 1.75;
}

/* ===== 导航栏 ===== */
.ze968enavbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ze968enavbar-brand img {
    height: 42px;
}

.ze968enav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.45rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition-speed) var(--transition-easing);
}

.ze968enav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(124, 58, 237, 0.06);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-collapse {
    background: white;
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        padding: 0;
    }
}

/* ===== 英雄区域 ===== */
.ze968ehero-section {
    background: var(--gradient-main);
    color: white;
    padding: 4rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}

.ze968ehero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ze968ehero-content {
    position: relative;
    z-index: 2;
}

.ze968ehero-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.ze968ehero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.ze968ehero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    opacity: 0.92;
    line-height: 1.7;
}

.ze968ehero-desc {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.ze968ehero-desc strong {
    color: var(--accent-color);
    font-weight: 600;
}

.ze968ehero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.ze968ehero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ze968ehero-tags i {
    color: var(--accent-color);
}

.ze968ehero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.ze968ehero-buttons .btn {
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all var(--transition-speed) var(--transition-easing);
    display: inline-flex;
    align-items: center;
}

.ze968ebtn-register {
    background: white !important;
    color: var(--secondary-color) !important;
}

.ze968ebtn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: white !important;
}

.ze968ehero-buttons .btn-primary {
    background: var(--gradient-accent) !important;
    color: white !important;
}

.ze968ehero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.35);
}

/* 英雄图片区 */
.ze968ehero-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    z-index: 2;
    max-width: 100%;
    min-height: 280px;
}

.ze968ehero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.ze968ehero-image {
    width: 100%;
    max-width: 280px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.ze968ehero-image-shadow {
    display: none;
}

.ze968ehero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float-card 5s ease-in-out infinite;
}

.ze968ehero-float-card i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.ze968ehero-float-card strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.ze968ehero-float-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.ze968efloat-1 {
    top: 8%;
    left: 2%;
    animation-delay: 0s;
}

.ze968efloat-2 {
    bottom: 8%;
    right: 2%;
    animation-delay: 2s;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .ze968ehero-float-card {
        display: none;
    }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== 平台介绍 ===== */
.ze968eabout-section {
    padding: var(--section-padding-y) 0;
    background: var(--light-bg);
    overflow-x: clip;
}

.ze968eabout-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.ze968epanel-card {
    background: white;
    border: var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--shadow-sm);
    height: 100%;
    justify-content: center;
}

.ze968eabout-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-width: 0;
}

.ze968eabout-item > div:last-child {
    min-width: 0;
    flex: 1;
}

.ze968eabout-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.ze968eabout-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--gray-900);
}

.ze968eabout-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

.ze968eabout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    min-width: 0;
    height: 100%;
}

.ze968eabout-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--shadow-sm);
    border: var(--card-border);
    transition: all var(--transition-speed) var(--transition-easing);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ze968eabout-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.2);
}

.ze968eabout-card.ze968espan-2 {
    grid-column: span 2;
}

.ze968eabout-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.ze968eabout-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--gray-900);
}

.ze968eabout-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== Bento 核心优势 ===== */
.ze968efeatures-section {
    padding: var(--section-padding-y) 0;
    background: white;
    overflow-x: clip;
}

.ze968ebento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    align-items: stretch;
}

.ze968ebento-item {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    border: var(--card-border);
    transition: all var(--transition-speed) var(--transition-easing);
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ze968ebento-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.ze968ebento-wide {
    grid-column: span 2;
}

.ze968ebento-icon {
    width: 52px;
    height: 52px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.ze968ebento-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--gray-900);
}

.ze968ebento-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ===== 统计数据 ===== */
.ze968estats-section {
    background: var(--dark-bg);
    color: white;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.ze968estats-row {
    align-items: stretch;
}

.ze968estats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.ze968estats-intro {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.ze968estats-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ze968estats-intro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.ze968estat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    transition: all var(--transition-speed) var(--transition-easing);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    height: 100%;
}

.ze968estat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.ze968estat-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.ze968estat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    word-break: keep-all;
}

.ze968estat-label {
    font-size: 0.92rem;
    opacity: 0.8;
}

/* ===== 下载区域 ===== */
.ze968edownload-section {
    padding: var(--section-padding-y) 0;
    background: var(--light-bg);
    overflow-x: clip;
}

.ze968edownload-row {
    align-items: stretch;
}

.ze968edownload-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    box-shadow: var(--shadow-sm);
    border: var(--card-border);
    transition: all var(--transition-speed) var(--transition-easing);
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.ze968edownload-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.2);
}

.ze968edownload-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    min-width: 0;
}

.ze968edownload-card-head > div:last-child {
    min-width: 0;
    flex: 1;
}

.ze968edownload-card-head h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: var(--gray-900);
}

.ze968ecard-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.ze968eplatform-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ze968eios-icon {
    background: linear-gradient(135deg, #1a1a2e, #4a4a6a);
    color: white;
}

.ze968eandroid-icon {
    background: linear-gradient(135deg, #3DDC84, #2BB673);
    color: white;
}

.ze968epc-icon {
    background: linear-gradient(135deg, #0078D4, #005A9E);
    color: white;
}

.ze968edownload-info {
    background: var(--gray-100);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    flex: 1 1 auto;
    margin-bottom: 1.25rem;
}

.ze968einfo-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
}

.ze968einfo-item:last-child {
    margin-bottom: 0;
}

.ze968einfo-item i {
    color: var(--primary-color);
    margin-right: 0.65rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.ze968einfo-item span {
    color: var(--gray-700);
    line-height: 1.5;
}

.ze968edownload-action {
    margin-top: auto;
    flex-shrink: 0;
}

.ze968edownload-action .btn {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all var(--transition-speed) var(--transition-easing);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.35;
}

.ze968ebtn-ios {
    background: linear-gradient(135deg, #1a1a2e, #4a4a6a) !important;
    color: white !important;
}

.ze968ebtn-android {
    background: linear-gradient(135deg, #3DDC84, #2BB673) !important;
    color: white !important;
}

.ze968ebtn-pc {
    background: linear-gradient(135deg, #0078D4, #005A9E) !important;
    color: white !important;
}

.ze968edownload-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ze968edownload-tip {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 2.5rem;
}

.ze968edownload-tip i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.ze968edownload-tip p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.65;
}

/* ===== 注册指南 ===== */
.ze968eregister-section {
    padding: var(--section-padding-y) 0;
    background: white;
    overflow-x: clip;
}

.ze968eregister-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ze968eregister-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.ze968ebtn-register-main {
    background: var(--gradient-main) !important;
    color: white !important;
    padding: 0.85rem 2rem !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    border: none !important;
    transition: all var(--transition-speed) var(--transition-easing);
}

.ze968ebtn-register-main:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white !important;
}

.ze968esteps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    align-items: stretch;
    min-width: 0;
}

.ze968estep-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    border: var(--card-border);
    position: relative;
    transition: all var(--transition-speed) var(--transition-easing);
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ze968estep-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.ze968estep-num {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.ze968estep-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.ze968estep-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ===== 安全保障 ===== */
.ze968esecurity-section {
    padding: var(--section-padding-y) 0;
    background: var(--light-bg);
    overflow-x: clip;
}

.ze968esecurity-section > .ze968econtainer > .ze968erow {
    align-items: stretch;
}

.ze968esecurity-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: var(--card-border);
    transition: all var(--transition-speed) var(--transition-easing);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ze968esecurity-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.15);
}

.ze968esecurity-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.25rem;
    background: var(--gradient-accent);
    color: white;
}

.ze968esecurity-card h3 {
    color: var(--gray-900);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.ze968esecurity-features {
    background: var(--gray-100);
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    flex: 1 1 auto;
}

.ze968efeature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    font-size: 0.88rem;
}

.ze968efeature-item:last-child {
    margin-bottom: 0;
}

.ze968efeature-item i {
    color: var(--primary-color);
    margin-right: 0.6rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.ze968efeature-item span {
    color: var(--gray-700);
    line-height: 1.5;
}

.ze968esecurity-certificates {
    margin-top: 2.5rem;
}

.ze968esecurity-certificates .row {
    align-items: stretch;
}

.ze968ecertificate-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: var(--card-border);
    transition: all var(--transition-speed) var(--transition-easing);
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ze968ecertificate-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ze968ecertificate-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-color);
}

.ze968ecertificate-card h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.ze968ecertificate-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.ze968efaq-section {
    padding: var(--section-padding-y) 0;
    background: white;
    overflow-x: clip;
}

.ze968efaq-accordion {
    --bs-accordion-border-width: 0;
}

.ze968efaq-accordion .accordion-item {
    border: var(--card-border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.65rem;
    overflow: hidden;
    background: var(--light-bg);
}

.ze968efaq-accordion .accordion-button {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--gray-900);
    background: var(--light-bg);
    padding: 1.15rem 1.5rem;
    box-shadow: none !important;
}

.ze968efaq-accordion .accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary-color);
}

.ze968efaq-accordion .accordion-button::after {
    background-size: 1rem;
}

.ze968efaq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    background: white;
}

/* ===== 文章板块 ===== */
.ze968earticle-section {
    padding: var(--section-padding-y) 0;
    background: var(--light-bg);
    overflow-x: clip;
}

.ze968earticle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.ze968earticle-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.ze968ebtn-outline {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-speed) var(--transition-easing);
}

.ze968ebtn-outline:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.ze968earticle-card {
    border: var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-easing);
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ze968earticle-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.15);
}

.ze968earticle-thumb-wrap {
    overflow: hidden;
}

.ze968ethumb-home {
    height: 130px;
    object-fit: cover;
    width: 100%;
    transition: transform var(--transition-speed) var(--transition-easing);
}

.ze968earticle-card:hover .ze968ethumb-home {
    transform: scale(1.03);
}

.ze968earticle-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.ze968earticle-title {
    font-size: 0.95rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.ze968earticle-title a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.ze968earticle-title a:hover {
    color: var(--primary-color);
}

.ze968earticle-card .card-body {
    padding: 0.85rem 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

#article .col {
    display: flex;
    min-width: 0;
}

/* ===== 页脚 ===== */
.ze968efooter {
    background: var(--gray-900);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.ze968efooter-brand img {
    max-width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.ze968efooter-title {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.ze968efooter-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze968efooter-links li {
    margin-bottom: 0.6rem;
}

.ze968efooter-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

.ze968efooter-link:hover {
    color: var(--accent-color);
}

.ze968efriend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ze968efriend-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-speed);
}

.ze968efriend-links a:hover {
    color: var(--accent-color);
}

.ze968efooter-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.ze968efooter-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.85rem;
    margin-bottom: 0.75rem;
}

.ze968efooter-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-speed);
    white-space: nowrap;
    font-size: 0.88rem;
}

.ze968efooter-bottom-links a:hover {
    color: var(--accent-color);
}

.ze968efooter-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.ze968efooter-bottom a:hover {
    color: var(--accent-color);
}

/* ===== 通用按钮 ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.2);
}

/* ===== 兼容旧类名 ===== */
.ze968efeature-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    background: white;
}

.ze968efeature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(124, 58, 237, 0.1);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin: 0 auto 1.25rem;
}

/* ===== 列表页/内容页兼容 ===== */
.pagebar .pagelist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pagebar .pagelist li {
    display: inline-flex;
    margin: 0;
}

.ze968ethumb-list,
.ze968ethumb-related {
    height: 72px;
    object-fit: cover;
}

.ze968ethumb-side {
    height: 50px;
    object-fit: cover;
}

.ze968ethumb-cover {
    max-width: 100%;
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin: 0 auto;
}

/* ===== 响应式 ===== */
@media (max-width: 1199px) {
    .ze968ehero-title {
        font-size: 2.5rem;
    }

    .ze968esection-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .ze968ehero-section {
        padding: 3rem 0 3.5rem;
    }

    .ze968ehero-title {
        font-size: 2.1rem;
    }

    .ze968eabout-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ze968eabout-card.ze968espan-2 {
        grid-column: span 2;
    }

    .ze968epanel-card {
        height: auto;
    }

    .ze968ebento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ze968ebento-wide {
        grid-column: span 2;
    }

    .ze968ehero-float-card {
        display: none;
    }

    .ze968ehero-image-container {
        margin-top: 1.5rem;
        min-height: auto;
    }

    .ze968eregister-title {
        font-size: 1.75rem;
    }

    .ze968eregister-intro {
        margin-bottom: 1rem;
    }

    .ze968efooter {
        text-align: center;
    }

    .ze968efooter-links {
        text-align: center;
    }

    .ze968efriend-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding-y: 2.75rem;
        --card-padding: 1.15rem;
    }

    html {
        scroll-padding-top: 64px;
    }

    .container,
    .ze968econtainer.container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* 导航 */
    .ze968enavbar {
        padding: 0.5rem 0;
    }

    .ze968enavbar-brand img,
    .navbar-brand img {
        height: 36px;
        width: auto;
    }

    .ze968enavbar .navbar-collapse {
        margin-top: 0.65rem;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        padding: 0.25rem 0 0.5rem;
        border-top: 1px solid var(--gray-200);
        border-radius: 0;
        box-shadow: none;
    }

    .ze968enavbar .navbar-nav {
        width: 100%;
    }

    .ze968enavbar .navbar-nav .nav-link {
        padding: 0.65rem 0.25rem !important;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .ze968enavbar .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
    }

    .ze968enavbar .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    /* Hero */
    .ze968ehero-section {
        padding: 2.25rem 0 2.75rem;
    }

    .ze968ehero-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.75rem;
        line-height: 1.45;
        max-width: 100%;
    }

    .ze968ehero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .ze968ehero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }

    .ze968ehero-desc {
        font-size: 0.88rem;
        margin-bottom: 1rem;
        line-height: 1.65;
        word-break: break-word;
    }

    .ze968ehero-desc strong {
        font-weight: 600;
    }

    .ze968ehero-tags {
        gap: 0.4rem;
        margin-bottom: 1.25rem;
    }

    .ze968ehero-tags span {
        font-size: 0.72rem;
        padding: 0.28rem 0.6rem;
    }

    .ze968ehero-buttons {
        flex-direction: column;
        gap: 0.65rem;
    }

    .ze968ehero-buttons .btn,
    .ze968ehero-buttons .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.15rem;
        font-size: 0.92rem;
    }

    .ze968ehero-image-container {
        min-height: auto;
        padding: 0.5rem 0 0;
        margin-top: 0;
    }

    .ze968ehero-image {
        max-width: 240px;
    }

    /* 通用区块标题 */
    .ze968esection-header {
        margin-bottom: 1.75rem;
    }

    .ze968esection-header h2 {
        font-size: 1.55rem;
        line-height: 1.35;
    }

    .ze968esection-desc {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .ze968eabout-section,
    .ze968efeatures-section,
    .ze968edownload-section,
    .ze968eregister-section,
    .ze968esecurity-section,
    .ze968efaq-section,
    .ze968earticle-section {
        padding: var(--section-padding-y) 0;
    }

    .ze968eabout-grid {
        grid-template-columns: 1fr;
    }

    .ze968eabout-card.ze968espan-2 {
        grid-column: span 1;
    }

    .ze968epanel-card {
        padding: var(--card-padding);
    }

    .ze968eabout-item {
        gap: 0.75rem;
    }

    .ze968eabout-icon {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }

    .ze968eabout-item h3 {
        font-size: 0.98rem;
    }

    .ze968eabout-item p {
        font-size: 0.86rem;
    }

    .ze968ebento-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ze968ebento-wide {
        grid-column: span 1;
    }

    .ze968ebento-item {
        padding: var(--card-padding);
    }

    .ze968ebento-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 0.85rem;
    }

    .ze968ebento-item h3 {
        font-size: 1rem;
    }

    .ze968ebento-item p {
        font-size: 0.86rem;
    }

    /* 统计数据 */
    .ze968estats-section {
        padding: 2.75rem 0;
    }

    .ze968estats-intro {
        margin-bottom: 1.75rem;
    }

    .ze968estats-intro h2 {
        font-size: 1.45rem;
        line-height: 1.35;
    }

    .ze968estats-intro p {
        font-size: 0.88rem;
        padding: 0 0.25rem;
    }

    .ze968estat-number {
        font-size: 1.75rem;
    }

    .ze968estat-item {
        padding: 1.1rem 0.5rem;
        min-height: 108px;
    }

    .ze968estat-icon {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }

    .ze968estat-label {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    /* 下载区 */
    .ze968edownload-card {
        padding: var(--card-padding);
    }

    .ze968edownload-card-head {
        flex-direction: row;
        align-items: center;
        gap: 0.85rem;
        margin-bottom: 1.15rem;
    }

    .ze968edownload-card-head h3 {
        font-size: 1.02rem;
    }

    .ze968ecard-meta {
        font-size: 0.8rem;
    }

    .ze968eplatform-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .ze968edownload-info {
        padding: 0.85rem 1rem;
        margin-bottom: 1rem;
    }

    .ze968einfo-item {
        font-size: 0.84rem;
    }

    .ze968edownload-tip {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 1rem;
        margin-top: 1.75rem;
    }

    .ze968edownload-tip p {
        font-size: 0.86rem;
        word-break: break-word;
    }

    .ze968edownload-row {
        --bs-gutter-y: 0.85rem;
    }

    .ze968esecurity-section .row.g-4 {
        --bs-gutter-y: 0.85rem;
    }

    /* 注册指南 */
    .ze968eregister-intro {
        margin-bottom: 1.25rem;
    }

    .ze968eregister-title {
        font-size: 1.45rem;
    }

    .ze968eregister-desc {
        font-size: 0.9rem;
        margin-bottom: 1.15rem;
    }

    .ze968ebtn-register-main {
        width: 100%;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1.15rem !important;
        font-size: 0.92rem;
    }

    .ze968esteps-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ze968estep-card {
        padding: var(--card-padding);
    }

    .ze968estep-num {
        font-size: 1.6rem;
    }

    .ze968estep-card h4 {
        font-size: 0.98rem;
    }

    .ze968estep-card p {
        font-size: 0.84rem;
    }

    /* 安全区 */
    .ze968esecurity-card,
    .ze968ecertificate-card {
        padding: var(--card-padding);
    }

    .ze968esecurity-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .ze968esecurity-card h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .ze968esecurity-features {
        padding: 0.85rem 1rem;
    }

    .ze968ecertificate-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .ze968esecurity-certificates {
        margin-top: 2rem;
    }

    /* FAQ */
    .ze968efaq-accordion .accordion-button {
        padding: 0.95rem 2.75rem 0.95rem 1rem;
        font-size: 0.88rem;
        line-height: 1.45;
        word-break: break-word;
    }

    .ze968efaq-accordion .accordion-body {
        padding: 0 1rem 0.95rem;
        font-size: 0.86rem;
        line-height: 1.65;
    }

    /* 文章区 */
    .ze968earticle-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .ze968earticle-header h2 {
        font-size: 1.45rem;
    }

    .ze968ebtn-outline {
        width: 100%;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    #article .ze968ethumb-home {
        height: 140px !important;
    }

    #article .ze968earticle-title {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #article .ze968earticle-meta {
        font-size: 0.72rem;
    }

    /* 页脚 */
    .ze968efooter {
        padding: 2.5rem 0 1.5rem;
    }

    .ze968efooter > .container > .row:first-child > .col-12:first-child {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .ze968efooter > .container > .row:first-child > .col-12:first-child p {
        text-align: center;
    }

    .ze968efooter > .container > .row:first-child > .col-6,
    .ze968efooter > .container > .row:first-child > .col-sm-6 {
        text-align: left;
    }

    .ze968efooter > .container > .row:first-child .ze968efooter-links {
        text-align: left;
    }

    .ze968efooter-logo {
        height: 36px;
        width: auto;
    }

    .ze968efooter-brand {
        display: inline-block;
    }

    .ze968efooter > .container > .row > .col-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .ze968efooter-title {
        font-size: 0.92rem;
        margin-bottom: 0.75rem;
    }

    .ze968efooter-links li {
        margin-bottom: 0.45rem;
    }

    .ze968efooter-link {
        font-size: 0.84rem;
    }

    .ze968efooter > .container > .row > .col-12 p {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .ze968efriend-links {
        gap: 0.4rem 1rem;
    }

    .ze968efooter-bottom {
        text-align: center;
        padding-top: 1.25rem;
    }

    .ze968efooter-bottom p {
        font-size: 0.8rem;
        line-height: 1.65;
    }

    .ze968efooter-bottom-links {
        gap: 0.45rem 0.65rem;
    }

    .ze968efooter-bottom-links a {
        font-size: 0.8rem;
    }

    .ze968ethumb-list,
    .ze968ethumb-related {
        height: 72px !important;
    }

    .ze968ethumb-side {
        height: 50px !important;
    }

    .ze968ethumb-cover {
        height: 170px !important;
    }

    .listbox .e2 li {
        padding-bottom: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    .listbox .e2 li h2.h5 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
        line-height: 1.35;
    }

    .listbox .e2 li p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 575px) {
    :root {
        --section-padding-y: 2.25rem;
        --card-padding: 1rem;
    }

    .ze968ehero-section {
        padding: 1.85rem 0 2.25rem;
    }

    .ze968ehero-title {
        font-size: 1.5rem;
    }

    .ze968ehero-subtitle {
        font-size: 0.9rem;
    }

    .ze968ehero-desc {
        font-size: 0.84rem;
    }

    .ze968ehero-tags span {
        font-size: 0.68rem;
    }

    .ze968ehero-image {
        max-width: 200px;
    }

    .ze968esection-header h2 {
        font-size: 1.4rem;
    }

    .ze968estats-row {
        --bs-gutter-x: 0.45rem;
        --bs-gutter-y: 0.45rem;
    }

    .ze968edownload-row {
        --bs-gutter-y: 0.75rem;
    }

    .ze968estat-number {
        font-size: 1.35rem;
    }

    .ze968estat-item {
        min-height: 96px;
        padding: 0.85rem 0.35rem;
    }

    .ze968estat-label {
        font-size: 0.72rem;
    }

    .ze968eregister-title {
        font-size: 1.3rem;
    }

    #article .ze968ethumb-home {
        height: 120px !important;
    }

    .ze968ethumb-list,
    .ze968ethumb-related {
        height: 64px !important;
    }

    .ze968ethumb-side {
        height: 46px !important;
    }

    .ze968ethumb-cover {
        height: 150px !important;
    }

    .pagebar .pagelist {
        gap: 0.35rem;
    }

    .ze968efooter {
        padding: 2rem 0 1.25rem;
    }

    .ze968efooter-bottom p {
        font-size: 0.75rem;
    }

    .ze968efooter-bottom-links a {
        font-size: 0.75rem;
    }

    .ze968efaq-accordion .accordion-button {
        padding-right: 2.5rem;
        font-size: 0.84rem;
    }
}

@media (max-width: 359px) {
    .ze968ehero-title {
        font-size: 1.35rem;
    }

    .ze968estat-number {
        font-size: 1.2rem;
    }

    .ze968estat-label {
        font-size: 0.68rem;
    }

    .ze968ehero-buttons .btn {
        font-size: 0.88rem;
    }
}

/* ========== 首页专属：翡翠绿 + 琥珀橙（仅 body.css365jz-homepage） ========== */
body.css365jz-homepage {
    --hp-primary: #0f766e;
    --hp-primary-dark: #115e59;
    --hp-accent: #c2410c;
    --hp-accent-light: #ea580c;
    --hp-ink: #1c1917;
    --hp-muted: #57534e;
    --hp-surface: #fafaf9;
    --hp-card: #ffffff;
    --hp-border: #e7e5e4;
    --hp-radius: 12px;
    --hp-radius-sm: 10px;
    --hp-card-padding: 1.25rem;
    background: var(--hp-surface);
    color: var(--hp-ink);
    overflow-x: clip;
}

/* 防止 Bootstrap 行内 flex 子项把卡片边框「撑出」视口 */
body.css365jz-homepage .row > [class*="col-"] {
    min-width: 0;
}

/* 刘海屏与底部横条：内容区左右留白 */
body.css365jz-homepage .container {
    padding-left: calc(var(--bs-gutter-x) * 0.5 + env(safe-area-inset-left, 0px));
    padding-right: calc(var(--bs-gutter-x) * 0.5 + env(safe-area-inset-right, 0px));
}

html:has(body.css365jz-homepage) {
    scroll-padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
}

body.css365jz-homepage .text-secondary {
    color: var(--hp-muted) !important;
}

body.css365jz-homepage .ze968ehp_nav {
    background: rgba(250, 250, 249, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hp-border);
    padding: 0.55rem 0;
    padding-top: calc(0.55rem + env(safe-area-inset-top, 0px));
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
    position: sticky;
    top: 0;
    z-index: 1040;
}

body.css365jz-homepage .ze968ehp_brand img {
    height: 40px;
    width: auto;
}

body.css365jz-homepage .ze968ehp_menu .nav-link {
    color: var(--hp-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--hp-radius-sm);
    transition: color 0.2s, background 0.2s;
}

body.css365jz-homepage .ze968ehp_menu .nav-link:hover {
    color: var(--hp-primary) !important;
    background: rgba(15, 118, 110, 0.08);
}

body.css365jz-homepage .ze968ehp_toggler {
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-sm);
    padding: 0.45rem 0.65rem;
}

body.css365jz-homepage .ze968ehp_collapse {
    margin-top: 0.5rem;
}

@media (max-width: 991px) {
    body.css365jz-homepage .ze968ehp_collapse {
        background: var(--hp-card);
        border: 1px solid var(--hp-border);
        border-radius: var(--hp-radius);
        padding: 0.5rem 0.25rem;
        max-height: calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px));
        overflow-y: auto;
    }

    body.css365jz-homepage .ze968ehp_menu .nav-link {
        border-bottom: 1px solid #f5f5f4;
        border-radius: 0;
        padding: 0.65rem 0.75rem !important;
    }

    body.css365jz-homepage .ze968ehp_menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    body.css365jz-homepage .ze968ehp_toggler {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.css365jz-homepage .navbar > .container {
        flex-wrap: nowrap;
        align-items: center;
    }

    body.css365jz-homepage .navbar-brand {
        margin-right: 0.5rem;
        min-width: 0;
    }
}

body.css365jz-homepage .ze968ehp_hero {
    position: relative;
    padding: 3rem 0 3.5rem;
    overflow: clip;
    color: #fff;
    background: linear-gradient(155deg, #134e4a 0%, #0f766e 42%, #0d9488 100%);
}

body.css365jz-homepage .ze968ehp_hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(234, 88, 12, 0.22), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}

body.css365jz-homepage .ze968ehp_kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    line-height: 1.35;
}

body.css365jz-homepage .ze968ehp_h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

body.css365jz-homepage .ze968ehp_lead {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 0.75rem;
    line-height: 1.65;
}

body.css365jz-homepage .ze968ehp_intro {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

body.css365jz-homepage .ze968ehp_intro strong {
    color: #fdba74;
    font-weight: 600;
}

body.css365jz-homepage .ze968ehp_checks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 0.88rem;
    opacity: 0.92;
}

body.css365jz-homepage .ze968ehp_checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

body.css365jz-homepage .ze968ehp_checks i {
    color: #fdba74;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

body.css365jz-homepage .ze968ehp_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body.css365jz-homepage .ze968ehp_btn {
    border-radius: var(--hp-radius-sm);
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

body.css365jz-homepage .ze968ehp_btn:active {
    transform: scale(0.98);
}

body.css365jz-homepage .ze968ehp_btn-light {
    background: #fff !important;
    color: var(--hp-primary-dark) !important;
}

body.css365jz-homepage .ze968ehp_btn-light:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--hp-primary-dark) !important;
}

body.css365jz-homepage .ze968ehp_btn-solid {
    background: linear-gradient(135deg, var(--hp-accent-light), var(--hp-accent)) !important;
    color: #fff !important;
}

body.css365jz-homepage .ze968ehp_btn-solid:hover {
    box-shadow: 0 8px 28px rgba(194, 65, 12, 0.35);
    color: #fff !important;
}

body.css365jz-homepage .ze968ehp_visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 0.75rem;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--hp-radius);
}

body.css365jz-homepage .ze968ehp_visual-ring {
    position: absolute;
    width: min(260px, 72vw);
    height: min(260px, 72vw);
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: ze968ehp_spin 48s linear infinite;
}

@keyframes ze968ehp_spin {
    to { transform: rotate(360deg); }
}

body.css365jz-homepage .ze968ehp_visual-img {
    position: relative;
    z-index: 1;
    max-width: min(240px, 88%);
    width: 100%;
    height: auto;
    border-radius: var(--hp-radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

body.css365jz-homepage .ze968ehp_chip {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    color: var(--hp-ink);
    padding: 0.5rem 0.85rem;
    border-radius: var(--hp-radius-sm);
    font-size: 0.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body.css365jz-homepage .ze968ehp_chip span {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--hp-primary);
}

body.css365jz-homepage .ze968ehp_chip-a {
    top: 8%;
    left: 2%;
}

body.css365jz-homepage .ze968ehp_chip-b {
    bottom: 10%;
    right: 2%;
}

@media (max-width: 1199px) {
    body.css365jz-homepage .ze968ehp_chip {
        display: none;
    }
}

body.css365jz-homepage .ze968ehp_section {
    padding: 3.25rem 0;
    overflow-x: clip;
}

body.css365jz-homepage .ze968ehp_section-alt {
    background: #f5f5f4;
}

body.css365jz-homepage .ze968ehp_section-news {
    background: var(--hp-surface);
    border-top: 1px solid var(--hp-border);
}

body.css365jz-homepage .ze968ehp_label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hp-primary);
    background: rgba(15, 118, 110, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.65rem;
}

body.css365jz-homepage .ze968ehp_label-on-dark {
    color: #99f6e4;
    background: rgba(255, 255, 255, 0.1);
}

body.css365jz-homepage .ze968ehp_h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--hp-ink);
    line-height: 1.3;
}

body.css365jz-homepage .ze968ehp_sub {
    color: var(--hp-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 52rem;
}

body.css365jz-homepage .ze968ehp_head-center .ze968ehp_h2 {
    margin-bottom: 0.5rem;
}

body.css365jz-homepage .ze968ehp_card {
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding);
    height: 100%;
    box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 0;
}

body.css365jz-homepage .ze968ehp_card-tall {
    display: flex;
    flex-direction: column;
}

body.css365jz-homepage .ze968ehp_card:hover {
    border-color: rgba(15, 118, 110, 0.25);
    box-shadow: 0 8px 28px rgba(28, 25, 23, 0.06);
}

body.css365jz-homepage .ze968ehp_card-tall .ze968ehp_card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--hp-radius-sm);
    background: linear-gradient(135deg, var(--hp-primary), var(--hp-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

body.css365jz-homepage .ze968ehp_card-tall > p:last-of-type {
    margin-top: auto;
    margin-bottom: 0;
}

body.css365jz-homepage .ze968ehp_card h3,
body.css365jz-homepage .ze968ehp_card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--hp-ink);
}

body.css365jz-homepage .ze968ehp_card p {
    font-size: 0.9rem;
    color: var(--hp-muted);
    margin-bottom: 0.75rem;
}

body.css365jz-homepage .ze968ehp_feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

@media (min-width: 992px) {
    body.css365jz-homepage .ze968ehp_feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

body.css365jz-homepage .ze968ehp_feat {
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding);
    border-left: 3px solid var(--hp-primary);
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

body.css365jz-homepage .ze968ehp_feat-wide {
    grid-column: 1 / -1;
}

@media (min-width: 992px) {
    body.css365jz-homepage .ze968ehp_feat-wide {
        grid-column: span 3;
    }
}

body.css365jz-homepage .ze968ehp_feat-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--hp-accent);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.35rem;
}

body.css365jz-homepage .ze968ehp_feat h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--hp-ink);
}

body.css365jz-homepage .ze968ehp_feat p {
    font-size: 0.86rem;
    color: var(--hp-muted);
    margin: 0;
    line-height: 1.65;
}

body.css365jz-homepage .ze968ehp_stats {
    background: linear-gradient(180deg, #1c1917 0%, #292524 100%);
    padding: 3rem 0;
    color: #fff;
    overflow-x: clip;
}

body.css365jz-homepage .ze968ehp_stats-row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
}

body.css365jz-homepage .ze968ehp_stats-row > [class*="col-"] {
    display: flex;
}

body.css365jz-homepage .ze968ehp_stats-row .ze968ehp_stat {
    width: 100%;
}

body.css365jz-homepage .ze968ehp_stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--hp-radius);
    padding: 1.1rem 0.65rem;
    text-align: center;
    height: 100%;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

body.css365jz-homepage .ze968ehp_stat strong {
    display: block;
    font-size: clamp(1.2rem, 4.2vw, 1.85rem);
    font-weight: 800;
    background: linear-gradient(135deg, #5eead4, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

body.css365jz-homepage .ze968ehp_stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    word-break: break-word;
}

body.css365jz-homepage .ze968ehp_dl-row {
    align-items: stretch;
}

body.css365jz-homepage .ze968ehp_dl {
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding);
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--hp-primary);
    box-shadow: 0 1px 3px rgba(28, 25, 23, 0.06);
    min-width: 0;
    height: 100%;
    box-sizing: border-box;
}

body.css365jz-homepage .ze968ehp_dl-ios {
    border-top-color: #44403c;
}

body.css365jz-homepage .ze968ehp_dl-android {
    border-top-color: #16a34a;
}

body.css365jz-homepage .ze968ehp_dl-win {
    border-top-color: #2563eb;
}

body.css365jz-homepage .ze968edl-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    min-width: 0;
}

body.css365jz-homepage .ze968edl-head > div:last-child {
    min-width: 0;
    flex: 1;
}

body.css365jz-homepage .ze968edl-ico {
    width: 46px;
    height: 46px;
    border-radius: var(--hp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
}

body.css365jz-homepage .ze968ehp_dl-ios .ze968edl-ico {
    background: linear-gradient(135deg, #44403c, #1c1917);
}

body.css365jz-homepage .ze968ehp_dl-android .ze968edl-ico {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

body.css365jz-homepage .ze968ehp_dl-win .ze968edl-ico {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

body.css365jz-homepage .ze968ehp_dl h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--hp-ink);
}

body.css365jz-homepage .ze968edl-list {
    margin: 0 0 1.15rem;
    padding-left: 1.1rem;
    font-size: 0.86rem;
    color: var(--hp-muted);
    flex: 1 1 auto;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.css365jz-homepage .ze968edl-list li {
    margin-bottom: 0.35rem;
}

body.css365jz-homepage .ze968ehp_btn-block {
    width: 100%;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    line-height: 1.35;
    padding: 0.6rem 1rem;
}

body.css365jz-homepage .ze968ehp_btn-dark {
    background: #292524 !important;
    color: #fff !important;
}

body.css365jz-homepage .ze968ehp_btn-green {
    background: linear-gradient(135deg, #22c55e, #15803d) !important;
    color: #fff !important;
}

body.css365jz-homepage .ze968ehp_btn-blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: #fff !important;
}

body.css365jz-homepage .ze968ehp_note {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding);
}

body.css365jz-homepage .ze968ehp_note > div {
    min-width: 0;
    flex: 1;
}

body.css365jz-homepage .ze968ehp_note i {
    color: var(--hp-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

body.css365jz-homepage .ze968ehp_btn-wide {
    width: 100%;
    max-width: 280px;
}

body.css365jz-homepage .ze968ehp_steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

body.css365jz-homepage .ze968ehp_steps li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding);
    min-width: 0;
}

body.css365jz-homepage .ze968ehp_steps li > div:last-child {
    min-width: 0;
    flex: 1;
}

body.css365jz-homepage .ze968ehp_step-i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--hp-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.css365jz-homepage .ze968ehp_steps h4 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--hp-ink);
}

body.css365jz-homepage .ze968ehp_steps p {
    font-size: 0.86rem;
    color: var(--hp-muted);
}

body.css365jz-homepage .ze968ehp_sec-card {
    background: var(--hp-card);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding);
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

body.css365jz-homepage .ze968ehp_sec-ico {
    font-size: 1.35rem;
    color: var(--hp-primary);
    margin-bottom: 0.65rem;
    display: block;
}

body.css365jz-homepage .ze968ehp_sec-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--hp-ink);
}

body.css365jz-homepage .ze968ehp_badge-card {
    background: var(--hp-card);
    border: 1px dashed var(--hp-border);
    border-radius: var(--hp-radius);
    padding: var(--hp-card-padding) 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

body.css365jz-homepage .ze968ehp_badge-card i {
    font-size: 1.5rem;
    color: var(--hp-accent);
    margin-bottom: 0.5rem;
}

body.css365jz-homepage .ze968ehp_badge-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--hp-ink);
}

body.css365jz-homepage .ze968ehp_acc.accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: var(--hp-radius-sm);
}

body.css365jz-homepage .ze968ehp_acc .accordion-item {
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-sm) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: var(--hp-card);
}

body.css365jz-homepage .ze968ehp_acc .accordion-item:last-child {
    margin-bottom: 0;
}

body.css365jz-homepage .ze968ehp_acc .accordion-button {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hp-ink);
    background: #fafaf9;
    padding: 0.95rem 2.75rem 0.95rem 1rem;
    box-shadow: none !important;
    white-space: normal;
    line-height: 1.45;
    word-break: break-word;
}

body.css365jz-homepage .ze968ehp_acc .accordion-button:not(.collapsed) {
    background: var(--hp-card);
    color: var(--hp-primary);
}

body.css365jz-homepage .ze968ehp_acc .accordion-body {
    font-size: 0.88rem;
    color: var(--hp-muted);
    line-height: 1.7;
    padding: 0 1rem 1rem;
}

body.css365jz-homepage .ze968ehp_btn-outline {
    background: transparent !important;
    border: 2px solid var(--hp-primary) !important;
    color: var(--hp-primary) !important;
}

body.css365jz-homepage .ze968ehp_btn-outline:hover {
    background: var(--hp-primary) !important;
    color: #fff !important;
}

body.css365jz-homepage .ze968ehp_news {
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    overflow: hidden;
    background: var(--hp-card);
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

body.css365jz-homepage .ze968ehp_news:hover {
    border-color: rgba(15, 118, 110, 0.25);
    box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}

body.css365jz-homepage .ze968ehp_news-thumb {
    display: block;
    overflow: hidden;
}

body.css365jz-homepage .ze968ehp_news .ze968ethumb-home {
    height: 128px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

body.css365jz-homepage .ze968ehp_news:hover .ze968ethumb-home {
    transform: scale(1.04);
}

body.css365jz-homepage .ze968ehp_news-meta {
    font-size: 0.72rem;
    color: var(--hp-muted);
    margin-bottom: 0.35rem;
}

body.css365jz-homepage .ze968ehp_news-title a {
    color: var(--hp-ink);
    text-decoration: none;
    font-weight: 600;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.css365jz-homepage .ze968ehp_news-title a:hover {
    color: var(--hp-primary);
}

body.css365jz-homepage .ze968ehp_news .card-body {
    padding: 0.85rem var(--hp-card-padding);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

body.css365jz-homepage .ze968ehp_footer {
    background: #1c1917;
    color: #e7e5e4;
    padding: 3rem 0 2rem;
    padding-bottom: max(2rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
}

body.css365jz-homepage .ze968ehp_foot-h {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.85rem;
}

body.css365jz-homepage .ze968ehp_foot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.css365jz-homepage .ze968ehp_foot-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.2rem 0;
}

body.css365jz-homepage .ze968ehp_foot-list a:hover {
    color: #fdba74;
}

body.css365jz-homepage .ze968ehp_footer .friend-links,
body.css365jz-homepage .ze968ehp_footer .ze968efriend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

body.css365jz-homepage .ze968ehp_footer .friend-links a,
body.css365jz-homepage .ze968ehp_footer .ze968efriend-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
}

body.css365jz-homepage .ze968ehp_footer .friend-links a:hover,
body.css365jz-homepage .ze968ehp_footer .ze968efriend-links a:hover {
    color: #fdba74;
}

body.css365jz-homepage .ze968ehp_foot-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
}

body.css365jz-homepage .ze968ehp_foot-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    text-decoration: none;
}

body.css365jz-homepage .ze968ehp_foot-links a:hover {
    color: #fdba74;
}

body.css365jz-homepage .ze968ehp_footer-logo {
    filter: brightness(1.08);
}

body.css365jz-homepage .ze968ehp_news-toolbar > div:first-child {
    min-width: 0;
}

@media (max-width: 767px) {
    body.css365jz-homepage {
        --hp-card-padding: 1.05rem;
    }

    body.css365jz-homepage .ze968ehp_hero {
        padding: 2.25rem 0 2.75rem;
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
    }

    body.css365jz-homepage .ze968ehp_lead {
        font-size: 1rem;
    }

    body.css365jz-homepage .ze968ehp_sub {
        font-size: 0.92rem;
    }

    body.css365jz-homepage .ze968ehp_news-toolbar .btn.ze968ehp_btn-outline {
        width: 100%;
        justify-content: center;
    }

    body.css365jz-homepage .ze968ehp_stats {
        padding: 2.5rem 0;
    }

    body.css365jz-homepage #register .ze968ehp_btn-wide {
        width: 100%;
        max-width: none;
    }

    body.css365jz-homepage .ze968ehp_cta .ze968ehp_btn {
        width: 100%;
        justify-content: center;
    }

    body.css365jz-homepage .ze968ehp_feature-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    body.css365jz-homepage .ze968ehp_feat-wide {
        grid-column: 1;
    }

    body.css365jz-homepage .ze968ehp_section {
        padding: 2.75rem 0;
    }

    body.css365jz-homepage .ze968ehp_visual {
        min-height: 200px;
    }

    body.css365jz-homepage .ze968ehp_news .ze968ethumb-home {
        height: 160px;
    }

    body.css365jz-homepage .ze968ehp_btn-wide {
        max-width: none;
    }

    body.css365jz-homepage .ze968ehp_badge-card {
        min-height: 0;
    }

    body.css365jz-homepage .ze968ehp_stat {
        min-height: 100px;
        padding: 0.85rem 0.5rem;
    }
}

@media (max-width: 575px) {
    body.css365jz-homepage .ze968ehp_section {
        padding: 2.25rem 0;
    }

    body.css365jz-homepage .ze968ehp_h2 {
        font-size: clamp(1.28rem, 5.5vw, 1.75rem);
    }

    body.css365jz-homepage .ze968ehp_h1 {
        font-size: clamp(1.55rem, 6vw, 2.75rem);
    }

    body.css365jz-homepage .ze968ehp_head-center {
        text-align: left;
    }

    body.css365jz-homepage .ze968ehp_head-center .ze968ehp_sub {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.css365jz-homepage .ze968ehp_foot-links {
        gap: 0.45rem 0.65rem;
    }

    body.css365jz-homepage .ze968ehp_foot-links a {
        font-size: 0.8rem;
    }

    body.css365jz-homepage section.bg-light .card-body.p-4 {
        padding: 1.1rem !important;
    }

    body.css365jz-homepage section.bg-light .ze968ethumb-cover {
        max-width: 100% !important;
        width: 100%;
        height: auto !important;
        max-height: 220px;
    }

    body.css365jz-homepage section.bg-light article.card header .small.text-muted {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
    }

    body.css365jz-homepage section.bg-light article.card header .small.text-muted .me-3 {
        margin-right: 0 !important;
    }
}
