/* ===== MAIN-REDIRECT.CSS - Стили для страницы редиректа ===== */

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

.container {
    max-width: 700px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

h2 {
    font-size: 1.5em;
    margin: 30px 0 15px;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.main-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
}

.redirect-message {
    font-size: 1.1em;
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #ffd700;
}

.language-links {
    margin: 30px 0;
}

.lang-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lang-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.features-preview {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

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

.features-preview li {
    margin: 12px 0;
    font-size: 1.05em;
    color: rgba(255,255,255,0.95);
    line-height: 1.5;
}

.stats-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .lang-buttons {
        flex-direction: column;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 15px;
    }
}/* ===== POLICY-REDIRECT.CSS - Стили для страницы-редиректора политики ===== */
/* Используется только в policy.html для редиректа на языковые версии */

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

.message {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.message h2 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 24px;
}

.message p {
    margin: 15px 0;
    color: #333;
}

.message a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.message a:hover {
    color: #764ba2;
    text-decoration: underline;
    transform: translateY(-2px);
}

.message a:not(:last-child)::after {
    content: "|";
    color: #ccc;
    margin: 0 10px;
    display: inline-block;
    pointer-events: none;
}

/* Для мобильных устройств */
@media (max-width: 480px) {
    .message {
        padding: 20px;
    }
    
    .message h2 {
        font-size: 20px;
    }
    
    .message p {
        font-size: 14px;
    }
    
    .message a {
        display: block;
        margin: 10px 0;
    }
    
    .message a:not(:last-child)::after {
        display: none;
    }
}