*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter,Arial,sans-serif;
}

:root{
    --bg:#050814;
    --card:rgba(255,255,255,.09);
    --glass:rgba(255,255,255,.12);
    --border:rgba(255,255,255,.16);
    --text:#ffffff;
    --muted:#b8c4e6;
    --cyan:#00e5ff;
    --purple:#7c4dff;
    --gold:#ffd36b;
    --orange:#f58220;
    --green:#8cc63f;
}

body{
    background:
        radial-gradient(circle at top left,rgba(0,229,255,.15),transparent 28%),
        radial-gradient(circle at top right,rgba(124,77,255,.18),transparent 28%),
        linear-gradient(180deg,#050814,#080b18 45%,#f5f7ff 45%);
    color:var(--text);
    overflow-x:hidden;
}

.noise{
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.05;
    z-index:0;
    background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.orb{
    position:fixed;
    width:420px;
    height:420px;
    border-radius:50%;
    filter:blur(100px);
    opacity:.42;
    pointer-events:none;
    z-index:0;
}

.orb-1{
    background:#00e5ff;
    top:4%;
    left:-140px;
}

.orb-2{
    background:#7c4dff;
    top:18%;
    right:-150px;
}

.orb-3{
    background:#ff57b0;
    bottom:10%;
    left:28%;
    opacity:.22;
}

/* Header */

.v3-header{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:95vw;
    max-width:1600px;
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 16px;
    border-radius:24px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(18px);
    box-shadow:0 20px 60px rgba(0,0,0,.28);
}

.v3-logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#7a8cea;
    text-decoration:none;
    font-weight:900;
    font-size:20px;
}

.v3-logo img{
    width:48px;
    height:48px;
    object-fit:contain;
}

.v3-nav{
    display:flex;
    gap:10px;
}

.v3-nav a{
    color:#adb2ff;
    text-decoration:none;
    padding:10px 14px;
    border-radius:999px;
    font-weight:700;
    transition:.25s;
}

.v3-nav a:hover{
    background:rgba(255,255,255,.14);
    color:white;
}

/* Hero */

.v3-hero{
 /*    min-height:100vh;*/
    position:relative;
    z-index:1;
    padding:125px 2.5vw 65px;
}

.hero-grid{
    width:95vw;
    max-width:1800px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.hero-left{
    position:relative;
    z-index:5;
}

.hero-badge{
    display:inline-flex;
    padding:10px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(16px);
    color:#e8efff;
    font-weight:800;
    margin-bottom:22px;
}

.hero-left h1{
    font-size:clamp(20px,5vw,90px);
    line-height:.95;
    letter-spacing:-4px;
    font-weight:700;
}

.hero-left h1 span{
    display:block;
    background:linear-gradient(90deg,#63f5ff,#ffd36b,#ff57b0);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    margin:24px 0 28px;
    max-width:720px;
    color:var(--muted);
    font-size:clamp(16px,1.5vw,22px);
    line-height:1.6;
    text-align: center;
}

/* Search */

.search-wrap{
    position:relative;
    width:100%;
    max-width:760px;
    z-index:50;
}

.search-row{
    display:flex;
    gap:8px;
    padding:8px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.20);
    backdrop-filter:blur(20px);
    box-shadow:0 25px 70px rgba(0,0,0,.25);
}

.search{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    padding:17px 20px;
    color:white;
    font-size:16px;
}

.search::placeholder{
    color:rgba(255,255,255,.62);
}

.search-btn{
    border:none;
    padding:16px 34px;
    border-radius:999px;
    cursor:pointer;
    color:white;
    font-weight:900;
    background:linear-gradient(135deg,var(--cyan),var(--purple));
    box-shadow:0 12px 30px rgba(0,229,255,.22);
    transition:.25s;
}

.search-btn:hover{
    transform:translateY(-2px);
}

.suggestions{
    position:absolute;
    top:68px;
    left:0;
    right:0;
    display:none;
    overflow:hidden;
    border-radius:20px;
    background:white;
    box-shadow:0 24px 65px rgba(0,0,0,.28);
    z-index:99999;
}

.suggestion-item{
    padding:14px 16px;
    cursor:pointer;
    border-bottom:1px solid #eef2ff;
}

.suggestion-item:hover{
    background:#f4f7ff;
}

.suggestion-item strong{
    display:block;
    color:#111;
    font-size:14px;
}

.suggestion-item small{
    display:block;
    margin-top:4px;
    color:#666;
    font-size:12px;
}

/* Stats */

.hero-stats{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:26px;
}

.hero-stats div{
    min-width:150px;
    padding:16px;
    border-radius:20px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(16px);
}

.hero-stats strong{
    display:block;
    color:white;
    font-size:22px;
}

.hero-stats span{
    color:var(--muted);
    font-size:13px;
}

/* Hero Right */
.hero-right{
    position:relative;
    min-height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.device-frame{
    width:min(520px,100%);
    aspect-ratio:1/1;
    height:auto;
    padding:14px;
    border-radius:44px;
    background:
        linear-gradient(135deg,
        rgba(255,255,255,.28),
        rgba(255,255,255,.06));
    border:1px solid rgba(255,255,255,.22);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.12),
        0 35px 100px rgba(0,0,0,.42);
    overflow:hidden;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    height:100%;
}

.heroSwiper{
    border-radius:34px;
    overflow:hidden;
    background:#050814;
}

.heroSwiper img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    background:#050814;
}

.demo-slide{
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    background:rgba(255,255,255,.08);
}

.swiper-pagination-bullet{
    background:white !important;
}

.float-chip{
    position:absolute;
    z-index:5;
    padding:14px 18px;
    border-radius:18px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(16px);
    color:white;
    font-weight:900;
    box-shadow:0 22px 60px rgba(0,0,0,.28);
}

.site-footer{
    background:#050814 !important;
    color:white;
}

.chip-1{
    top:100px;
    left:0;
}

.chip-2{
    top:210px;
    right:0;
}

.chip-3{
    bottom:110px;
    left:35px;
}

@media(max-width:768px){
    .hero-right{
        min-height:auto;
        padding:10px 0 25px;
    }

    .device-frame{
        width:100%;
        max-width:360px;
        aspect-ratio:1/1;
        height:auto;
        padding:10px;
        border-radius:28px;
    }

    .heroSwiper{
        border-radius:22px;
    }

    .heroSwiper img{
        object-fit:contain;
    }

    .float-chip{
        display:none;
    }
}
/* Main */

.v3-main{
    width:95vw;
    max-width:1600px;
    margin:auto;
    position:relative;
    z-index:2;
    color:#111;
}

.browser-panel,
.new-v3{
    background:rgba(255,255,255,.86);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.70);
    border-radius:34px;
    box-shadow:0 30px 80px rgba(0,0,0,.12);
}

