@charset "UTF-8";

:root{
    --bg: #0f0f10;
    --text: #f5f5f7;
    --muted: #b3b3b8;
    --accent: #c7b8ff;

    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.14);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    sans-serif;

    color:var(--text);
    background:var(--bg);
    line-height:1.7;

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;

    overflow-x:hidden;
}


body::before,
body::after{
    content:"";
    position:fixed;
    width:600px;
    height:600px;
    filter:blur(120px);
    z-index:-1;
    opacity:0.35;
}

body::before{
    background:radial-gradient(circle, #7c5cff, transparent 60%);
    top:-200px;
    left:-200px;
}

body::after{
    background:radial-gradient(circle, #2dd4bf, transparent 60%);
    bottom:-200px;
    right:-200px;
}



section{
    background:rgba(255,255,255,0.015);
    border-top:1px solid rgba(255,255,255,0.04);
}


header,
section,
footer{
    padding:6rem 2rem;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}


h1{
    font-size:clamp(3rem, 8vw, 6rem);
    font-weight:700;
    letter-spacing:-3px;
    text-align:center;
    margin-bottom:1rem;
    max-width:900px;
}

h2{
    font-size:clamp(2rem, 5vw, 3.5rem);
    font-weight:600;
    letter-spacing:-2px;
    text-align:center;
    margin-bottom:1.5rem;
    max-width:850px;
}

p,
li,
a{
    font-size:1.05rem;
}

p{
    max-width:700px;
    text-align:center;
    color:var(--muted);
}

::selection{
    background:rgba(199,184,255,0.35);
    color:white;
}


nav{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:center;
    gap:2rem;
    padding:1rem;

    background:rgba(10,10,10,0.55);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    transition:0.3s ease;
}

nav a{
    text-decoration:none;
    color:var(--text);
    font-weight:500;
    transition:0.25s ease;
}

nav a:hover{
    color:var(--accent);
    transform:translateY(-1px);
}


header{
    min-height:85vh;
}

header p{
    font-size:1.2rem;
    color:#8f8f93;
}



.extension-download a{
    position:relative;
    display:inline-block;

    text-decoration:none;
    color:rgba(255,255,255,0.92);

    padding:1rem 2.2rem;
    border-radius:999px;

    font-weight:600;
    letter-spacing:0.2px;

    background:var(--glass);
    border:1px solid var(--glass-border);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.18);

    overflow:hidden;
    cursor:pointer;

    transition:0.25s ease;
}



.extension-download a:hover{
    
    box-shadow:
        0 18px 50px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.extension-download a:hover::before{
    left:130%;
}

.extension-download a:active{
    transform:translateY(0) scale(0.98);
}



video,
img{
    width:100%;
    display:block;

    margin-top:1.5rem;

    border-radius:24px;
    object-fit:cover;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:0 10px 30px rgba(0,0,0,0.25);

    transition:0.35s ease;
}

img:hover,
video:hover{
    transform:scale(1.015);
}



.extension-reviews-block{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:1.5rem;
}

.extension-review{
    width:320px;

    padding:2rem;

    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;

    transition:0.3s ease;
}

.extension-review:hover{
    transform:translateY(-6px);
    border-color:rgba(199,184,255,0.3);
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.extension-review p:first-child{
    color:#ffffff;
    margin-bottom:1rem;
}



.extension-installation ol{
    max-width:700px;
    margin-top:2rem;
}

.extension-installation li{
    margin-bottom:1rem;
    color:var(--muted);
}


footer{
    border-top:1px solid rgba(255,255,255,0.06);
}

footer p{
    color:#777;
    font-size:0.95rem;
}


@media (max-width:780px){

    header,
    section,
    footer{
        padding:4rem 1.5rem;
    }

    nav{
        gap:1rem;
        flex-wrap:wrap;
    }

    .extension-review{
        width:100%;
    }

    h1{
        letter-spacing:-2px;
    }
}


@media (prefers-reduced-motion: reduce){
    *{
        transition:none !important;
        scroll-behavior:auto;
    }
}