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

body {
    background: #07070a;
    color: #e4e4ec;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Фон с мягким градиентом */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(0, 180, 150, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(180, 80, 200, 0.03) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 150, 200, 0.02) 0%, transparent 40%);
    z-index: 0;
    animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.06);
    }
}

/* Тонкая сетка */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.006) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.006) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 680px;
    width: 100%;
    text-align: center;
    padding: 56px 40px 48px;
    border-radius: 44px;
    background: rgba(10, 10, 14, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.85),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    animation: containerReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    position: relative;
    z-index: 1;
}

@keyframes containerReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.94);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Декоративная обводка */
.container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 44px;
    padding: 1px;
    background: linear-gradient(
        135deg, 
        rgba(0, 200, 170, 0.08), 
        transparent 30%, 
        transparent 70%, 
        rgba(180, 80, 200, 0.06)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.brand-mark {
    font-size: 5.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.05;
    text-shadow: 0 0 60px rgba(0, 200, 170, 0.04);
    position: relative;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #8888aa;
    margin-bottom: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 16px;
}

.subtitle::before {
    content: '—';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 200, 170, 0.2);
    font-size: 0.8rem;
}

.subtitle::after {
    content: '—';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 200, 170, 0.2);
    font-size: 0.8rem;
}

.intro-text {
    margin: 12px 0 32px;
    font-size: 1rem;
    color: #8888aa;
    line-height: 1.6;
}

.intro-text p {
    margin: 0;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.btn {
    display: inline-block;
    padding: 18px 28px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    cursor: pointer;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

/* Основная кнопка */
.btn.primary {
    background: linear-gradient(135deg, #00c4a0 0%, #00a888 100%);
    color: #ffffff;
    border-color: rgba(0, 200, 170, 0.2);
    box-shadow: 0 4px 30px rgba(0, 200, 170, 0.08);
    font-weight: 600;
}

.btn.primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 50px rgba(0, 200, 170, 0.15);
    border-color: rgba(0, 200, 170, 0.3);
}

.btn.primary:hover::before {
    opacity: 1;
}

.btn.primary:active {
    transform: scale(0.96) translateY(0);
    transition-duration: 0.1s;
}

/* Онион кнопка */
.btn.onion {
    background: rgba(255, 255, 255, 0.02);
    color: #9999bb;
    border-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
}

.btn.onion:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ccccff;
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.btn.onion:active {
    transform: scale(0.96) translateY(0);
}

.btn.onion.copied {
    background: rgba(0, 200, 170, 0.06);
    border-color: rgba(0, 200, 170, 0.15);
    color: #60ddc0;
}

/* Tor кнопка */
.btn.tor {
    background: rgba(255, 255, 255, 0.015);
    color: #8888aa;
    border-color: rgba(255, 255, 255, 0.03);
}

.btn.tor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn.tor:hover {
    background: rgba(100, 80, 200, 0.06);
    border-color: rgba(100, 80, 200, 0.1);
    color: #b0a0ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.btn.tor:hover::before {
    opacity: 1;
}

.btn.tor:active {
    transform: scale(0.96) translateY(0);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    font-size: 0.8rem;
    color: #7777aa;
    letter-spacing: 0.02em;
}

.badges span {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.012);
    padding: 6px 18px 6px 16px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    cursor: default;
}

.badges span:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: #bbbbdd;
    transform: translateY(-2px);
}

.badges span:active {
    transform: scale(0.95);
}

.seo-content {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
}

.seo-content h1 {
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #f2f2f8;
    margin: 0 0 12px;
    line-height: 1.3;
    text-shadow: none;
}

.seo-content h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #d8fff4;
    margin: 22px 0 8px;
}

.seo-content h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #c0e8dc;
    margin: 16px 0 6px;
}

.seo-content p,
.seo-content li {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #b4b4c8;
}

.seo-content p { margin-bottom: 12px; }
.seo-content ul, .seo-content ol { margin: 8px 0 16px 22px; }
.seo-content a { color: #60ddc0; }
.seo-content code {
    font-size: 0.8rem;
    word-break: break-all;
    color: #8aead4;
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #07070a;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 200, 170, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 200, 170, 0.3);
}

/* Анимация появления элементов */
.container > * {
    animation: elementReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.container > *:nth-child(1) { animation-delay: 0.05s; }
.container > *:nth-child(2) { animation-delay: 0.15s; }
.container > *:nth-child(3) { animation-delay: 0.25s; }
.container > *:nth-child(4) { animation-delay: 0.35s; }
.container > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes elementReveal {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Адаптивность */
@media (max-width: 640px) {
    .container {
        padding: 40px 24px 36px;
        border-radius: 32px;
    }

    .brand-mark {
        font-size: 3.6rem;
    }

    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.25em;
        padding: 0 10px;
    }

    .subtitle::before,
    .subtitle::after {
        display: none;
    }

    .intro-text {
        font-size: 0.9rem;
        margin: 8px 0 24px;
    }

    .btn {
        padding: 16px 22px;
        font-size: 0.9rem;
    }

    .badges {
        gap: 8px 12px;
        font-size: 0.7rem;
    }

    .badges span {
        padding: 5px 14px 5px 12px;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 28px 16px 24px;
        border-radius: 24px;
    }

    .brand-mark {
        font-size: 2.6rem;
    }

    .subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        margin-bottom: 10px;
    }

    .intro-text {
        font-size: 0.8rem;
        margin: 6px 0 18px;
    }

    .btn {
        padding: 14px 16px;
        font-size: 0.8rem;
        border-radius: 50px;
    }

    .buttons {
        gap: 10px;
        margin-bottom: 24px;
    }

    .badges {
        gap: 6px 8px;
        font-size: 0.6rem;
    }

    .badges span {
        padding: 4px 10px 4px 8px;
        gap: 4px;
    }
}