/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

body{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    overflow:hidden;
    position:relative;

    background:
        radial-gradient(circle at 50% 50%,
            #ffffff 0%,
            #f8f7ff 60%,
            #f1efff 100%);
}


body::before {
    content:"";
    position:fixed;
    inset:-60%;
    background:
        radial-gradient(circle at 20% 30%, #7a3cff 0%, transparent 50%),
        radial-gradient(circle at 80% 65%, #ff66d4 0%, transparent 50%),
        radial-gradient(circle at 50% 85%, #6fdcff 0%, transparent 45%),
        radial-gradient(circle at 40% 60%, #ffb86c 0%, transparent 40%);
    animation: aurora 18s ease-in-out infinite alternate;
    filter: blur(180px);
    opacity: 0.4;
    z-index:-1;
}



@keyframes aurora {

    0%{
        transform: rotate(0deg) scale(1) translate(0,0);
    }

    50%{
        transform: rotate(180deg) scale(1.2) translate(10%, -10%);
    }

    100%{
        transform: rotate(360deg) scale(1) translate(-10%, 10%);
    }
}




.nav{
    display:flex;
    align-items:center;
    justify-content:center; /* центр всей группы */
    gap:20px;
    padding:20px;
}


.nav-inner{
    display:inline-flex;      /* ключевой момент */
    align-items:center;

    padding:12px 22px;

    white-space:nowrap;

    border-radius:20px;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.55);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}


.logo {
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 6px; /* расстояние между эмоджи и текстом */
}

.logo-text {
    display: flex; /* чтобы Ahri и VPN шли в одну линию */
}

.logo-dark {
    color: #1a1a1a; /* тёмный текст */
}

.logo-gradient {
    background: linear-gradient(90deg, #4c8dff, #9a5cff);
    -webkit-background-clip: text;
    color: transparent;
}


.menu{
    position: relative;
    display: flex;
}

.menu a{
    position: relative;
    margin:0 12px;
    text-decoration:none;
    color:#333;
    font-weight:500;
    padding:6px 4px;
    z-index: 2;
}

/* Слайдер */
.slider{
    position:absolute;
    bottom:0;
    height:3px;
    background: linear-gradient(90deg,#5c8cff,#b85cff);
    border-radius:3px;
    transition: all .3s ease;
    left:0;
    width:0;
}



.trial-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration:none;

    background: linear-gradient(90deg, #5c8cff, #b85cff);
    color: white;
    font-weight: 600;

    display: inline-flex;
    align-items: center;
    gap: 6px; /* расстояние между текстом и эмоджи */
    font-size: 16px;

    transition: all 0.3s ease; /* плавный переход для hover всей кнопки */
}

/* Hover эффект для всей кнопки */
.trial-btn:hover {
    transform: translateY(-2px) scale(1.05); /* слегка подпрыгивает и увеличивается */
    box-shadow: 0 8px 20px rgba(92, 140, 255, 0.4); /* лёгкая подсветка */
}




/* HERO */

.hero{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.title {
    background: linear-gradient(90deg, #4c8dff, #9a5cff, #ff66d4, #6fdcff);
    background-size: 300% 300%;
    animation: gradientMove 5s linear infinite;
    -webkit-background-clip: text;
    color: transparent;
    
    font-size:110px; 
    font-weight:600;
}

.subtitle{
    font-size:26px;
    margin-top:10px;
    color:#222;
}


.cta {
    margin-top: 30px;
    padding: 16px 40px;
    border: none;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 600;
    color: white;
    cursor: pointer;

    background: linear-gradient(90deg, #5c8cff, #b85cff);
    box-shadow: 0 12px 30px rgba(100,120,255,0.4);

    transition: all 0.3s ease; /* плавный переход для hover */
    display: inline-flex;
    text-decoration:none;
    align-items: center;
    gap: 6px; /* расстояние между текстом и эмоджи */
}

.cta .cta-text {
    text-transform: uppercase;
}

.cta .emoji {
    display: inline-block;
    font-size: 34px;
    transform: translateY(1px);
    transition: transform 0.2s ease;
}

.cta:hover .emoji {
    transform: translateY(-2px) scale(1.2);
}

.cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 40px rgba(100,120,255,0.5);
}


.footer{
    text-align:center;
    padding:20px;
    color:#555;
    font-size:14px;
}
