* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

body {

    font-family: Arial, sans-serif;

    background: #0f172a;

    color: white;

}

header {

    padding: 20px;

}

.logo {

    font-size: 28px;

    font-weight: bold;

}

.logo span {

    color: #3b82f6;

}

main {

    max-width: 900px;

    margin: 40px auto;

    text-align: center;

    padding: 20px;

}

button {

    background: #3b82f6;

    color: white;

    border: none;

    padding: 15px 30px;

    border-radius: 10px;

    font-size: 18px;

    cursor: pointer;

}

button:hover {

    background: #2563eb;

}
.hero-image {

    display:flex;

    justify-content:center;

    align-items:center;

}

.vpn-card {

    width:300px;

    padding:35px;

    background:rgba(15,23,42,0.7);

    border:1px solid #008cff;

    border-radius:30px;

    text-align:center;

    box-shadow:

    0 0 40px #0066ff88;

    backdrop-filter:blur(15px);

    animation: float 4s infinite ease-in-out;

}

.shield {

    font-size:70px;

    margin-bottom:20px;

}

.vpn-card h3 {

    color:#00aaff;

    font-size:24px;

}

.vpn-card p {

    color:#94a3b8;

    margin:15px 0;

}

.status {

    background:#052e16;

    color:#22c55e;

    padding:10px;

    border-radius:20px;

}

@keyframes float {

    0% {

        transform:translateY(0);

    }

    50% {

        transform:translateY(-15px);

    }

    100% {

        transform:translateY(0);

    }

}
.section-title {

    width:100%;

    text-align:center;

    font-size:36px;

    margin-bottom:30px;

    color:#00aaff;

}
.popular {

    display:inline-block;

    background:#008cff;

    color:white;

    padding:8px 15px;

    border-radius:20px;

    font-size:12px;

    font-weight:bold;

    margin-bottom:15px;

    box-shadow:0 0 20px #008cff;

}

.vip {

    position:relative;

    overflow:hidden;

}

.vip::before {

    content:"";

    position:absolute;

    width:200px;

    height:200px;

    background:#008cff;

    filter:blur(100px);

    top:-80px;

    right:-80px;

    opacity:.4;

}
.steps {

    max-width:1100px;

    margin:80px auto;

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    text-align:center;

}

.step-card {

    width:300px;

    padding:30px;

    background:#0b1733;

    border:1px solid #123b80;

    border-radius:25px;

    transition:.3s;

}

.step-card:hover {

    transform:translateY(-8px);

    border-color:#008cff;

}

.step-number {

    width:50px;

    height:50px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#008cff;

    border-radius:50%;

    font-size:24px;

    font-weight:bold;

}

.step-card h3 {

    color:#00aaff;

    margin-bottom:15px;

}

