/* 
   VIP Intro Page - Holographic Design 
   Ref: Blue Star Parallax (Crotch on Edge)
*/

/* Reset & Global */
.vip-intro-main {
    position: relative;
    width: 100%;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    padding-bottom: 80px;
    background: #f0f0f0;
}

/* Full Page Holographic Background */
.holo-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../custom-projects/vip-intro/img/19-colorful-fractal-backgrounds.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.vip-intro-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 40px;
    /* Padding for the pop-out star */
    z-index: 10;
}

/* Common Glass Style */
.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border-radius: 20px;
}

/* 
   1. Top Header Card - Star 'Riding' Design
*/
.vip-header-card {
    width: 100%;
    padding: 10px 20px 35px;
    /* Standard padding */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: visible;
    border-radius: 20px;

    /* 流体材质背景 (Fluid Texture) */
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%),
        url('../custom-projects/vip-intro/img/22-iridescent-holographic.webp');
    background-size: cover;
    background-position: center;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 1.0);
    /* Strong top edge line */

    box-shadow: 0 15px 40px rgba(100, 100, 255, 0.1);
    backdrop-filter: blur(25px);
}

.header-icon-box {
    position: absolute;
    /* CRITICAL POSITIONING: V-POINT ON EDGE */
    /* Star height ~130px. V-point is ~75px down. */
    /* top: -75px places the V-point exactly on the border */
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.header-crown {
    width: 130px;
    height: auto;

    /* Base shadow */
    filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.15));

    /* 方案1: 星光闪烁 + 微旋转 (加速版) */
    animation: starSparkle 1.8s ease-in-out infinite;
}

@keyframes starSparkle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 20px rgba(100, 150, 255, 0.3)) brightness(1);
    }

    25% {
        transform: translateY(-8px) rotate(5deg);
        filter: drop-shadow(0 25px 30px rgba(100, 150, 255, 0.5)) drop-shadow(0 0 50px rgba(100, 180, 255, 0.7)) drop-shadow(0 0 80px rgba(150, 100, 255, 0.4)) brightness(1.5);
    }

    75% {
        transform: translateY(-4px) rotate(-3deg);
        filter: drop-shadow(0 20px 25px rgba(150, 100, 255, 0.4)) drop-shadow(0 0 40px rgba(150, 120, 255, 0.5)) brightness(1.3);
    }
}

.header-title {
    font-size: 44px;
    font-weight: 800;
    color: #333;
    margin-top: 25px;
    /* Closer to star since star is higher */
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    font-family: 'Arial Black', sans-serif;
    opacity: 0.9;
}

.header-features-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #444;
}

.header-features-row span {
    display: flex;
    align-items: center;
}

.header-features-row span i {
    margin-right: 8px;
    color: #5b21b6;
    font-size: 16px;
}

/* 
   2. Dual Cards Section 
*/
.vip-plans-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.plan-card {
    position: relative;
    width: 500px;
    height: 260px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    /* 修复移动端滚动时圆角丢失 */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    transform: translateZ(0);
    /* 强制GPU渲染 */
    -webkit-transform: translateZ(0);
    isolation: isolate;
    /* 创建独立堆叠上下文 */
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.plan-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.card-glass-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.plan-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* LV0 Card (Silver Texture) */
.lv0-card .card-glass-layer {
    background-image: url('../custom-projects/vip-intro/img/texture-silver-pure.webp');
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.4);
}

.lv0-card::before {
    display: none;
}

/* LV6 Card (Blue/Purple Texture) */
.lv6-card .card-glass-layer {
    background-image: url('../custom-projects/vip-intro/img/IMG_0920.webp');
}

.lv6-card {
    box-shadow: 0 15px 35px rgba(119, 68, 255, 0.4);
    overflow: hidden;
    /* For glint sweep */
}

/* LV6 Scheme 1: Glint Sweep (超强流光) */
.lv6-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(110deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%,
            transparent 100%);
    transform: skewX(-30deg) translateZ(30px);
    /* Positioned between content (25px) and stars (0-1px) */
    z-index: 10;
    /* Ensure it stays on top of text/content */
    pointer-events: none;
    opacity: 0;
}

