/*==================================================
 LiveOne Landing Page V4
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#07070f;

    --card:rgba(255,255,255,.06);

    --border:rgba(255,255,255,.08);

    --text:#ffffff;

    --sub:#c7c9d9;

    --purple:#8a5cff;

    --purple2:#c14dff;

    --pink:#ff4fd8;

    --radius:22px;

}

html{

    width:100%;

    height:100%;

}

body{

    width:100%;
    min-height:100vh;

    overflow-x:hidden;

    color:#fff;

    background:
    radial-gradient(circle at top,#8d46ff 0%,#52278d 18%,#1b1634 45%,#090912 100%);

    position:relative;

}

/*==============================
背景
==============================*/

/*==================================
Glow Layer
==================================*/

.bg-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(120px);

    opacity:.8;

    pointer-events:none;

    z-index:-5;

}

.glow-1{

    width:420px;

    height:420px;

    background:#944dff;

    top:-180px;

    left:-120px;

}

.glow-2{

    width:340px;

    height:340px;

    background:#ff5ed2;

    right:-120px;

    top:120px;

}

.glow-3{

    width:300px;

    height:300px;

    background:#596dff;

    bottom:-120px;

    left:30%;

}

.glow-4{

    width:260px;

    height:260px;

    background:#c05cff;

    bottom:180px;

    right:-80px;

}

/*==============================
发光层
==============================*/

.bg-glow{

    position:fixed;

    border-radius:50%;

    filter:blur(90px);

    z-index:-4;

    opacity:.65;

}

.glow-1{

    width:260px;

    height:260px;

    background:#8a5cff;

    top:-100px;

    left:-60px;

}

.glow-2{

    width:220px;

    height:220px;

    background:#ff43e4;

    right:-80px;

    top:120px;

}

.glow-3{

    width:260px;

    height:260px;

    background:#6a4cff;

    bottom:-120px;

    left:40%;

}

/*==============================
主体
==============================*/

.container{

    width:100%;

    max-width:430px;

    min-height:100vh;

    margin:auto;

    padding:20px;

    display:flex;

    flex-direction:column;

}

/*==============================
顶部
==============================*/

.header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:24px;

}

.logo-box{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo{

    width:56px;

    height:56px;

    border-radius:18px;

    box-shadow:

    0 0 25px

    rgba(170,90,255,.4);

}

.logo-text h1{

    font-size:26px;

    font-weight:700;

    line-height:30px;

}

.logo-text span{

    color:var(--sub);

    font-size:13px;

}

.official{

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    color:#79ffd7;

    font-size:12px;

}

/*==============================
Hero
==============================*/

.hero{

    display:grid;

    grid-template-columns:minmax(0,1fr) minmax(130px,42vw);

    gap:16px;

    align-items:center;

    margin-bottom:28px;

}
.hero-banner{

    position:relative;

    display:block;

    overflow:visible;

    text-align:center;

    font-size:40px;

    font-weight:900;

    font-style:italic;

    letter-spacing:-1px;

    line-height:1;

    white-space:nowrap;

    color:#ffffff;

    transform:skewX(-4deg);

    user-select:none;

    text-shadow:

    /* 白色高光 */
    0 1px 0 rgba(255,255,255,.95),

    /* 粉色厚度 */
    0 2px 0 #ffe3fb,

    /* 紫色厚度 */
    0 3px 0 #f0a4ff,

    /* 下边缘阴影 */
    0 4px 2px rgba(120,40,180,.18),

    /* 内发光 */
    0 0 4px rgba(255,255,255,.35),

    /* 外发光 */
    0 0 10px rgba(215,120,255,.28);

    animation:

        heroGlow 2.5s ease-in-out infinite alternate,

        heroFloat 3s ease-in-out infinite;

}
.hero-banner::before{
    display:none;
}
.hero-banner::after{

    content:"";

    position:absolute;

    top:0;
    bottom:0;
    left:-18%;
    width:12%;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,.35) 0%,
        rgba(255,255,255,.12) 20%,
        transparent 45%
    );

    pointer-events:none;

}
@keyframes heroGlow{

    0%{

        opacity:.92;

        filter:brightness(1);

    }

    100%{

        opacity:1;

        filter:brightness(1.08);

    }

}

@keyframes heroShine{

    0%{

        left:-35%;

        opacity:0;

    }

    15%{

        opacity:1;

    }

    85%{

        opacity:1;

    }

    100%{

        left:120%;

        opacity:0;

    }

}

.live-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#ff3568;

    border-radius:999px;

    padding:8px 16px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

    width:max-content;

}

.live-tag .dot{

    width:8px;

    height:8px;

    border-radius:50%;

    background:#fff;
}
    
.hero-content{

    min-width:0;

    position:relative;

    z-index:10;

    padding-top:18px;

}