.step-card p {

    color:#cbd5e1;

}
.download-box {

    max-width:900px;

    margin:90px auto;

    padding:60px 30px;

    text-align:center;

    background:

    linear-gradient(135deg,#0066ff33,#001b44);

    border:1px solid #008cff;

    border-radius:35px;

    box-shadow:

    0 0 50px #0066ff55;

}

.download-box h2 {

    font-size:40px;

    margin-bottom:20px;

}

.download-box p {

    color:#cbd5e1;

    font-size:20px;

    margin-bottom:35px;

}
/* Кибер фон */

body {

    overflow-x:hidden;

}
body::before {

    content:"";

    position:fixed;


    top:0;

    left:0;

    width:100%;

    height:100%;

    background-image:

    linear-gradient(#008cff12 1px, transparent 1px),

    linear-gradient(90deg,#008cff12 1px, transparent 1px);

    background-size:50px 50px;

    z-index:-2;

    animation:gridMove 20s linear infinite;

}

@keyframes gridMove {

    from {

        background-position:0 0;

    }

    to {

        background-position:50px 50px;

    }

}.hero-image {

    position:relative;

}

.hero-image::before {

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#008cff;

    border-radius:50%;

    filter:blur(120px);

    opacity:.35;

}

.vpn-card {

    position:relative;

    background:

    linear-gradient(

    145deg,

    rgba(0,140,255,.25),

    rgba(5,11,24,.9)

    );

    backdrop-filter:blur(20px);

}
/* Сеть серверов вокруг VPN */

.hero-image {

    position: relative;

    width: 380px;

    height: 380px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.hero-image::before {

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border:1px solid #008cff55;

    border-radius:50%;

    box-shadow:

    0 0 40px #008cff55;

    animation:rotateNetwork 12s linear infinite;

}

.hero-image::after {

    content:"";

    position:absolute;

    width:230px;

    height:230px;

    border:1px dashed #00aaff88;

    border-radius:50%;

    animation:rotateNetwork 8s linear infinite reverse;

}

@keyframes rotateNetwork {

    from {

        transform:rotate(0deg);

    }

    to {

        transform:rotate(360deg);

    }

}

/* Точки серверов */

.hero-image .vpn-card::before {

    content:"";

    position:absolute;

    width:12px;

    height:12px;

    background:#00aaff;

    border-radius:50%;

    top:-45px;

    left:50%;

    box-shadow:

    -120px 60px 0 #00aaff,

    120px 60px 0 #00aaff,

    -100px -20px 0 #00aaff,

    100px -20px 0 #00aaff;

    animation:pulse 2s infinite;

}

@keyframes pulse {

    0% {

        opacity:.5;

        box-shadow:

        -120px 60px 0 #00aaff,

        120px 60px 0 #00aaff;

    }

    50% {

        opacity:1;

    }

    100% {

        opacity:.5;

    }

}

.hero-image {

    position: relative;

    width: 400px;

    height: 400px;

    display: flex;

    align-items: center;

    justify-content: center;

}

/* внешнее кольцо */

.hero-image::before {

    content: "";

    position: absolute;

    width: 340px;

    height: 340px;

    border-radius: 50%;

    border: 2px solid #008cff;

    box-shadow:

    0 0 30px #008cff,

    inset 0 0 30px #008cff;

    animation: spin 12s linear infinite;

}

/* второе кольцо */

.hero-image::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius:50%;

    border:1px dashed #00aaff;

    animation: spin 8s linear infinite reverse;

}

@keyframes spin {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/* карточка поверх */

.vpn-card {

    position:relative;

    z-index:2;

    width:260px;

    padding:35px;

    background:rgba(5,15,35,0.9);

    border:1px solid #008cff;

    border-radius:30px;

    box-shadow:

    0 0 40px #008cff;

}
    /* Серверные точки */

.vpn-card::after {

    content:"";

    position:absolute;

    width:14px;

    height:14px;

    background:#00aaff;

    border-radius:50%;

    top:50%;

    left:50%;

    box-shadow:

    -140px -80px 0 #00aaff,

    140px -80px 0 #00aaff,

    -160px 80px 0 #00aaff,

    160px 80px 0 #00aaff,

    0 -170px 0 #00aaff,

    0 170px 0 #00aaff;

    animation:

    serverPulse 2s infinite;

}

@keyframes serverPulse {

    0% {

        opacity:.4;

        filter:blur(1px);

    }

    50% {

        opacity:1;

        filter:blur(0);

        box-shadow:

        -140px -80px 10px #008cff,

        140px -80px 10px #008cff,

        -160px 80px 10px #008cff,

        160px 80px 10px #008cff,

        0 -170px 10px #008cff,

        0 170px 10px #008cff;

    }

    100% {

        opacity:.4;

    }

}
.hero-stats {

    display: flex;

    gap: 15px;

    margin-top: 35px;

    flex-wrap: wrap;

}

.hero-stats div {

    background: rgba(0, 140, 255, 0.12);

    border: 1px solid rgba(0, 140, 255, 0.5);

    padding: 15px 22px;

    border-radius: 18px;

    text-align: center;

    color: #94a3b8;

    backdrop-filter: blur(10px);

    transition: 0.3s;

}

.hero-stats div:hover {

    transform: translateY(-5px);

    box-shadow: 0 0 25px #008cff;

    border-color:#00aaff;

}

.hero-stats span {

    display:block;

    color:#00aaff;

    font-size:24px;

    font-weight:800;

    margin-top:5px;

}
header {

    max-width:1100px;

    margin:20px auto;

    padding:18px 25px;

    background:rgba(15,23,42,0.6);

    border:1px solid rgba(0,140,255,0.3);

    border-radius:25px;

    backdrop-filter:blur(15px);

    box-shadow:

    0 0 30px rgba(0,140,255,0.15);

}

.logo {

    text-shadow:

    0 0 15px #008cff;

}

nav a {

    position:relative;

}

nav a::after {

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#008cff;

    transition:.3s;

}

nav a:hover::after {

    width:100%;

}
/* Свечение тарифов */

.tariffs .card {

    transition: 0.4s;

}

.tariffs .card:hover {

    transform: translateY(-10px);

    border-color:#00aaff;

    box-shadow:

    0 0 30px #008cff,

    0 0 60px #0055ff55;

}

/* Основной тариф */

.tariffs .vip {

    box-shadow:

    0 0 25px #008cff55;

}

.tariffs .vip:hover {

    box-shadow:

    0 0 40px #008cff,

    0 0 80px #0055ff88;

}

/* Цена */

.price {

    color:#00aaff;

    text-shadow:

    0 0 15px #008cff;

}
/* Кибер-карточки преимуществ */

.features .card {

    background:

    linear-gradient(

    145deg,

    rgba(0,140,255,0.15),

    rgba(5,15,35,0.9)

    );

    border:1px solid rgba(0,170,255,0.35);

    border-radius:25px;

    padding:35px 25px;

    backdrop-filter:blur(15px);

    transition:0.4s;

    position:relative;

    overflow:hidden;

}

/* Свет внутри карточки */

.features .card::before {

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#008cff;

    filter:blur(80px);

    top:-50px;

    right:-50px;

    opacity:.4;

}

/* Эффект наведения */

.features .card:hover {

    transform:translateY(-10px);

    border-color:#00aaff;

    box-shadow:

    0 0 30px #008cff88;

}

/* Заголовки */

.features .card h3 {

    color:#00aaff;

    font-size:22px;

    margin-bottom:15px;

}

/* Текст */

.features .card p {

    color:#cbd5e1;

    line-height:1.6;

}
/* Новые карточки преимуществ */

.features .card {

    background: rgba(15, 30, 60, 0.8) !important;

    border: 1px solid #008cff !important;

    border-radius: 25px !important;

    box-shadow:

    0 0 20px rgba(0,140,255,0.25);

    transition: .4s;

    position: relative;

    overflow: hidden;

}

.features .card:hover {

    transform: translateY(-12px) scale(1.03);

    box-shadow:

    0 0 40px #008cff,

    0 0 80px #0055ff;

}

.features .card h3 {

    color:#00aaff !important;

}

.features .card p {

    color:#cbd5e1 !important;

}
.features {

    max-width:1100px;

    margin:80px auto;

    display:grid;

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

    gap:25px;

    padding:20px;

}

.card {

    background:rgba(15,30,60,.8);

    border:1px solid #008cff;

    border-radius:25px;

    padding:30px;

    transition:.4s;

}

.card:hover {

    transform:translateY(-10px);

    box-shadow:0 0 40px #008cff;

}


        display:none;

    }

    .hero {

        flex-direction:column;

        text-align:center;

    }

    .hero-image {

        width:320px;

        height:320px;

        margin-top:40px;

    }

    .vpn-card {

        width:230px;

        padding:25px;

    }

    .hero-stats {

        justify-content:center;

    }

    .features {

        grid-template-columns:1fr;

    }

    .tariffs {

        padding:20px;

    }

    .download-box h2 {

        font-size:28px;

    }

}
.hero {

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}
/* Выравнивание VPN карточки */

.hero-image {

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Центр статистики */

.stats {

    max-width:1100px;

    margin:80px auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

    text-align:center;

}

.stats div {

    min-width:150px;

}
/* Основной экран */

.hero {

    max-width:1100px;

    margin:60px auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    padding:20px;

}

.hero-text {

    flex:1;

}

.hero-image {

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}
.stats {

    max-width:1100px;

    margin:80px auto;

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

}
.hero-stats {

    display:flex;

    justify-content:flex-start;

    align-items:center;

    gap:20px;

    margin-top:35px;

}

.hero-stats div {

    text-align:center;

    min-width:120px;

}
.hero-text {

    max-width:600px;

}
.hero {

    max-width:1200px;

    margin:60px auto;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.hero-text {

    width:50%;

}

.hero-image {

    width:50%;

    display:flex;

    justify-content:center;

}
.hero-stats {

    display:flex;

    justify-content:flex-start;

    gap:20px;

    margin-top:30px;

}
/* Тарифы TRY STORY VPN */

.tariffs {

    max-width:1000px;

    margin:80px auto;

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.tariffs .card {

    width:350px;

    padding:35px;

    background:

    linear-gradient(

    145deg,

    rgba(0,140,255,.15),

    rgba(15,23,42,.9)

    );

    border:1px solid #008cff55;

    border-radius:30px;

    transition:.4s;

}

.tariffs .card:hover {

    transform:translateY(-12px);

    box-shadow:

    0 0 40px #008cff;

}

.tariffs .price {

    font-size:40px;

    font-weight:800;

    color:#00aaff;

    margin:20px 0;

}

.tariffs ul {

    list-style:none;

    color:#cbd5e1;

    line-height:2;

}

.tariffs .btn {

    display:inline-block;

    margin-top:25px;

}
/* Кнопки TRY STORY VPN */

.btn {

    display:inline-block;

    padding:15px 35px;

    border-radius:18px;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.3s;

    position:relative;

    overflow:hidden;

}

/* Главная кнопка */

.btn.primary {

    background:#008cff;

    color:white;

    box-shadow:

    0 0 20px #008cff;

}

.btn.primary:hover {

    transform:translateY(-5px);

    box-shadow:

    0 0 40px #008cff,

    0 0 80px #0055ff;

}

/* Вторая кнопка */

.btn.secondary {

    border:1px solid #008cff;

    color:#00aaff;

    background:rgba(0,140,255,.1);

}

.btn.secondary:hover {

    background:#008cff;

    color:white;

    box-shadow:

    0 0 30px #008cff;

}

/* Нажатие */

.btn:active {

    transform:scale(.95);

}
/* Логотип TRY STORY VPN */

.logo {

    font-size:32px;

    font-weight:800;

    letter-spacing:2px;

    color:white;

    text-shadow:

    0 0 10px rgba(255,255,255,.3);

}

/* VPN синий неон */

.logo span {

    color:#00aaff;

    text-shadow:

    0 0 10px #008cff,

    0 0 25px #008cff,

    0 0 40px #0066ff;

}

/* Плавное свечение */

.logo:hover span {

    text-shadow:

    0 0 20px #00aaff,

    0 0 50px #008cff,

    0 0 80px #0066ff;

}
/* Блок Как это работает */

.steps {

    position:relative;

}

/* Карточки шагов */

.step-card {

    background:

    linear-gradient(

    145deg,

    rgba(0,140,255,.12),

    rgba(15,23,42,.9)

    );

    border:1px solid rgba(0,140,255,.4);

    border-radius:30px;

    transition:.4s;

}

/* Наведение */

.step-card:hover {

    transform:translateY(-10px);

    box-shadow:

    0 0 35px rgba(0,140,255,.7);

    border-color:#00aaff;

}

/* Круг с номером */

.step-number {

    background:#008cff;

    box-shadow:

    0 0 20px #008cff,

    0 0 40px #0066ff;

    transition:.3s;

}

.step-card:hover .step-number {

    transform:scale(1.15);

}
/* ===== ШАПКА + БЛОК ДОВЕРИЯ ===== */

/* Верхнее меню */

header {

    max-width:1200px;

    margin:20px auto;

    padding:18px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(15,23,42,.75);

    border:1px solid rgba(0,140,255,.35);

    border-radius:25px;

    backdrop-filter:blur(15px);

    box-shadow:

    0 0 25px rgba(0,140,255,.15);

}

nav {

    display:flex;

    gap:30px;

}

nav a {

    color:#cbd5e1;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

nav a:hover {

    color:#00aaff;

}

/* Кнопка в шапке */

header::after {

    content:"Получить VPN";

    background:#008cff;

    padding:12px 22px;

    border-radius:15px;

    font-weight:bold;

    box-shadow:

    0 0 25px #008cff;

}

/* Блок доверия */

.trust {

    max-width:1100px;

    margin:70px auto;

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

}

.trust-card {

    width:280px;

    padding:30px;

    text-align:center;

    background:

    rgba(15,30,60,.8);

    border:1px solid #008cff55;

    border-radius:25px;

    transition:.3s;

}

.trust-card:hover {

    transform:translateY(-8px);

    box-shadow:

    0 0 35px #008cff;

}

.trust-card h3 {

    color:#00aaff;

    margin-bottom:15px;

}

.trust-card p {

    color:#cbd5e1;

}
/* Свечение рабочей кнопки */

.btn.primary {

    background:#008cff !important;

    color:white !important;

    box-shadow:

    0 0 20px #008cff,

    0 0 40px #0066ff;

}

.btn.primary:hover {

    transform:translateY(-5px);

    box-shadow:

    0 0 40px #008cff,

    0 0 80px #0066ff;

}
/* скрываем ненастоящую кнопку */

header::after {

    display:none !important;

}

/* возвращаем свечение настоящей кнопке */

.btn.primary {

    background:#008cff !important;

    color:white !important;

    box-shadow:

    0 0 20px #008cff,

    0 0 40px #0066ff !important;

}
header::after {

    content:none !important;

    display:none !important;

}
nav a:last-child {

    color:#00aaff;

    font-weight:700;

}

nav a:last-child:hover {

    text-shadow:

    0 0 15px #008cff;

}
/* ===== Первый экран TRY STORY VPN ===== */

.hero {

    max-width:1200px;

    margin:70px auto;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero-text {

    flex:1;

}

.hero-image {

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

/* Показатели под текстом */

.hero-stats {

    display:flex;

    justify-content:flex-start;

    gap:20px;

    margin-top:35px;

}

.hero-stats div {

    min-width:120px;

}

/* Адаптация для телефона */

@media (max-width:800px) {

    .hero {

        flex-direction:column;

        text-align:center;

    }

    .hero-stats {

        justify-content:center;

    }

    .hero-image {

        margin-top:30px;

    }

}
/* ===== Премиальные тарифы ===== */

.tariffs {

    max-width:1000px;

    margin:80px auto;

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

}

.tariffs .card {

    width:350px;

    padding:35px;

    background:

    linear-gradient(

    145deg,

    rgba(0,140,255,.15),

    rgba(15,23,42,.95)

    );

    border:1px solid rgba(0,140,255,.4);

    border-radius:30px;

    transition:.4s;

}

.tariffs .card:hover {

    transform:translateY(-10px);

    box-shadow:

    0 0 35px #008cff;

}

/* Главный тариф */

.tariffs .vip {

    border:2px solid #00aaff;

    box-shadow:

    0 0 30px rgba(0,140,255,.5);

}

.tariffs .vip .price {

    font-size:45px;

    color:#00aaff;

    text-shadow:

    0 0 20px #008cff;

}

/* Цена пробного */

.tariffs .price {

    font-size:38px;

    font-weight:800;

    margin:20px 0;

}

/* Список */

.tariffs li {

    list-style:none;

    color:#cbd5e1;

    margin:12px 0;

}
/* ===== Мобильная оптимизация ===== */

@media (max-width: 768px) {

.hero {

    gap:25px;

    margin:30px auto;

    padding:15px;

}

.hero h1 {

    font-size:32px;

}

.hero p {

    font-size:16px;

}

/* Карточка VPN */

.hero-image {

    width:280px;

    height:280px;

}

.vpn-card {

    width:220px;

    padding:25px;

    border-radius:25px;

}

/* Замок */

.shield {

    font-size:50px;

    margin-bottom:10px;

}

.vpn-card h3 {

    font-size:20px;

}

/* Статистика */

.hero-stats {

    gap:10px;

    margin-top:20px;

}

.hero-stats div {

    min-width:95px;

    padding:10px;

    border-radius:15px;

}

.hero-stats span {

    font-size:20px;

}

}