.browser-panel{
    padding:24px;
}

.panel-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.panel-head h2{
    font-size:30px;
}

.panel-head p{
    color:#667085;
    margin-top:6px;
}

.back-btn,
.btn{
    border:none;
    border-radius:14px;
    padding:13px 18px;
    background:linear-gradient(135deg,#f58220,#ff57b0);
    color:white;
    text-decoration:none;
    font-weight:900;
    cursor:pointer;
}

.browser-grid{
    display:grid;
    grid-template-columns:250px minmax(0,1fr) 260px;
    gap:20px;
    align-items:start;
}

.path-panel{
    background:#f6f8ff;
    border:1px solid #e7ecff;
    border-radius:24px;
    padding:15px;
    min-height:360px;
}

.path-panel div{
    padding:12px 13px;
    border-radius:15px;
    margin-bottom:9px;
    cursor:pointer;
    transition:.22s;
}

.path-panel div:hover{
    background:#eef3ff;
}

.path-panel div.active{
    background:linear-gradient(135deg,#7c4dff,#00e5ff);
    color:white;
    font-weight:900;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
}

.card{
    position:relative;
    overflow:hidden;
    padding:20px;
    border-radius:24px;
    background:
        linear-gradient(145deg,rgba(255,255,255,.96),rgba(242,246,255,.88));
    border:1px solid #e4e9ff;
    box-shadow: 11px 11px 32px 0px rgb(17 49 12 / 50%);
    cursor:pointer;
    transition:.28s;
}

.card::before{
    content:"";
    position:absolute;
    inset:-1px;
    background:linear-gradient(135deg, rgb(33 153 167 / 57%), rgb(101 213 105 / 35%), rgb(255 211 107 / 46%));
    opacity:0;
    transition:.28s;
}

.card:hover{
    transform:translateY(-7px);
    box-shadow:0 22px 50px rgba(55,70,120,.16);
}

.card:hover::before{
    opacity:1;
}

.card h3,
.card p,
.card a{
    position:relative;
    z-index:1;
}

.card h3{
    font-size:19px;
    margin-bottom:9px;
}

.card p{
    color:#667085;
    line-height:1.5;
}

.file-card{
    grid-column:1/-1;
}

.price{
    color:#f58220 !important;
    font-weight:900;
    margin:12px 0;
}

.free{
    color:#1c8c42 !important;
    font-weight:900;
    margin:12px 0;
}

.side-ad{
    background:white;
    border-radius:26px;
    padding:14px;
    aspect-ratio:2/3;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:sticky;
    top:100px;
    overflow:hidden;
    color:#667085;
}

.side-ad img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:18px;
}



/* New Files */

.new-v3{
    margin-top:28px;
    padding:24px;
}

.section-head{
    margin-bottom:18px;
}

.section-head span{
    color:#7c4dff;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.7px;
    font-size:12px;
}

.section-head h2{
    font-size:32px;
}

.new-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:16px;
}

.new-card{
    position:relative;
    display:block;
    min-height:168px;
    padding:16px;
    border-radius:24px;
    text-decoration:none;
    color:#111;
    background:
        linear-gradient(145deg,rgba(255,255,255,.95),rgba(245,248,255,.86));
    border:3px solid #e4e9ff;
    box-shadow:0 14px 32px rgb(23 17 91 / 60%);
    overflow:hidden;
    transition:.28s;
}

