/* Стили для страницы блокировки регистрации через браузер */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

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

.content {
    padding: 40px 30px;
    text-align: center;
}

.telegram-icon {
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

h1 {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.message {
    margin-bottom: 30px;
}

.message p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: left;
}

.benefits h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 5px;
}

.benefits li:last-child {
    margin-bottom: 0;
}

.action-section {
    margin: 30px 0;
}

.instruction {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.telegram-button:hover {
    background: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

.telegram-button:active {
    transform: translateY(0);
}

.login-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.login-section p {
    color: #666;
    font-size: 14px;
}

.login-link {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: #0077b5;
    text-decoration: underline;
}

.footer {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer p {
    color: #999;
    font-size: 12px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .container {
        border-radius: 15px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .telegram-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .benefits {
        padding: 20px;
    }
    
    .telegram-button {
        padding: 12px 25px;
        font-size: 15px;
    }
}
