/* Основные стили для видимой части */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Mega в углу */
.kraken-corner {
    position: fixed;
    top: 20px;
    left: 30px;
    z-index: 1000;
}

.corner-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
    margin: 0;
}

/* Видимая часть для клиента */
.visible-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.hero-section {
    margin-bottom: 60px;
    max-width: 600px;
    margin-top: 60px;
}

.subtitle {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.description {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 50px;
    line-height: 1.8;
    text-align: center;
    font-weight: 300;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.cta-button {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    border: none;
    padding: 25px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 
                0 0 0 0 rgba(0, 255, 136, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial Black', 'Arial', sans-serif;
    animation: pulse 2s infinite;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4), 
                0 0 0 10px rgba(0, 255, 136, 0.1);
    background: linear-gradient(45deg, #00d4ff, #00ff88);
    animation: none;
    color: #000;
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cta-button.loading {
    background: linear-gradient(45deg, #666, #999);
    cursor: not-allowed;
    animation: none;
}

.onion-button {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3), 
                0 0 0 0 rgba(139, 92, 246, 0.7);
}

.onion-button:hover {
    background: linear-gradient(45deg, #A855F7, #8B5CF6);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4), 
                0 0 0 10px rgba(139, 92, 246, 0.1);
}

.clearnet-button {
    background: linear-gradient(45deg, #10B981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3), 
                0 0 0 0 rgba(16, 185, 129, 0.7);
}

.clearnet-button:hover {
    background: linear-gradient(45deg, #059669, #10B981);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4), 
                0 0 0 10px rgba(16, 185, 129, 0.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 
                    0 0 0 0 rgba(0, 255, 136, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 
                    0 0 0 10px rgba(0, 255, 136, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3), 
                    0 0 0 0 rgba(0, 255, 136, 0.7);
        transform: scale(1);
    }
}

/* Кнопки копирования */
.copy-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    animation: fadeInUp 0.5s ease-out;
}

.copy-button {
    background: linear-gradient(45deg, #6366F1, #8B5CF6);
    border: none;
    padding: 18px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial Black', 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

.copy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.copy-button:hover::before {
    left: 100%;
}

.copy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(45deg, #8B5CF6, #6366F1);
}

.copy-button:active {
    transform: translateY(-1px);
}

.onion-copy {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.onion-copy:hover {
    background: linear-gradient(45deg, #A855F7, #8B5CF6);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.clearnet-copy {
    background: linear-gradient(45deg, #10B981, #059669);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.clearnet-copy:hover {
    background: linear-gradient(45deg, #059669, #10B981);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* Описания ссылок */
.link-descriptions {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.description-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    max-width: 250px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.description-item h3 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.description-item p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.tor-download-btn {
    background: linear-gradient(45deg, #8B5CF6, #A855F7);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.tor-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Индикатор загрузки */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #00ff88;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-indicator p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    max-width: 650px;
    backdrop-filter: blur(10px);
}

.disclaimer p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.disclaimer strong {
    color: #ff6b6b;
}

/* Скрытая SEO-часть (позиционирована далеко вправо и вниз) */
.hidden-seo-content {
    position: absolute;
    right: -9999px;
    bottom: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.seo-section {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.seo-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.seo-section h3 {
    font-size: 16px;
    margin: 20px 0 10px 0;
    color: #555;
}

.seo-section p {
    margin-bottom: 15px;
    color: #666;
}

.seo-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.seo-section li {
    margin-bottom: 8px;
    color: #666;
}

/* Скрытая страница для записи IP адресов */
.hidden-tracking-page {
    position: absolute;
    right: -9999px;
    bottom: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
}

.tracking-content {
    background: #ffffff;
    color: #000000;
    padding: 20px;
    font-size: 12px;
}

.tracking-content h2 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.tracking-list {
    max-height: 300px;
    overflow-y: auto;
}

.log-entry {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 11px;
}

.log-time {
    color: #666;
    min-width: 120px;
}

.log-ip {
    color: #999;
    min-width: 100px;
}

.log-action {
    color: #333;
    min-width: 120px;
}

/* Адаптивный дизайн */
@media (max-width: 768px) {
    .corner-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .kraken-corner {
        top: 15px;
        left: 20px;
    }
    
    .visible-content {
        padding-top: 60px;
    }
    
    .hero-section {
        margin-top: 40px;
    }
    
    .subtitle {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 22px 44px;
        font-size: 1.3rem;
    }
    
    .disclaimer {
        margin: 0 20px;
        padding: 25px;
    }
    
    .link-descriptions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .description-item {
        max-width: 100%;
    }
    
    .copy-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .corner-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .kraken-corner {
        top: 10px;
        left: 15px;
    }
    
    .visible-content {
        padding-top: 50px;
    }
    
    .hero-section {
        margin-top: 30px;
    }
    
    .subtitle {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Дополнительные эффекты */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Анимация появления */
.hero-section {
    animation: fadeInUp 1s ease-out;
}

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

 

/* Звездное небо */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle linear infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.star:nth-child(1) {
    width: 2px;
    height: 2px;
    left: 10%;
    top: 20%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.star:nth-child(2) {
    width: 1px;
    height: 1px;
    left: 20%;
    top: 40%;
    animation-duration: 12s;
    animation-delay: 1s;
}

.star:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 30%;
    top: 60%;
    animation-duration: 6s;
    animation-delay: 2s;
}

.star:nth-child(4) {
    width: 1.5px;
    height: 1.5px;
    left: 40%;
    top: 80%;
    animation-duration: 10s;
    animation-delay: 3s;
}

.star:nth-child(5) {
    width: 2.5px;
    height: 2.5px;
    left: 50%;
    top: 10%;
    animation-duration: 7s;
    animation-delay: 4s;
}

.star:nth-child(6) {
    width: 1px;
    height: 1px;
    left: 60%;
    top: 30%;
    animation-duration: 11s;
    animation-delay: 5s;
}

.star:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    top: 50%;
    animation-duration: 9s;
    animation-delay: 6s;
}

.star:nth-child(8) {
    width: 2px;
    height: 2px;
    left: 80%;
    top: 70%;
    animation-duration: 13s;
    animation-delay: 7s;
}

.star:nth-child(9) {
    width: 1.5px;
    height: 1.5px;
    left: 90%;
    top: 90%;
    animation-duration: 5s;
    animation-delay: 8s;
}

.star:nth-child(10) {
    width: 2px;
    height: 2px;
    left: 15%;
    top: 85%;
    animation-duration: 14s;
    animation-delay: 9s;
}

.star:nth-child(11) {
    width: 1px;
    height: 1px;
    left: 25%;
    top: 15%;
    animation-duration: 8.5s;
    animation-delay: 10s;
}

.star:nth-child(12) {
    width: 3px;
    height: 3px;
    left: 35%;
    top: 35%;
    animation-duration: 11.5s;
    animation-delay: 11s;
}

.star:nth-child(13) {
    width: 2.5px;
    height: 2.5px;
    left: 45%;
    top: 55%;
    animation-duration: 7.5s;
    animation-delay: 12s;
}

.star:nth-child(14) {
    width: 1.5px;
    height: 1.5px;
    left: 55%;
    top: 75%;
    animation-duration: 12.5s;
    animation-delay: 13s;
}

.star:nth-child(15) {
    width: 2px;
    height: 2px;
    left: 65%;
    top: 95%;
    animation-duration: 9.5s;
    animation-delay: 14s;
}

.star:nth-child(16) {
    width: 1px;
    height: 1px;
    left: 75%;
    top: 25%;
    animation-duration: 6.5s;
    animation-delay: 15s;
}

.star:nth-child(17) {
    width: 3px;
    height: 3px;
    left: 85%;
    top: 45%;
    animation-duration: 10.5s;
    animation-delay: 16s;
}

.star:nth-child(18) {
    width: 2px;
    height: 2px;
    left: 95%;
    top: 65%;
    animation-duration: 8.5s;
    animation-delay: 17s;
}

.star:nth-child(19) {
    width: 1.5px;
    height: 1.5px;
    left: 5%;
    top: 5%;
    animation-duration: 13.5s;
    animation-delay: 18s;
}

.star:nth-child(20) {
    width: 2.5px;
    height: 2.5px;
    left: 95%;
    top: 5%;
    animation-duration: 7.5s;
    animation-delay: 19s;
}

.star:nth-child(21) {
    width: 1px;
    height: 1px;
    left: 12%;
    top: 35%;
    animation-duration: 9.2s;
    animation-delay: 20s;
}

.star:nth-child(22) {
    width: 2px;
    height: 2px;
    left: 22%;
    top: 65%;
    animation-duration: 11.8s;
    animation-delay: 21s;
}

.star:nth-child(23) {
    width: 3px;
    height: 3px;
    left: 32%;
    top: 85%;
    animation-duration: 7.3s;
    animation-delay: 22s;
}

.star:nth-child(24) {
    width: 1.5px;
    height: 1.5px;
    left: 42%;
    top: 25%;
    animation-duration: 13.1s;
    animation-delay: 23s;
}

.star:nth-child(25) {
    width: 2.5px;
    height: 2.5px;
    left: 52%;
    top: 45%;
    animation-duration: 8.7s;
    animation-delay: 24s;
}

.star:nth-child(26) {
    width: 1px;
    height: 1px;
    left: 62%;
    top: 75%;
    animation-duration: 12.3s;
    animation-delay: 25s;
}

.star:nth-child(27) {
    width: 3px;
    height: 3px;
    left: 72%;
    top: 15%;
    animation-duration: 6.9s;
    animation-delay: 26s;
}

.star:nth-child(28) {
    width: 2px;
    height: 2px;
    left: 82%;
    top: 35%;
    animation-duration: 10.4s;
    animation-delay: 27s;
}

.star:nth-child(29) {
    width: 1.5px;
    height: 1.5px;
    left: 92%;
    top: 55%;
    animation-duration: 14.2s;
    animation-delay: 28s;
}

.star:nth-child(30) {
    width: 2.5px;
    height: 2.5px;
    left: 8%;
    top: 75%;
    animation-duration: 9.6s;
    animation-delay: 29s;
}

.star:nth-child(31) {
    width: 1px;
    height: 1px;
    left: 18%;
    top: 95%;
    animation-duration: 11.7s;
    animation-delay: 30s;
}

.star:nth-child(32) {
    width: 3px;
    height: 3px;
    left: 28%;
    top: 15%;
    animation-duration: 8.1s;
    animation-delay: 31s;
}

.star:nth-child(33) {
    width: 2px;
    height: 2px;
    left: 38%;
    top: 35%;
    animation-duration: 12.9s;
    animation-delay: 32s;
}

/* Стили для блоков описания ссылок */
.links-info-section {
    margin-top: 40px;
    width: 100%;
}

.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.link-info-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.link-info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.link-info-block h3 {
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.link-info-block p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vpn-btn {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.vpn-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(45deg, #1d4ed8, #3b82f6);
}

.tor-btn {
    background: linear-gradient(45deg, #8b5cf6, #7c3aed);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.tor-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    background: linear-gradient(45deg, #7c3aed, #8b5cf6);
}

/* Анимация загрузки для кнопок */
.loading-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Стили для уведомлений */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
    text-align: center;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #000;
}

.notification-info {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
}

.notification-error {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: #fff;
}

/* Адаптивность для блоков описания */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .link-info-block {
        padding: 20px;
    }
    
    .link-info-block h3 {
        font-size: 1.2rem;
    }
    
    .link-info-block p {
        font-size: 0.9rem;
    }
}

.star:nth-child(34) {
    width: 1.5px;
    height: 1.5px;
    left: 48%;
    top: 55%;
    animation-duration: 7.8s;
    animation-delay: 33s;
}

.star:nth-child(35) {
    width: 2.5px;
    height: 2.5px;
    left: 58%;
    top: 75%;
    animation-duration: 10.1s;
    animation-delay: 34s;
}

.star:nth-child(36) {
    width: 1px;
    height: 1px;
    left: 68%;
    top: 95%;
    animation-duration: 13.4s;
    animation-delay: 35s;
}

.star:nth-child(37) {
    width: 3px;
    height: 3px;
    left: 78%;
    top: 25%;
    animation-duration: 6.3s;
    animation-delay: 36s;
}

.star:nth-child(38) {
    width: 2px;
    height: 2px;
    left: 88%;
    top: 45%;
    animation-duration: 9.9s;
    animation-delay: 37s;
}

.star:nth-child(39) {
    width: 1.5px;
    height: 1.5px;
    left: 98%;
    top: 65%;
    animation-duration: 11.2s;
    animation-delay: 38s;
}

.star:nth-child(40) {
    width: 2.5px;
    height: 2.5px;
    left: 3%;
    top: 85%;
    animation-duration: 8.5s;
    animation-delay: 39s;
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: translateY(0px) scale(1) rotate(0deg);
    }
    20% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1.1) rotate(72deg);
    }
    40% {
        opacity: 1;
        transform: translateY(-30px) scale(0.9) rotate(144deg);
    }
    60% {
        opacity: 0.6;
        transform: translateY(-45px) scale(1.2) rotate(216deg);
    }
    80% {
        opacity: 0.9;
        transform: translateY(-60px) scale(0.8) rotate(288deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-75px) scale(1) rotate(360deg);
    }
} 

/* Группа кнопок */
.button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
    max-width: 800px;
}

.button-row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.main-button {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: normal;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.onion-button, .clearnet-button {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    padding: 20px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: normal;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.clearnet-copy, .onion-copy {
    background: linear-gradient(45deg, #06b6d4, #0891b2);
    border: none;
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    min-width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.clearnet-copy:hover:not([disabled]), .onion-copy:hover:not([disabled]) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
    background: linear-gradient(45deg, #0891b2, #06b6d4);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
    text-align: center;
}

.notification.show {
    transform: translateX(0);
}

/* Адаптивность для кнопок */
@media (max-width: 768px) {
    .button-group {
        gap: 20px;
        margin: 30px 0;
    }
    
    .button-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .main-button, .onion-button, .clearnet-button {
        min-width: 280px;
        max-width: 100%;
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .clearnet-copy, .onion-copy {
        min-width: 80px;
        height: 50px;
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .button-group {
        gap: 15px;
        margin: 20px 0;
    }
    
    .main-button, .onion-button, .clearnet-button {
        min-width: 260px;
        padding: 16px 30px;
        font-size: 0.95rem;
    }
    
    .clearnet-copy, .onion-copy {
        min-width: 70px;
        height: 45px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
} 