.hero-content h2{

    font-size:38px;

    line-height:44px;

    margin-bottom:18px;

    font-weight:800;

    text-shadow:

    /* 第一层：顶部白高光 */
    0 1px 0 rgba(255,255,255,.95),

    /* 第二层：粉色厚度 */
    0 2px 0 rgba(255,205,245,.95),

    /* 第三层：紫色厚度 */
    0 3px 0 rgba(220,120,255,.9),

    /* 第四层：深紫底边 */
    0 5px 4px rgba(95,20,180,.22),

    /* 第五层：中心发光 */
    0 0 5px rgba(255,255,255,.28),

    /* 第六层：外围发光 */
    0 0 14px rgba(205,90,255,.18);

}


.desc{

    font-size:15px;

    line-height:28px;

    font-weight:500;

    background:linear-gradient(
        90deg,
        #ff9adf 0%,
        #ffc3f1 18%,
        #ffdff8 35%,
        #d6d0ff 55%,
        #9fe9ff 78%,
        #7ff5ff 100%
    );

    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:
        0 0 6px rgba(255,170,240,.35),
        0 0 12px rgba(160,220,255,.22),
        0 1px 2px rgba(255,255,255,.18);

}

.feature-list{

    list-style:none;

    margin:20px 0;

    padding:0;

    padding-inline-start:0;

}

.feature-list li{

    position:relative;

    display:block;

    padding-left:18px;

    margin-bottom:12px;

    color:#ededf4;

    font-size:14px;

}

.feature-list li i{

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    width:8px;

    height:8px;

    border-radius:50%;

    background:#b46dff;

}
/*==================================
下载按钮
==================================*/

.download-btn{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:58px;

    border-radius:18px;

    overflow:hidden;

    background:linear-gradient(135deg,#7d4dff 0%,#b14dff 55%,#ff52c9 100%);

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:
    0 12px 35px rgba(155,90,255,.45),
    0 0 25px rgba(177,77,255,.45);

    transition:.35s;

}
.download-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

}

/* 在这里新增 ↓↓↓ */

.download-icon{

    width:25px;

    height:25px;

    flex-shrink:0;

    filter:drop-shadow(0 0 2px rgba(255,255,255,.35));

}

.download-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 45px rgba(155,90,255,.55),
    0 0 45px rgba(177,77,255,.6);

}

.download-btn:active{

    transform:scale(.98);

}

.download-btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.35) 50%,
    transparent 100%);

    transform:translateX(-120%);

    transition:.8s;

}

.download-btn:hover::before{

    transform:translateX(120%);

}

.download-btn span{

    position:relative;

    z-index:2;

}

/*==================================
提示
==================================*/

.tips{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:18px;

}

.tips span{

    display:inline-flex;

    align-items:center;

    gap:7px;

    padding:6px 12px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(16px);

    color:#d8d8e4;

    font-size:12px;

    line-height:1;

    white-space:nowrap;

}
.tip-icon{
    width:16px;
    height:16px;
    object-fit:contain;
    vertical-align:middle;
    margin-right:6px;
    flex-shrink:0;
}

.tip-icon.android{

    color:#78ff6c;

}

.tip-icon.auth{

    color:#c38dff;

}

.tip-icon.secure{

    color:#67cfff;

}
/*==================================
人物区域
==================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:flex-end;

    align-items:flex-end;

    width:100%;

    height:520px;      /* ← 新增 */

    overflow:visible;  /* ← 新增 */

}


.hero-light{

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(185,80,255,.8),
    rgba(185,80,255,.1),
    transparent);

    filter:blur(28px);

    bottom:20px;

    z-index:0;

}

.hero-image img{

    position:absolute;

    right:-50px;

    bottom:0;

    width:auto;

    height:520px;

    max-width:none;

    min-width:unset;

    object-fit:contain;

    z-index:2;

    filter:
        drop-shadow(0 25px 35px rgba(0,0,0,.55))
        drop-shadow(0 0 35px rgba(180,90,255,.45));

}

/*==================================
主播卡片
==================================*/

.anchors{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:12px;

    margin:28px 0;

}

.anchor-card{

    position:relative;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:22px;

    text-align:center;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

}

.anchor-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(120,70,255,.28);

}

.anchor-card img{

    width:100%;

    height:165px;

    object-fit:cover;

}

.live-badge{

    position:absolute;

    top:10px;

    left:10px;

    padding:5px 10px;

    border-radius:999px;

    background:#ff3568;

    color:#fff;

    font-size:11px;

    font-weight:700;

    z-index:5;

}

.anchor-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    width:100%;

    padding:16px 10px;

    text-align:center;

    box-sizing:border-box;

}


.anchor-info h3{

    margin:8px 0 6px;

    width:100%;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#ffffff;

    line-height:1.2;

}

.anchor-info p{

    margin:0;

    width:100%;

    text-align:center;

    font-size:14px;

    font-weight:500;

    color:rgba(255,255,255,.75);

    line-height:1.4;

}

/*==================================
Feature Grid
==================================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin:26px 0 34px;

}

.feature-item{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    padding:18px 12px 20px;

    border-radius:24px;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        rgba(150,90,255,.18) 0%,
        rgba(95,55,190,.12) 100%
    );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.3s ease;

}

.feature-item:hover{

    transform:translateY(-4px);

    border-color:rgba(190,120,255,.35);

    box-shadow:0 14px 28px rgba(116,70,255,.22);

}

.feature-item::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    top:-60px;

    left:50%;

    transform:translateX(-50%);

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(255,255,255,.12),
        transparent 70%);

    pointer-events:none;

}
/*==================================
Feature Icon
==================================*/

