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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.5;
    overflow-x: hidden;
}

.animation-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #050505;
    border-bottom: 1px solid #FF8C00;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF8C00;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #FF8C00;
}

main {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 2rem 4rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    border-bottom: 1px solid #222;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #888;
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FF8C00;
    color: #0a0a0a;
    border: none;
}

.btn-primary:hover {
    background: #e07e00;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #FF8C00;
    color: #FF8C00;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

section {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--order, 0) * 0.1s);
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF8C00;
    display: inline-block;
}

h2 strong, p strong {
    color: #FF8C00;
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Блок текст + изображение */
.block-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.block-text-image.reverse {
    direction: rtl;
}

.block-text-image.reverse .text-side,
.block-text-image.reverse .image-side {
    direction: ltr;
}

.image-side img {
    width: 100%;
    border-radius: 0;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.image-side img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.5rem;
}

.text-side p {
    margin-bottom: 1rem;
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.text-side h2 {
    display: block;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Особенности */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #0e0e0e;
    padding: 1.2rem;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #FF8C00;
    transform: translateX(5px);
}

.feature-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C00;
    opacity: 0.6;
    min-width: 50px;
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #FFA500;
}

.feature-text p {
    font-size: 0.85rem;
    color: #888;
}

/* Вертикальные шаги */
.steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-v {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #0e0e0e;
    padding: 1.2rem;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.step-v:hover {
    border-color: #FF8C00;
    transform: translateX(5px);
}

.step-v-num {
    font-size: 1.2rem;
    font-weight: 700;
    background: #FF8C00;
    color: #0a0a0a;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.step-v-content h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #FFA500;
}

.step-v-content p {
    font-size: 0.85rem;
    color: #888;
}

/* Сравнение */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.compare-item {
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.compare-item:hover {
    border-color: #FF8C00;
}

.compare-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.compare-values {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.good {
    color: #00cc66;
}

.bad {
    color: #888;
}

/* Onion ссылки */
.onion-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.onion-link {
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 1.5rem;
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.onion-link:hover {
    border-color: #FF8C00;
    transform: translateY(-3px);
}

.onion-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #FF8C00;
    color: #0a0a0a;
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.onion-badge.main {
    background: #00cc66;
}

.onion-url {
    font-family: monospace;
    font-size: 0.8rem;
    background: #000;
    padding: 0.5rem;
    margin: 1rem 0;
    color: #FF8C00;
    word-break: break-all;
}

.onion-status {
    font-size: 0.75rem;
    color: #00cc66;
    margin-bottom: 0.5rem;
}

.onion-link p {
    font-size: 0.8rem;
    color: #666;
}

.security-note {
    background: rgba(255, 100, 0, 0.1);
    border-left: 3px solid #FF8C00;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #bbb;
}

/* 2 фото */
.two-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.img-card {
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 1rem;
    transition: all 0.3s ease;
}

.img-card:hover {
    border-color: #FF8C00;
    transform: translateY(-3px);
}

.img-card img {
    width: 100%;
    filter: grayscale(30%);
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
}

.img-card:hover img {
    filter: grayscale(0%);
}

.img-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #FFA500;
}

.img-card p {
    font-size: 0.8rem;
    color: #888;
}

/* Советы */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tip-item {
    display: flex;
    gap: 1rem;
    background: #0e0e0e;
    border: 1px solid #222;
    padding: 1rem;
    transition: all 0.3s ease;
}

.tip-item:hover {
    border-color: #FF8C00;
}

.tip-icon {
    font-size: 1.5rem;
}

.tip-text {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.4;
}

/* Footer */
footer {
    background: #050505;
    border-top: 1px solid #FF8C00;
    padding: 2rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF8C00;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF8C00;
}

.footer-copy {
    color: #444;
    font-size: 0.7rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптив */
@media (max-width: 900px) {
    .block-text-image {
        grid-template-columns: 1fr;
    }
    
    .block-text-image.reverse {
        direction: ltr;
    }
    
    .onion-links, .two-images, .tips-grid, .compare-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    nav ul {
        gap: 1rem;
    }
}