/* LV6 Scheme 1: Star Pulse (漫天繁星 - 加强版) */
.lv6-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, #fff 1.5px, transparent 2px),
        radial-gradient(circle at 88% 12%, #fff 2px, transparent 3px),
        radial-gradient(circle at 32% 75%, #fff 1.2px, transparent 1.8px),
        radial-gradient(circle at 72% 55%, #a855f7 2.2px, transparent 3.5px),
        radial-gradient(circle at 45% 45%, #fff 1px, transparent 1.5px),
        radial-gradient(circle at 25% 65%, #fff 1.8px, transparent 2.5px),
        radial-gradient(circle at 92% 82%, #fff 1.5px, transparent 2.2px),
        radial-gradient(circle at 55% 15%, #60a5fa 1.8px, transparent 2.5px),
        radial-gradient(circle at 8% 88%, #fff 2px, transparent 2.5px),
        radial-gradient(circle at 65% 32%, #f472b6 1.5px, transparent 2.2px);
    background-size: 100% 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* 移动端全盈余呼吸感 */
@keyframes cardBodyPulse {

    0%,
    100% {
        box-shadow: 0 15px 35px rgba(119, 68, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 20px 50px rgba(168, 85, 247, 0.6);
        border-color: rgba(255, 255, 255, 1.0);
    }
}

/* PC: Hover Trigger Sweep */
/* PC: Always active Stars & Hover Glint */
@media (min-width: 768px) {
    .lv6-card::after {
        /* PC端也常驻繁星呼吸效果，增加背景深度 */
        animation: starPulseBreath 4s infinite ease-in-out;
    }

    .lv6-card:hover {
        /* PC端悬停时也触发边框呼吸反馈 */
        animation: cardBodyPulse 2s infinite ease-in-out;
    }

    .lv6-card:hover::before {
        /* PC端悬停时，强制应用高频、变速、循环的流光，确保用户随时可见 */
        animation: glintSweep 4s cubic-bezier(0.19, 1, 0.22, 1) infinite !important;
    }
}

/* Mobile: 律动循环反馈 */
@media (max-width: 767px) {
    .lv6-card {
        animation: cardBodyPulse 4s infinite ease-in-out;
    }

    .lv6-card::before {
        /* 移动端强制应用同样的极致变速曲线，并加长循环周期(5s)以突出单次流过的节奏 */
        animation: glintSweep 5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    }

    .lv6-card::after {
        animation: starPulseBreath 3s infinite ease-in-out;
    }
}

@keyframes glintSweep {
    0% {
        left: -200%;
        opacity: 0;
        transform: skewX(-30deg) translateZ(30px) scaleX(1);
    }

    5% {
        opacity: 0.9;
        /* Make it very noticeable */
    }

    20%,
    50% {
        left: -10%;
        transform: skewX(-30deg) translateZ(30px) scaleX(1.8);
        /* Maintain 3D height */
        opacity: 1;
    }

    /* 慢动作位置提前至20%开始，且物理位置略微偏左 */
    90% {
        opacity: 0.9;
    }

    100% {
        left: 200%;
        opacity: 0;
        transform: skewX(-30deg) translateZ(30px) scaleX(1);
    }
}

@keyframes starPulseBreath {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
        filter: blur(0.5px);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
        filter: blur(0px) drop-shadow(0 0 5px #fff);
    }
}

/* Plan Badge */
.plan-badge {
    position: absolute;
    top: 22px;
    right: -42px;
    padding: 8px 60px;
    font-size: 13px;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 5;
    letter-spacing: 1px;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* LV0 Badge: Full Spectrum Holographic Loop */
.lv0-card .plan-badge {
    background: linear-gradient(115deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(200, 255, 255, 0.9) 20%,
            rgba(220, 200, 255, 0.9) 40%,
            rgba(255, 255, 200, 0.9) 60%,
            rgba(200, 255, 220, 0.9) 80%,
            rgba(255, 255, 255, 0.95) 100%);
    background-size: 400% 100%;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.8);
    animation: holoFoilLoop 4s linear infinite;
}

/* LV6 Badge: High Clarity Crystal */
.lv6-card .plan-badge {
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.3) 0%,
            rgba(139, 92, 246, 0.05) 50%,
            rgba(88, 28, 135, 0.2) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(168, 85, 247, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: crystalBreathe 2s ease-in-out infinite alternate;
}

/* Plan Header */
.plan-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    z-index: 3;
    position: relative;
}

.plan-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3;
    position: relative;
    /* Context for pointer */
    perspective: 1000px;
    /* Enable 3D perspective */
}

/* Pointer Decoration (Star Dust) */
.plan-pointer-decor {
    position: absolute;
    right: -40px;
    /* Shifted left by 15px from -55px */
    bottom: -42px;
    /* Shifted up by 15px from -57px */
    width: 118px;
    /* Reduced by 20px from 138px */
    height: auto;
    pointer-events: none;
    z-index: 10;
    transform: rotate(-15deg) translateZ(40px);
    /* Rotated counter-clockwise by 15 degrees + 3D depth */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.1s ease-out;
    /* Smooth JS tracking */
}

/* Star Dust Energy Animation on Hover/Active */
.lv6-card:hover .plan-pointer-decor {
    animation: starDustEnergy 1.5s infinite ease-in-out;
}

@keyframes starDustEnergy {

    0%,
    100% {
        transform: rotate(-15deg) translateZ(45px) scale(1);
        filter: brightness(1);
    }

    50% {
        transform: rotate(-5deg) translateZ(55px) scale(1.1);
        filter: brightness(1.4) drop-shadow(0 0 15px rgba(168, 85, 247, 0.6));
    }
}

.plan-pointer-decor img {
    width: 100%;
    height: auto;
    display: block;
}

.plan-icon img {
    width: 70px;
    height: auto;
}

.lv0-card .plan-icon img {
    mix-blend-mode: screen;
    filter: brightness(1.2);
}

.lv6-card .plan-icon img {
    mix-blend-mode: multiply;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Watermark Icons */
.card-watermark-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-15deg);
    width: 140px;
    height: 140px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.card-watermark-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

.lv0-card .card-watermark-icon {
    right: 10px;
    opacity: 0.15;
}

.lv0-card .card-watermark-icon img {
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}

.lv6-card .card-watermark-icon {
    right: 10px;
    opacity: 0.3;
}

.lv6-card .card-watermark-icon img {
    mix-blend-mode: overlay;
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    transform: translateZ(-15px);
    /* Push diamond back */
}

.plan-info h3 {
    margin: 4px 0 5px 0;
    font-size: 20px;
    font-weight: 800;
    color: #333;
}

.lv6-card .plan-info h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-info p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    font-weight: 500;
}

.lv6-card .plan-info p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Plan Pricing */
.plan-price {
    font-size: 40px;
    font-weight: 800;
    color: #333;
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    letter-spacing: -1px;
}

.lv6-card .plan-price {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.plan-price small {
    font-size: 20px;
    margin-right: 2px;
}

.plan-price .period {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    margin-left: 2px;
    letter-spacing: 0;
}

.lv6-card .plan-price .period {
    color: rgba(255, 255, 255, 0.8);
}

/* 3D Content Container */
.lv6-card .plan-content {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lv6-card .plan-header,
.lv6-card .plan-footer {
    transform: translateZ(25px);
    /* Pull text forward */
}

.lv6-card .card-glass-layer {
    transform: translateZ(0);
}

/* Buttons */
.plan-btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(5px);
}

.btn-silver {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #444;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-silver:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-iridescent {
    background: linear-gradient(90deg, #fff 0%, #f3e7ff 100%);
    color: #5b21b6;
    border: none;
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-iridescent:hover {
    transform: translateY(-2px) scale(1.02);
    background: #fff;
    box-shadow:
        0 0 30px rgba(168, 85, 247, 0.6),
        0 0 60px rgba(168, 85, 247, 0.2);
    color: #4c1d95;
}



.feature.plan-info p {
    font-size: 14px;
    margin: 3px 0;
    opacity: 0.85;
    line-height: 1.4;
}

/* English Subtitle Styling */
.plan-info .sub-eng {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-top: -2px;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.lv6-card .plan-info .sub-eng {
    color: #e9d5ff;
    /* Soft purple for LV6 */
}

.lv0-card .plan-info .sub-eng {
    color: #475569;
    /* Darker Slate Gray for better contrast */
    opacity: 0.8;
}



.feature-item p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* ========================================
   响应式适配 (Responsive Design)
   ======================================== */

/* Tablet (768px - 900px) */
@media (max-width: 900px) {
    .vip-intro-container {
        padding: 70px 15px 30px;
    }

    .header-features-row {
        font-size: 12px;
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .plan-card {
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .header-title {
        font-size: 36px;
        margin-top: 20px;
        margin-bottom: 25px;
    }

    .header-crown {
        width: 110px;
    }

    .header-icon-box {
        top: -75px;
    }
}

/* Mobile Large (481px - 767px) */
@media (max-width: 767px) {

    /* Pointer Mobile Adjustments - 3D OFF for Scheme 1 */
    .plan-card.lv6-card {
        perspective: none !important;
    }

    .lv6-card .plan-content {
        transform: none !important;
        transform-style: flat !important;
    }

    .lv6-card .plan-header,
    .lv6-card .plan-footer,
    .lv6-card .card-watermark-icon img,
    .lv6-card .plan-pointer-decor {
        transform: none !important;
        translate: 0 0 0 !important;
    }

    .plan-pointer-decor {
        width: 100px;
        right: -15px;
        /* Shifted right by 5px from -10px */
        bottom: -35px;
        /* Shifted up by 5px from -40px */
        transform: rotate(-15deg) !important;
        /* Keep rotation but drop 3D */
    }

    .vip-intro-container {
        padding: 65px 12px 25px;
        /* Recalibrated to allow star icon visibility while staying compact (from 15px) */
    }

    /* 顶部卡片 - 极致压缩高度 (对标 PC 窄条风格) */
    .vip-header-card {
        padding: 12px 10px 8px;
        /* Extremely compressed height (reduced from 30px) */
        margin-bottom: 45px;
        /* Increased for better separation */
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: auto;
        margin-top: 0;
    }

    .header-icon-box {
        top: -65px;
        /* Lowered to stay within visible area of padding (from -85px) */
        /* Adjust for 120px star */
    }

    .header-crown {
        width: 120px;
        /* Reduced from 160px for better proportion */
    }

    .header-title {
        font-size: 24px;
        /* Significant boost for header presence (from 18px) */
        font-weight: 800;
        margin: 15px 0 5px 0;
        /* Clear star decoration */
        line-height: 1;
    }

    .header-features-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        /* 均匀散开 */
        align-items: center;
        gap: 8px 10px;
        font-size: 9px;
        line-height: normal;
        width: 100%;
        padding: 0 5px;
    }

    .header-features-row span {
        white-space: nowrap;
        text-align: center;
        display: flex;
        align-items: center;
        flex: 0 1 auto;
        padding: 0 2px;
    }

    .header-features-row span i {
        font-size: 9px;
        margin-right: 3px;
    }

    /* 会员卡片 */
    .vip-plans-container {
        gap: 20px;
        margin-bottom: 40px;
    }

    .plan-card {
        width: 100%;
        min-height: 240px;
        /* Increased from 200px -> 240px for breathing room */
        padding: 25px 20px;
        /* Slightly more padding */
        border-radius: 16px;
    }

    .plan-icon img {
        width: 55px;
    }

    .plan-info h3 {
        font-size: 22px;
        /* 18px -> 22px (+20%) */
        margin-bottom: 4px;
    }

    .plan-info .sub-eng {
        font-size: 10px;
        /* 8.5px -> 10px (+18%) */
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }



    .plan-info p {
        font-size: 13px;
        /* 11px -> 13px (+18%) */
        line-height: 1.35;
    }

    .plan-price {
        font-size: 32px;
    }

    .plan-price small {
        font-size: 16px;
    }

    .plan-price .period {
        font-size: 12px;
    }

    .plan-btn {
        padding: 10px 24px;
        /* 8px 20px -> 10px 24px */
        font-size: 16px;
        /* 13px -> 16px (+23%) */
    }

    /* 徽章适配 */
    .plan-badge {
        top: 20px;
        right: -52px;
        padding: 7px 60px;
        /* Increased padding */
        font-size: 13px;
        /* 11px -> 13px (+18%) */
    }

    /* 水印图标 (Mobile Large) - 避免遮挡按钮，往左上移 */
    .card-watermark-icon {
        width: 140px;
        height: 140px;
        right: 75px;
        bottom: 30px;
        top: auto;
        transform: rotate(-15deg);
        opacity: 0.15;
    }

    /* 银卡 (LV0) 水印单独再左移25px */
    .lv0-card .card-watermark-icon {
        right: 90px;
        /* 向右微调10px */
    }

    /* 星空卡 (LV6) 水印特大号，更突出 */
    .lv6-card .card-watermark-icon {
        width: 180px;
        height: 180px;
        opacity: 0.25;
        right: 50px;
        bottom: 10px;
        filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
    }

    /* 特性区域 */
    .section-title {
        font-size: 18px;
        padding: 8px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .feature-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .feature-item h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .feature-item p {
        font-size: 11px;
    }
}

/* Mobile Small (max 480px) */
@media (max-width: 480px) {
    .vip-intro-main {
        padding-bottom: 40px;
    }

    /* Pointer Mobile Adjustments */
    .plan-pointer-decor {
        width: 80px;
        right: -25px;
        /* Shifted right by 5px from -20px */
        bottom: -30px;
        /* Shifted up by 5px from -35px */
        transform: rotate(-15deg);
    }

    .vip-intro-container {
        padding: 60px 10px 20px;
        /* Recalibrated for star visibility (from 10px) */
    }

    /* 背景层 - 移动端禁用固定背景以提升性能 */
    .holo-bg-layer {
        background-attachment: scroll;
    }

    /* 顶部卡片 - 小屏极致适配 */
    .vip-header-card {
        padding: 10px 8px 8px;
        /* Flat "narrow strip" style (from 30px) */
        margin-bottom: 40px;
        /* Increased for better separation */
        min-height: auto;
    }

    .header-icon-box {
        top: -60px;
        /* Brought back into view (from -80px) */
        /* Adjust for 110px star */
    }

    .header-crown {
        width: 110px;
        /* Reduced from 150px */
    }

    /* 星光动效 - 移动端减弱以省电 */
    @keyframes starSparkle {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
            filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15)) brightness(1);
        }

        50% {
            transform: translateY(-5px) rotate(3deg);
            filter: drop-shadow(0 15px 15px rgba(100, 150, 255, 0.4)) brightness(1.3);
        }
    }

    .header-title {
        font-size: 22px;
        /* Large and bold (from 16px) */
        font-weight: 800;
        margin: 15px 0 6px 0;
        line-height: 1;
        letter-spacing: -0.2px;
    }

    .header-features-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        gap: 6px 8px;
        font-size: 8.5px;
        padding: 0 5px;
    }

    .header-features-row span {
        white-space: nowrap;
        flex: 0 1 auto;
    }

    /* 会员卡片 */
    .vip-plans-container {
        gap: 15px;
        margin-bottom: 30px;
    }

    .plan-card {
        min-height: 220px;
        padding: 22px 18px;
        border-radius: 14px;
    }

    .plan-header {
        gap: 12px;
    }

    .plan-icon img {
        width: 48px;
    }

    .plan-info h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .plan-info p {
        font-size: 11px;
        line-height: 1.4;
    }

    .plan-footer {
        margin-top: 15px;
    }

    .plan-price {
        font-size: 28px;
    }

    .plan-price small {
        font-size: 14px;
    }

    .plan-price .period {
        font-size: 11px;
    }

    .plan-btn {
        padding: 8px 18px;
        font-size: 12px;
        border-radius: 25px;
    }

    /* 徽章 - 移动端缩小 */
    .plan-badge {
        top: 15px;
        right: -48px;
        padding: 5px 45px;
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    /* 水印图标 - 移动端更小更淡 (Revised Pos) */
    .card-watermark-icon {
        width: 110px;
        height: 110px;
        right: 75px;
        bottom: 30px;
        opacity: 0.15;
    }

    /* 银卡 (LV0) 水印单独再左移25px */
    .lv0-card .card-watermark-icon {
        right: 90px;
        /* 向右微调10px */
    }

    .lv6-card .card-watermark-icon {
        width: 140px;
        height: 140px;
        opacity: 0.3;
        right: 50px;
        bottom: 0px;
    }



    /* Glass panel - 移动端减少模糊以提升性能 */
    .glass-panel {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Ultra Small (max 360px) - 小屏手机 */
@media (max-width: 360px) {
    .vip-intro-container {
        padding: 50px 8px 15px;
    }

    .header-icon-box {
        top: -48px;
    }

    .header-crown {
        width: 75px;
    }

    .header-title {
        font-size: 15px;
        font-weight: 800;
        margin: 8px 0 4px 0;
    }

    .plan-card {
        min-height: 220px;
        /* Consistency with 480px approved height */
    }

    .header-features-row {
        display: grid;
        grid-template-columns: repeat(2, auto);
        /* 2x3 on ultra small */
        font-size: 8px;
        gap: 4px 8px;
    }

    .plan-card {
        min-height: 220px;
        /* RESTORED correctly */
        padding: 18px;
    }

    .plan-icon img {
        width: 42px;
    }

    .plan-info h3 {
        font-size: 15px;
    }

    .plan-info p {
        font-size: 10px;
    }

    .plan-price {
        font-size: 24px;
    }

    .plan-btn {
        padding: 7px 15px;
        font-size: 11px;
    }

    .plan-badge {
        font-size: 9px;
        padding: 4px 40px;
        right: -50px;
    }

    .features-grid {
        gap: 8px;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-icon img {
        width: 38px;
        height: 38px;
    }

    .feature-item h4 {
        font-size: 12px;
    }

    .feature-item p {
        font-size: 9px;
    }
}

/* Animations */
@keyframes holoFoilLoop {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 400% 50%;
    }
}

@keyframes crystalBreathe {
    0% {
        box-shadow:
            0 8px 20px rgba(0, 0, 0, 0.2),
            0 0 15px rgba(168, 85, 247, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.4);
        transform: rotate(45deg) scale(1);
    }

    100% {
        box-shadow:
            0 10px 30px rgba(168, 85, 247, 0.4),
            0 0 40px rgba(168, 85, 247, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 1.0);
        border-color: rgba(255, 255, 255, 0.9);
        transform: rotate(45deg) scale(1.08);
    }
}

/* ========================================
   New VIP Privilege Section (Big Tech Style)
   ======================================== */
.vip-privilege-container {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.privilege-section-header {
    text-align: center;
    margin-bottom: 25px;
}

.privilege-section-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.privilege-section-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 1. Comparison Matrix */
.privilege-compare-box {
    padding: 30px;
    border-radius: 24px;
    /* More rounded */
    background: rgba(255, 255, 255, 0.75);
    /* More opaque for cleaner look */
    border: 1px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
    backdrop-filter: blur(20px);
    /* Stronger blur */
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    /* Subtle depth */
}

.compare-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    /* Changed for border-radius on rows */
    border-spacing: 0;
    min-width: 600px;
}

.compare-table th {
    padding: 24px 20px;
    font-size: 16px;
    font-weight: 800;
    /* Bolder headers */
    color: #1e293b;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.03);
}

.compare-table th.feature-col {
    text-align: left;
    width: 30%;
    padding-left: 30px;
    color: #64748b;
    /* Softer color for labels */
}

.compare-table th.lv6-col {
    color: #7c3aed;
    /* Vibrant Purple */
    position: relative;
}

.th-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: text-bottom;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.compare-table td {
    padding: 20px 20px;
    font-size: 15px;
    color: #555;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.8);
}

.compare-table td.feature-name {
    text-align: left;
    padding-left: 30px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-name i {
    width: 24px;
    text-align: center;
    color: #94a3b8;
    font-size: 16px;
}

/* Highlight Cell for LV6 */
.highlight-cell {
    font-weight: 700;
    color: #333;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.04), transparent);
    /* Softer purple */
}

/* Priority Rows */
.priority-row td {
    background: rgba(139, 92, 246, 0.03);
    /* Faint purple background */
    font-weight: 600;
}

.priority-row .highlight-cell {
    color: #6d28d9;
    /* Deep purple highlight */
    font-weight: 800;
    background: rgba(139, 92, 246, 0.08);
    /* Slightly darker highlight */
}

/* Weakened Download Row handled by removing premium-text class in HTML */



/* 3. Future Placeholder */
.privilege-future-box {
    margin-top: 10px;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.future-content {
    filter: blur(0.5px);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.privilege-future-box:hover .future-content {
    filter: blur(0);
    opacity: 1;
}

.future-icon-blur {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 900px) {
    .privilege-details-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vip-privilege-container {
        margin-top: 40px;
        padding: 0 10px;
    }

    .privilege-compare-box {
        padding: 10px 5px;
        /* Minimal padding */
        border-radius: 16px;
    }

    .compare-table-wrapper {
        overflow-x: visible;
        /* Disable scroll */
    }

    .compare-table {
        min-width: auto;
        width: 100%;
        table-layout: auto;
        /* Let content decide width */
    }

    .compare-table th,
    .compare-table td {
        padding: 12px 2px;
        font-size: 10px;
        /* Safe size for single line */
        white-space: nowrap;
        /* Force single line */
        text-align: center;
    }

    .compare-table th.feature-col,
    .compare-table td.feature-name {
        padding-left: 8px;
        text-align: left;
        width: auto;
        /* Remove fixed width */
    }

    .compare-table th.lv0-col,
    .compare-table td:nth-child(2),
    .compare-table th.lv6-col,
    .compare-table td:nth-child(3) {
        width: auto;
        /* Remove fixed width */
    }

    .feature-name i {
        display: none;
        /* Hide icons to save space */
    }

    .th-icon {
        width: 14px;
        height: 14px;
        margin-left: 2px;
        display: inline-block;
        /* Ensure visible */
    }

    .compare-table th {
        font-size: 11px;
        /* Header size */
    }

    .privilege-details-box {
        grid-template-columns: 1fr;
    }

    .detail-card {
        display: flex;
        text-align: left;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }

    .detail-icon {
        margin: 0;
        width: 44px;
        height: 44px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .detail-card div {
        flex: 1;
    }

    .detail-card h3 {
        margin-bottom: 4px;
    }
}

/* ========================================
   Wealth Loop Section (Deep Dive Redesign)
   ======================================== */
.wealth-loop-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.wealth-card {
    padding: 30px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* backdrop-filter: blur(10px); Removed for solid look */
    position: relative;
    overflow: hidden;
    /* Restore clipping for clean corners */
    border: none;
    /* Clean borderless look */
}

.wealth-card:hover {
    transform: translateY(-8px);
    /* Shadow handled by specific classes below */
}

/* Specific Solid Backgrounds (Nordic Macaron) */
.wealth-card-savings {
    background: #fff1f2;
    /* Rose 50 */
}

.wealth-card-referral {
    background: #eff6ff;
    /* Blue 50 */
}

.wealth-card-creator {
    background: #fffbeb;
    /* Amber 50 */
}

/* Icons with Gradients */
.wealth-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.savings-gradient {
    background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
    /* Pink/Red */
}

.referral-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    /* Blue */
}

.creator-gradient {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    /* Gold */
}

/* Typography */
.wealth-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
    /* Center title */
}

.wealth-highlight {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    /* Revert to left align per user request */
    gap: 6px;
}

.wealth-highlight .big-num {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.wealth-highlight.gold-text .big-num {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-weight: 600;
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.wealth-card p {
    font-size: 13px;
    color: #475569;
    /* Darker clean gray */
    line-height: 1.7;
    /* Breathing room */
    margin: 0;
    text-align: left;
    background: none;
    /* Remove boxed background */
    padding: 0;
    /* Remove boxed padding */
    border-radius: 0;
}

.wealth-card p strong {
    color: #0f172a;
    font-weight: 600;
}

/* Calculation Box for Creator */
.calc-box {
    margin-top: 20px;
    background: rgba(255, 237, 213, 0.4);
    /* Very subtle orange tint */
    padding: 12px 15px;
    border-radius: 12px;
    border: none;
    /* Remove cheap dashed border */
    text-align: left;
}

.calc-label {
    display: block;
    font-size: 10px;
    color: #9a3412;
    /* Deep orange */
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.calc-formula {
    font-size: 13px;
    color: #7c2d12;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: wrap;
    /* Safe wrap */
}

.calc-formula strong {
    font-size: 15px;
    color: #d97706;
}

/* Responsive */
@media (max-width: 900px) {
    .wealth-loop-container {
        grid-template-columns: 1fr;
        /* Stack visually */
        gap: 20px;
    }

    .wealth-card {
        padding: 24px;
        display: block;
        /* Stack internally too for consistency */
        text-align: left;
        /* Revert to left align on mobile for consistency */
    }

    .wealth-icon-box {
        margin: 0 auto 15px auto;
        /* Center icon still looks best */
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .wealth-card h3 {
        grid-column: 2;
        margin-bottom: 4px;
        align-self: end;
    }

    .wealth-highlight {
        grid-column: 2;
        justify-content: flex-start;
        margin-bottom: 0;
        align-self: start;
    }

    .wealth-highlight .big-num {
        font-size: 28px;
    }

    .wealth-card p {
        grid-column: 1 / -1;
        margin-top: 15px;
    }

    .calc-box {
        grid-column: 1 / -1;
    }
}

/* ========================================
   Visual Polish (Golden Statement & Flow)
   ======================================== */

/* 1. Golden Statement Header */
.golden-header {
    margin-bottom: 40px;
    position: relative;
    padding: 0 20px;
}

.golden-statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.hairline {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.4), transparent);
    /* Gold fade out */
}

.gradient-text {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1e293b 0%, #4b5563 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding: 5px 0;
}

/* 2. Flow Operators (+) - REMOVED per user request */
/* ========================================
   Exquisite Interaction (Glow, Shimmer, Badges)
   ======================================== */

/* 1. Ambient Glow (Theme Colored Shadows) */
.wealth-card-savings:hover {
    box-shadow: 0 15px 40px rgba(244, 63, 94, 0.15);
    /* Pink Glow */
    border-color: rgba(244, 63, 94, 0.3);
}

.wealth-card-referral:hover {
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    /* Blue Glow */
    border-color: rgba(59, 130, 246, 0.3);
}

.wealth-card-creator:hover {
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.2);
    /* Gold Glow */
    border-color: rgba(217, 119, 6, 0.4);
}

/* 2. Glass Shimmer Animation */
.wealth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    transition: left 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.wealth-card:hover::before {
    left: 200%;
    transition: left 0.7s ease-in-out;
}

/* 3. Colored Badges */
.wealth-highlight .sub-text {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    /* transition: all 0.3s ease; No specific transition needed yet */
}

/* Pink Badge */
.badge-pink {
    color: #be123c;
    /* Rose 700 */
    background: rgba(255, 228, 230, 0.8);
    /* Rose 100 */
    border: 1px solid rgba(251, 113, 133, 0.2);
}

/* Blue Badge */
.badge-blue {
    color: #1d4ed8;
    /* Blue 700 */
    background: rgba(219, 234, 254, 0.8);
    /* Blue 100 */
    border: 1px solid rgba(96, 165, 250, 0.2);
}

/* Gold Badge */
.badge-gold {
    color: #b45309;
    /* Amber 700 */
    background: rgba(254, 243, 199, 0.8);
    /* Amber 100 */
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* 4. Colored Big Numbers (Theme Gradients) */
.wealth-card-savings .big-num {
    background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    /* Rose Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wealth-card-referral .big-num {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    /* Blue Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ensure Gold is consistent (it was already .gold-text but explicit is better) */
.wealth-card-creator .big-num {
    background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    /* Gold Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 4. Colored Big Numbers (Theme Gradients) */
.wealth-card-savings .big-num {
    background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wealth-card-referral .big-num {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
   Section C: White Label Sovereignty (Dark Mode)
   ======================================== */
.white-label-section {
    margin-top: 40px;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    /* Midnight Blue */
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Texture (Subtle Grid) */
.white-label-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    pointer-events: none;
}

/* Content Side */
.wl-content {
    flex: 1;
    z-index: 2;
    text-align: left;
    /* Explicitly left align */
}

.wl-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.wl-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: -1px;
}

.gradient-text-gold {
    font-size: 24px;
    font-weight: 300;
    /* Thin, elegant font */
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: block;
}

.wl-content p {
    font-size: 15px;
    color: #94a3b8;
    /* Slate 400 */
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Features List */
.wl-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.wl-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #e2e8f0;
}

.wl-features li i {
    color: #3b82f6;
    /* Blue check */
    font-size: 16px;
}

/* Visual Side (Mockup) */
.wl-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    /* 1:2 app ratio approx */
    background: #000;
    border-radius: 50px;
    /* More rounded real phone */
    border: 12px solid #1a1a1a;
    /* Bezel */
    box-shadow:
        0 0 0 2px #333,
        /* Outer rim */
        0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
    overflow: hidden;
    will-change: transform;
    /* Hardware Acceleration */
}

.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    border-radius: 38px;
    /* Inner radius matching bezel */
    /* Force clipping for transformed children */
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.phone-screen iframe {
    width: 480px !important;
    /* Ultra-wide 480px viewport */
    height: 960px !important;
    /* Ultra-wide height 480x2 */
    transform: scale(0.534);
    /* Slightly > 0.5333 to prevent white gap */
    /* (280-24)px / 480px ≈ 0.533 */
    transform-origin: top left;
    border: none;
    display: block;
    background: #fff;
    /* Hide scrollbars but allow scrolling */
    scrollbar-width: none;
    -ms-overflow-style: none;
    will-change: transform;
    /* Hardware Acceleration */
}

.wl-action-hint {
    margin-top: 30px;
    font-size: 14px;
    color: #ffd700;
    /* Bright Gold */
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 16px;
    border-radius: 12px;
    display: inline-flex;
    /* Fit content */
    align-items: center;
    gap: 10px;
    opacity: 1;
    /* Full visibility */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(4px);
}

.wl-action-hint i {
    animation: swipeUp 1.5s ease-in-out infinite;
    font-size: 16px;
}

@keyframes swipeUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.wl-action-hint strong {
    color: #fff;
    font-weight: 600;
}

/* Owner Tag */
.owner-tag {
    position: absolute;
    bottom: 30px;
    right: -30px;
    /* Move to right side */
    left: auto;
    /* Reset left */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    /* Ensure on top of bezel but check screen overlap */
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.owner-tag i {
    color: #3b82f6;
    font-size: 16px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .white-label-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .wl-content {
        text-align: center;
    }

    .wl-content p {
        margin: 0 auto 30px auto;
    }

    .wl-features {
        grid-template-columns: 1fr;
        justify-items: start;
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
        border-width: 8px;
        /* Thinner bezel for mobile */
        transform: none;
        /* No 3D on mobile */
    }

    .phone-screen iframe {
        transform: scale(0.467);
        /* Slightly > 0.4666 to prevent white gap */
    }



    .phone-mockup:hover {
        transform: scale(1.02);
    }

    .owner-tag {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        /* Move below phone on mobile */
        right: auto;
        width: max-content;
        animation: none;
    }
}

/* Text Toggle */
.text-mobile {
    display: none;
}

@media (max-width: 900px) {
    .text-desktop {
        display: none;
    }

    .text-mobile {
        display: inline;
    }

    /* Mobile Owner Tag Fix */
    .owner-tag {
        position: relative !important;
        /* Force relative flow */
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-top: 20px;
        display: inline-flex;
    }
}

/* Fix Mobile Stack for Owner Tag */
@media (max-width: 900px) {
    .wl-visual {
        flex-direction: column !important;
        align-items: center !important;
    }
}
/* Security: Prevent Text Selection */
.vip-intro-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