.feature-icon{

    width:96px;

    height:96px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:18px;

    border-radius:24px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.03)
    );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 10px rgba(255,255,255,.08),
        0 8px 20px rgba(116,70,255,.20);

    overflow:hidden;

}

.feature-icon img{

    width:78%;

    height:78%;

    object-fit:contain;

    display:block;

    transition:.3s ease;

}

.feature-item:hover .feature-icon img{

    transform:scale(1.08);

}
/*==================================
Feature Text
==================================*/

.feature-item h4{

    margin:0 0 8px;

    font-size:15px;

    font-weight:700;

    color:#fff;

    line-height:1.2;

    text-align:center;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

    width:100%;

}

.feature-item p{

    margin:0;

    font-size:13px;

    line-height:22px;

    color:rgba(255,255,255,.72);

}

/*==================================
Bottom Download
==================================*/

.bottom-download{

    margin-top:auto;

    margin-bottom:22px;

}

.bottom-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:18px;

    padding:22px;

    border-radius:26px;

    background:

    linear-gradient(
    135deg,
    rgba(138,92,255,.16),
    rgba(255,82,201,.08));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

}

.bottom-text h3{

    font-size:22px;

    margin-bottom:8px;

}

.bottom-text p{

    color:#c7cbda;

    font-size:13px;

}

.bottom-btn{

    min-width:120px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:16px;

    background:linear-gradient(
    135deg,
    #8a5cff,
    #c14dff,
    #ff52c9);

    color:#fff;

    font-weight:700;

    box-shadow:
    0 10px 25px rgba(177,77,255,.35);

    transition:.3s;

}

.bottom-btn:hover{

    transform:translateY(-2px);

}

/*==================================
Footer
==================================*/

.footer{

    padding:18px 0 8px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:12px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:10px;

}

.footer-logo img{

    width:32px;

    height:32px;

    border-radius:10px;

}

.footer-logo span{

    font-size:15px;

    font-weight:600;

}

.footer p{

    color:#8d93a9;

    font-size:12px;

}

/*==================================
Scrollbar
==================================*/

::-webkit-scrollbar{

    width:0;

    height:0;

}

/*==================================
Responsive
==================================*/

@media (max-width:430px){

    .container{

        padding:16px;

    }

    .hero{

        grid-template-columns:minmax(0,1fr) minmax(150px,46vw);

    }

    }

    .live-tag{

        margin-left:auto;

        margin-right:auto;

    }

    .feature-list li{

        justify-content:center;

    }

    .anchors{

        gap:8px;

    }

    .anchor-card img{

        height:135px;

    }

    .feature-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .bottom-card{

        flex-direction:column;

        text-align:center;

    }

    .bottom-btn{

        width:100%;

    }

}

@media (max-width:360px){

    .hero-content h2{

        font-size:30px;

        line-height:38px;

    }

    .desc{

        font-size:14px;

        line-height:24px;

    }

    .feature-grid{

        gap:8px;

    }

    .feature-item{

        padding:14px 8px;

    }

}
/*==========================
JS Animation
==========================*/

body{

    opacity:0;

    transition:.5s ease;

}

body.loaded{

    opacity:1;

}

.clicked{

    transform:scale(.96)!important;

}
/*==================================
Neon Line
==================================*/

body::after{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-3;

    background:

    linear-gradient(
    135deg,
    transparent 45%,
    rgba(255,255,255,.03) 50%,
    transparent 55%),

    linear-gradient(
    45deg,
    transparent 30%,
    rgba(180,90,255,.05) 50%,
    transparent 70%);

    mix-blend-mode:screen;

}
/*==================================
Noise
==================================*/

.container{

    position:relative;

}

.container::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    opacity:.03;

    background-image:

    radial-gradient(#ffffff 1px, transparent 1px);

    background-size:18px 18px;

}
/* =======================
Neon Background
======================= */

body::before{

    content:"";

    position:fixed;

    inset:0;

    z-index:-100;

    pointer-events:none;

    background:

    radial-gradient(
    420px 420px at 20% 10%,
    rgba(170,90,255,.35),
    transparent 70%),

    radial-gradient(
    360px 360px at 90% 20%,
    rgba(255,90,200,.25),
    transparent 65%),

    radial-gradient(
    420px 420px at 60% 90%,
    rgba(110,120,255,.22),
    transparent 70%);

}
body::after{

    content:"";

    position:fixed;

    inset:0;

    z-index:-99;

    pointer-events:none;

    opacity:.18;

    background-image:

    linear-gradient(
    rgba(255,255,255,.04) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(255,255,255,.04) 1px,
    transparent 1px);

    background-size:42px 42px;

}
@media (min-width:768px){

    body{

        display:flex;

        justify-content:center;

        align-items:flex-start;

        padding:40px;

    }

    .container{

        max-width:430px;

        border-radius:32px;

        overflow:hidden;

        box-shadow:
        0 30px 80px rgba(0,0,0,.45);

    }

}