* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(145deg, #0a1929 0%, #11212e 100%);
    min-height: 100vh;
    padding: 24px;
    color: #f0f9ff;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 8px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.logo img {
    height: 32px;
    width: auto;
}

/* Hero */
.hero {
    text-align: center;
    margin-bottom: 48px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    background: linear-gradient(to right, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.hero p {
    color: #a0b8cc;
    font-size: 1.2rem;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 24px 40px;
    text-align: center;
    min-width: 160px;
}

.stat-value {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff, #aad0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #a0b8cc;
    letter-spacing: 1px;
}

/* Marquees */
.marquees {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    display: flex;
    width: max-content;
    margin: 0 auto;
    padding: 0px 0;
    gap: 12px;
    animation: scroll 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee--reverse {
    animation-direction: reverse;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(calc(-50%));
    }

    100% {
        transform: translateX(0);
    }
}

.marquee__content {
    display: flex;
    gap: 12px;
    /* Расстояние между карточками серверов */
    width: max-content;
    padding: 4px 0;
}

/* Чтобы карточки не сжимались */
.server {
    flex-shrink: 0;
}

/* Server Card */
.server {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 24px 12px 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.server:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

.flag {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    object-fit: cover;
    background: #1e2a3a;
}

.ip {
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
}

.ping {
    font-size: 0.9rem;
    font-weight: 450;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    white-space: nowrap;
}

.status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 4px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.status.online {
    background: #2ecc71;
}

.status.offline {
    background: #e74c3c;
}

.status.degraded {
    background: #f39c12;
}

/* CTA Button */
.action {
    display: flex;
    justify-content: center;
}

.cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 42px;
    border-radius: 40px;
    cursor: pointer;
    transition: box-shadow 0.3s, background 0.3s;
    box-shadow: 0 12px 28px -8px #0f2b5e;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    box-shadow: 0 20px 32px -10px #0f2b5e;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-card {
        padding: 18px 28px;
        min-width: 120px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .server {
        padding: 8px 16px;
        gap: 12px;
    }

    .ip {
        font-size: 0.9rem;
    }

    .ping {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}























/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 0 24px;
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    margin-bottom: 80px;
}

.benefits h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.benefit-card p {
    color: #a0b8cc;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
    margin-bottom: 80px;
}

.how-it-works h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 48px;
    background: linear-gradient(135deg, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 28px;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px -4px #1e3a8a;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.step-content p {
    color: #a0b8cc;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ========== CONTRIBUTE SECTION ========== */
.contribute {
    margin-bottom: 80px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 48px;
    padding: 48px 32px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.contribute h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contribute > p {
    text-align: center;
    color: #a0b8cc;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.contribute-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contribute-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.contribute-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.contribute-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.contribute-card p {
    color: #a0b8cc;
    line-height: 1.5;
    margin-bottom: 24px;
}

.cta.small {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px -6px #0f2b5e;
    text-decoration: none;
}

.cta.small:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    box-shadow: 0 12px 28px -8px #0f2b5e;
}

/* ========== PROXY TYPES SECTION ========== */
.proxy-types {
    margin-bottom: 80px;
}

.proxy-types h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #a0b8cc;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.type-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.type-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.type-badge.most-common {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}

.type-badge.medium {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border-color: rgba(243, 156, 18, 0.3);
}

.type-badge.least-common {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.type-card p {
    color: #a0b8cc;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.type-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.type-features li {
    padding: 8px 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.type-features li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.type-features li strong {
    color: #fff;
    font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .types-grid {
        gap: 24px;
    }
    
    .type-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .steps,
    .contribute-options,
    .types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 8px;
    }
    
    .contribute {
        padding: 32px 20px;
    }
    
    .contribute-card {
        padding: 24px;
    }
    
    .type-card {
        text-align: center;
    }
    
    .type-features li {
        justify-content: center;
    }
    
    .benefit-card,
    .step,
    .contribute-card,
    .type-card {
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 480px) {
    body {
        padding: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .benefit-card,
    .step,
    .contribute-card,
    .type-card {
        padding: 24px 20px;
    }
    
    .type-card h3 {
        font-size: 1.4rem;
    }
    
    .cta.small {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.step,
.contribute-card,
.type-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

.contribute-card:nth-child(1) { animation-delay: 0.1s; }
.contribute-card:nth-child(2) { animation-delay: 0.2s; }

.type-card:nth-child(1) { animation-delay: 0.1s; }
.type-card:nth-child(2) { animation-delay: 0.2s; }
.type-card:nth-child(3) { animation-delay: 0.3s; }



/* ========== FAQ SECTION ========== */
.faq {
    margin-bottom: 80px;
}

.faq h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq .section-subtitle {
    text-align: center;
    color: #a0b8cc;
    margin-bottom: 48px;
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.2s ease;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item summary {
    padding: 24px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

/* Убираем стандартный маркер */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Кастомная иконка шеврона */
.faq-item summary::after {
    content: "▼";
    font-size: 0.9rem;
    color: #2563eb;
    transition: transform 0.2s ease;
    display: inline-block;
    margin-left: auto;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 24px 32px;
    color: #cbd5e1;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 8px;
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer ul, 
.faq-answer ol {
    margin: 12px 0 12px 24px;
}

.faq-answer li {
    margin: 8px 0;
}

.faq-answer code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    color: #b0d4ff;
}

.faq-answer a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    transition: color 0.2s;
}

.faq-answer a:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
}

/* Hover effect on summary */
.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-item summary {
        padding: 20px 24px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 24px 20px 24px;
        font-size: 0.9rem;
    }
    
    .faq-answer ul, 
    .faq-answer ol {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .faq-item summary {
        padding: 16px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 16px 20px;
    }
}

.alert-block {
    margin-bottom: 60px;
}

.alert-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(29, 78, 216, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.alert-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.2);
}

.alert-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.alert-card h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #b0d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.alert-card p {
    color: #a0b8cc;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.alert-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.alert-cta {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.alert-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px -6px #0f2b5e;
}

.alert-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    box-shadow: 0 12px 28px -8px #0f2b5e;
}

.alert-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.alert-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .alert-card {
        padding: 32px 24px;
    }
    
    .alert-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .alert-cta {
        width: 100%;
        text-align: center;
    }
    
    .alert-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .alert-card {
        padding: 24px 20px;
        border-radius: 32px;
    }
}