/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-size: 16px;
    background-color: #0F111D;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ===== Main Wrap (matches reference) ===== */
.wrap {
    background-color: #0F111D;
    min-height: calc(100vh - 10rem);
    width: 100%;
    padding-top: 2rem;
    margin: 0 auto;
    max-width: 30rem;
}

/* ===== Logo Title ===== */
.titleImg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 0.5rem;
}

.titleLogo {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.titleText {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Tabs (matches reference structure) ===== */
.tabs {
    width: 100%;
    margin: 0 auto;
    font-size: 1.5rem;
}

.tabs .adm-tabs-header {
    border-bottom: none;
    padding: 0 5rem 0.7rem;
}

.tabs .adm-tabs-content {
    padding: 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.adm-tabs-tab-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.adm-tabs-tab-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
    padding: 0 8px !important;
}

.adm-tabs-tab {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    padding: 0.5rem 0;
}

.adm-tabs-tab:hover {
    opacity: 0.8;
}

.adm-tabs-tab-active {
    color: #fff;
    font-weight: 600;
    position: relative;
}

.adm-tabs-tab-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: #3b82f6;
    border-radius: 3px;
}

/* ===== Hero Section ===== */
.heroSection {
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, #131730 0%, #0F111D 100%);
    position: relative;
    overflow: hidden;
}

.heroSection::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    top: -40px;
    right: -40px;
}

.heroBadge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    color: #93c5fd;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    position: relative;
}

.heroLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.heroLogoText {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.heroTitle {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.heroSubtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    position: relative;
}

.heroInvite {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.5rem 0.45rem 0.9rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    margin-top: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.heroInvite:hover {
    background: rgba(59, 130, 246, 0.2);
}

.heroInviteLabel {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.heroInviteCode {
    font-size: 1.1rem;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 0.15em;
    font-family: 'Courier New', monospace;
}

.heroInviteCopy {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.72rem;
    color: #93c5fd;
}

/* ===== Product Showcase Image (top of desc tab) ===== */
.descImgWrap {
    background-color: #0F111D;
    padding: 1.5rem 3rem 0;
    display: flex;
    justify-content: center;
}

.descImgWrap .lazy-img-wrap {
    max-width: 17rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
}

.descImgWrap .lazy-img-wrap img {
    border-radius: 20px 20px 0 0;
}

/* ===== Desc Sections (matches reference) ===== */
.descWrap {
    background: linear-gradient(180deg, #201f2d, #0f111d);
}

.descLinearLine {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(15,17,29,1), rgba(255,255,255,0.4), rgba(15,17,29,1));
}

.descDownColorWrap {
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #201F2D, #0f111d);
}

.descDownWrap {
    padding: 1rem 0 0 0;
}

.descDownTitle {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-align: center;
}

.descDownDesc {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-align: center;
    margin-top: 0.2rem;
    color: rgba(255,255,255,0.5);
}

.descDownBtn {
    width: 9rem;
    height: 3rem;
    line-height: 2.7rem;
    font-weight: bold;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 1.5rem auto 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 66px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.descDownBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.descDownBtn:active {
    transform: scale(0.95);
}

.descPartLine {
    height: 0.2rem;
    width: calc(100% - 8rem);
    margin: 3rem auto 0;
    background-color: #2C2C3C;
    border-radius: 56px;
}

/* ===== Feature Cards (matches reference layout) ===== */
.descColorWrap {
    background: #0f111d;
    padding-bottom: 4rem;
}

.descPartHead {
    width: calc(100% - 4rem);
    padding: 1.5rem 1.2rem;
    background-color: #2C2B3B;
    border-radius: 18px 18px 0 0;
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
}

.descPartWrap {
    flex: 1;
    margin-left: 1rem;
}

.descPartIconWrap {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.descPartIconBlue { background: rgba(59,130,246,0.15); }
.descPartIconGreen { background: rgba(16,185,129,0.15); }
.descPartIconYellow { background: rgba(245,158,11,0.15); }
.descPartIconPurple { background: rgba(139,92,246,0.15); }
.descPartIconPink { background: rgba(236,72,153,0.15); }

.descPartTitle {
    letter-spacing: 0.1rem;
    margin-top: 0.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.descPartDesc {
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.descPartCt {
    width: calc(100% - 4rem);
    padding: 1.5rem 1.2rem;
    background-color: #272432;
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
}

.descPartBottom {
    width: calc(100% - 4rem);
    padding: 1.5rem 1.2rem;
    background-color: #2C2B3B;
    border-radius: 0 0 18px 18px;
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== Analytics Section ===== */
.descAnalyWrap {
    padding: 3.5rem 1.5rem;
    background: #201f2e;
}

.sectionTag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #60a5fa;
    margin-bottom: 0.8rem;
    text-align: center;
}

.descAnalyWrap .sectionTag,
.reasonWrap .sectionTag {
    display: block;
    width: fit-content;
    margin: 0 auto 0.8rem;
}

.descAnalyTitle {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-align: center;
    color: #fff;
    margin-bottom: 0.3rem;
}

.descAnalySubtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-bottom: 1.5rem;
}

.analyticsGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.playerCard {
    background: #2C2B3B;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1rem;
    transition: all 0.3s;
}

.playerCard:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.playerAvatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.paBlue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.paPurple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.paGreen { background: linear-gradient(135deg, #10b981, #059669); }
.paYellow { background: linear-gradient(135deg, #f59e0b, #d97706); }

.statRow {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.statVal {
    font-weight: 600;
    color: #fff;
    font-family: 'Courier New', monospace;
}

.statVal.hot {
    color: #60a5fa;
}

.analyticsInfo {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.infoItem {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.7rem 0.9rem;
    background: #2C2B3B;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.04);
}

.infoDot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.infoDot.dotGreen { background: #10b981; }
.infoDot.dotYellow { background: #f59e0b; }

.infoTitle {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.infoDesc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.commonTips {
    text-align: center;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    white-space: pre-wrap;
    letter-spacing: 0.1rem;
}

/* ===== Lazy Image Container ===== */
.lazy-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lazy-img-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.lazy-img-wrap img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.lazy-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e 0%, #2C2B3B 50%, #1a1a2e 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.lazy-img-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

.lazy-img-wrap.loaded .lazy-img-placeholder {
    display: none;
}

/* ===== Image Lightbox (fullscreen zoom preview) ===== */
.img-lightbox {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
}

.img-lightbox.show {
    display: flex;
    animation: lbFadeIn 0.25s ease;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.img-lightbox-content {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.15s ease;
    transform-origin: center center;
    pointer-events: none;
}

.img-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 5001;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}

.img-lightbox-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.img-lightbox-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 14px;
    border-radius: 100px;
    z-index: 5001;
    pointer-events: none;
}

/* ===== Live Display / Reason Section ===== */
.reasonWrap {
    padding: 3.5rem 1.5rem;
    background: #0f111c;
}

.reasonTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0.3rem;
    letter-spacing: 0.1rem;
}

.reasonSubtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-bottom: 2rem;
}

.livePhoneWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.phoneFrame {
    position: relative;
    width: 260px;
    background: #1a1a2e;
    border-radius: 28px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 1.5px rgba(255,255,255,0.06);
}

.phoneNotch {
    width: 80px;
    height: 5px;
    background: #2a2a40;
    border-radius: 3px;
    margin: 5px auto 8px;
}

.liveVideo {
    width: 100%;
    border-radius: 18px;
    background: #000;
    aspect-ratio: 9/16;
    object-fit: cover;
}

.liveFeatures {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.liveFeatureItem {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: #2C2B3B;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 100px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
}

/* ===== Download Wrap (matches reference) ===== */
.downloadWrap {
    padding: 4rem 2.5rem 3rem;
    background-color: #0f111c;
}

.downloadCard {
    width: 100%;
    padding: 2.5rem 2rem 3rem;
    box-sizing: border-box;
    background: linear-gradient(180deg, #0c2556, #0f1d3a 100%);
    border: 0.7px solid rgba(59, 130, 246, 0.35);
    border-radius: 24px;
    color: #fff;
    text-align: center;
}

.downloadIconWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.downloadDesc {
    color: #fff;
    text-align: center;
    font-size: 1rem;
    margin-top: 0.8rem;
    letter-spacing: 0.1rem;
    line-height: 1.6;
}

.downloadBtn {
    width: 10rem;
    height: 3rem;
    line-height: 2.8rem;
    border-radius: 4rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto 0;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    transition: all 0.3s;
}

.downloadBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.downloadTips {
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255,255,255,0.35);
    margin-top: 1rem;
    letter-spacing: 0.1rem;
}

/* ===== Pricing Section ===== */
.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.9rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.08rem;
    margin-bottom: 0.4rem;
}

.pricing-subtitle {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.pricing-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}

.pricing-grid-3 .pricing-price {
    font-size: 1.35rem;
}

.pricing-grid-3 .pricing-currency {
    font-size: 0.8rem;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 0.6rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.06);
}

.pricing-popular {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.08);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.pricing-best {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.06);
}

.pricing-popular-tag {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.15rem 0.65rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-duration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.pricing-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.pricing-currency {
    font-size: 0.9rem;
    font-weight: 600;
    vertical-align: top;
    margin-right: 1px;
}

.pricing-unit {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.15rem;
}

.pricing-save {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.12rem 0.5rem;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #34d399;
}

.pricing-perks {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    padding: 0 0.3rem;
}

.pricing-perk-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-cta {
    width: 100%;
    padding: 0.85rem 0;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.08rem;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

.pricing-cta:active {
    transform: scale(0.97);
}

.pricing-cta-hint {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.8rem;
    line-height: 1.5;
}

.supTitle {
    margin-top: 5rem;
    position: relative;
    font-size: 1.1rem;
    color: #fff;
}

.adm-divider-horizontal {
    border: none;
    border-top: 0.7px solid rgba(255,255,255,0.08);
    margin: 2rem 0;
}

.supDescWrap {
    margin-top: 0.3rem;
    display: flex;
    align-items: baseline;
}

.supDescType {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.50);
}

.supDescTel {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    color: #fff;
    flex: 1;
}

.copyright {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
    margin-top: 6rem;
    text-align: center;
}

/* ===== Agency Wrap (Android / Videos tabs) ===== */
.agencyWrap {
    padding: 3rem 2rem;
    background: #201f2e;
    min-height: calc(100vh - 10rem);
}

.agencyTitle {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}

.agencyDesc {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.4;
}

/* ===== Android Download Card ===== */
.android-download-card {
    background: linear-gradient(180deg, #0c2556, #0f1d3a 100%);
    border: 0.7px solid rgba(59, 130, 246, 0.35);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.android-download-card .descDownBtn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

/* WPK Download Card */
.wpk-card {
    border-color: rgba(16, 185, 129, 0.4);
    background: linear-gradient(180deg, #0a2e2a, #0f1d3a 100%);
    position: relative;
    overflow: hidden;
}

.wpk-required-tag {
    position: absolute;
    top: 12px;
    right: -22px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 2rem;
    letter-spacing: 0.1em;
}

.wpk-btn {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35) !important;
}

.wpk-btn:hover {
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5) !important;
}

/* ===== Invite Code Box ===== */
.invite-code-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.invite-code-label {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.invite-code-value {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    user-select: all;
    -webkit-user-select: all;
    padding: 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin: 0 auto;
    width: fit-content;
}

/* ===== Copy Button ===== */
.copyWrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.copyWrap:hover {
    opacity: 0.8;
    transform: translateX(2px);
}

.copyWrap:active {
    transform: scale(0.95);
}

.copyDesc {
    color: #FFC111;
    font-size: 1rem;
    letter-spacing: 0.8px;
}

/* ===== Video Section ===== */
.videoSection {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.videoCard {
    background: #2C2B3B;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.2rem;
}

.videoLabel {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #fff;
}

/* ===== Right-side Floating Customer Service (from reference) ===== */
.customer-service-float {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.service-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-icon span {
    position: absolute;
    right: 65px;
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-icon:hover span {
    opacity: 1;
    right: 70px;
}

/* ===== Service Modal (from reference) ===== */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

.service-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-modal-content {
    background-color: #2c2b3b;
    padding: 30px 20px;
    border-radius: 20px;
    max-width: 400px;
    width: 85%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.service-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-modal-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

#serviceModalBody {
    text-align: center;
    color: #fff;
}

.modal-qr-wrap {
    display: flex;
    justify-content: center;
    padding: 0.5rem;
}

.modal-qr-img {
    width: 220px;
    max-width: 80%;
    border-radius: 12px;
    background: #fff;
}

.service-icon-gzh {
    background: #fff;
}

#serviceModalBody h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

#serviceModalBody p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 10px 0;
}

.modal-account-info {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.modal-account-id {
    font-size: 1.2rem;
    font-weight: 600;
    color: #60a5fa;
    margin-top: 8px;
    word-break: break-all;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .customer-service-float {
        right: 12px;
        bottom: 80px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-modal-content {
        padding: 25px 15px;
        width: 90%;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .tabs .adm-tabs-header {
        padding: 0 2rem 0.7rem;
    }

    .service-modal-content {
        padding: 20px 12px;
        width: 92%;
    }
}

/* ===== Lazy Video (click-to-play) ===== */
.lazy-video {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border-radius: inherit;
}

.lazy-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lazy-video-poster-empty {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a2e, #2C2B3B);
}

.lazy-poster-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.lazy-video.poster-loaded .lazy-poster-placeholder {
    display: none;
}

.lazy-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.2s ease, opacity 0.2s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.lazy-video:hover .lazy-video-play {
    transform: translate(-50%, -50%) scale(1.1);
}

.lazy-video::after {
    content: '点击播放';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.4);
    padding: 3px 10px;
    border-radius: 100px;
    z-index: 2;
}

.lazy-video.playing::after {
    display: none;
}

.lazy-video.playing .lazy-video-play {
    display: none;
}

.lazy-video.playing .lazy-video-poster,
.lazy-video.playing .lazy-video-poster-empty {
    display: none;
}

.lazy-video video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
}

.lazy-video.loading .lazy-video-play svg circle {
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
    animation: loadingCircle 1.2s ease-in-out infinite;
}

.lazy-video.loading .lazy-video-play svg polygon {
    display: none;
}

@keyframes loadingCircle {
    0% { stroke-dashoffset: 188; }
    50% { stroke-dashoffset: 47; }
    100% { stroke-dashoffset: 188; }
}

/* ===== Button Active ===== */
.descDownBtn:active,
.downloadBtn:active {
    transform: scale(0.95) !important;
}

/* ===== Loading Animation ===== */
body {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.loaded {
    opacity: 1;
}