.new-card::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    right:-50px;
    top:-50px;
    background:linear-gradient(135deg,#00e5ff,#7c4dff);
    opacity:.18;
}

.new-card:hover{
    transform:translateY(-7px);
    box-shadow:0 22px 52px rgba(55,70,120,.16);
}

.new-top{
    display:flex;
    justify-content:space-between;
    gap:8px;
    margin-bottom:14px;
}

.new-top span,
.new-top b{
    padding:6px 9px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
}

.new-top span{
    background:#eef3ff;
    color:#7c4dff;
    max-width:110px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.new-top b{
    background:#fff1df;
    color:#f58220;
}

.new-card h3{
    font-size:15px;
    line-height:1.35;
    margin-bottom:8px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.new-card p{
    color:#667085;
    font-size:12px;
    line-height:1.45;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.open-line{
    margin-top:14px;
    color:#7c4dff;
    font-weight:900;
    font-size:13px;
}


.hero-grid.no-ad{
    grid-template-columns:1fr;
    max-width:1100px;
}

.hero-grid.no-ad .hero-left{
    text-align:center;
    margin:auto;
}

.hero-grid.no-ad .search-wrap{
    margin:auto;
}

.hero-grid.no-ad .hero-stats{
    justify-content:center;
}


.site-footer{
    margin-top:30px;
    background:rgba(255,255,255,.90);
    backdrop-filter:blur(14px);
    border-radius:26px 26px 0 0;
    padding:24px;
    box-shadow:0 -10px 30px rgba(0,0,0,.08);
}

.footer-inner{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
}

.footer-inner h3{
    margin:0 0 8px;
}

.footer-inner p{
    margin:0;
    color:#666;
}

.footer-links{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#7b2cff;
    text-decoration:none;
    font-weight:bold;
}

.footer-bottom{
    max-width:1400px;
    margin:18px auto 0;
    padding-top:15px;
    border-top:1px solid #e5e9ff;
    color:#666;
    font-size:14px;
}

@media(max-width:700px){
    .footer-inner{
        flex-direction:column;
    }
}

.browser-grid.no-sidebar{
    grid-template-columns:250px minmax(0,1fr);
}

@media(max-width:1200px){
    .browser-grid.no-sidebar{
        grid-template-columns:1fr;
    }
}
/* Responsive */

@media(max-width:1200px){
    .hero-grid{
        grid-template-columns:1fr;
    }

    .hero-right{
        min-height:auto;
    }

    .device-frame{
        height:430px;
        max-width:760px;
        transform:none;
    }

    .float-chip{
        display:none;
    }

    .browser-grid{
        grid-template-columns:1fr;
    }

    .path-panel{
        min-height:auto;
    }

    .side-ad{
        position:relative;
        top:auto;
        min-height:auto;
    }

    .new-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .v3-header{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        width:94vw;
        margin:14px auto 0;
        flex-direction:column;
    }

    .v3-nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .v3-hero{
        padding:40px 0 35px;
    }

    .hero-grid{
        width:94vw;
    }

    .hero-left h1{
        letter-spacing:-2px;
    }

    .search-row{
        flex-direction:column;
        border-radius:24px;
    }

    .search{
        text-align:center;
    }

    .search-btn{
        width:100%;
    }

    .suggestions{
        top:112px;
    }

    .hero-stats{
        flex-direction:column;
    }

    .hero-stats div{
        width:100%;
    }

    .device-frame{
        height:260px;
        border-radius:28px;
    }

    .heroSwiper{
        border-radius:20px;
    }

    .v3-main{
        width:94vw;
    }

    .panel-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .new-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .new-grid{
        grid-template-columns:1fr;
    }
}
/* =========================
   RESPONSIVE FIX
========================= */

@media(max-width:1200px){

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .hero-left{
        text-align:center;
    }

    .hero-left p{
        margin:auto;
        margin-top:20px;
    }

    .search-wrap{
        margin:auto;
    }

    .hero-stats{
        justify-content:center;
    }

    .browser-grid{
        grid-template-columns:1fr;
    }

    .side-ad{
        max-width:450px;
        margin:auto;
        position:relative;
        top:auto;
    }

    .new-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){

    .v3-header{
        flex-direction:column;
        gap:15px;
    }

    .v3-nav{
        width:100%;
        display:flex;
        justify-content:center;
        gap:8px;
        flex-wrap:wrap;
    }

    .v3-nav a{
        font-size:13px;
        padding:8px 12px;
    }

    .search-row{
        flex-direction:column;
        border-radius:24px;
    }

    .search{
        width:100%;
        text-align:center;
    }

    .search-btn{
        width:100%;
    }

    .device-frame{
        width:100%;
        max-width:340px;
        height:580px;
        margin:auto;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .new-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){

    .hero-left h1{
        font-size:42px;
        letter-spacing:-1px;
    }

    .new-grid{
        grid-template-columns:1fr;
    }

    .hero-stats div{
        width:100%;
    }