/* Стили для Development версии espanol */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.espanol-container {
    max-width: 800px;
    margin: 0 auto;
}

.espanol-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px 15px 0 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.espanol-header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.espanol-header p {
    color: #666;
    font-size: 1.2em;
}

.espanol-main {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.espanol-card {
    text-align: center;
}

.espanol-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2em;
}

.espanol-card > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.espanol-dev-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.espanol-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.espanol-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.espanol-button:active {
    transform: translateY(0);
}

.espanol-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.espanol-button-update {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    font-size: 1.2em;
    padding: 15px 40px;
    margin-top: 10px;
}

.espanol-button-update:hover {
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.4);
}

.espanol-update-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #e9ecef;
}

.espanol-update-section h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.espanol-update-section > p {
    color: #666;
    margin-bottom: 20px;
}

.espanol-update-status {
    margin-top: 20px;
    min-height: 50px;
}

.espanol-status-loading {
    color: #667eea;
    font-weight: bold;
    font-size: 1.1em;
}

.espanol-status-success {
    color: #28a745;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.espanol-status-error {
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.espanol-status-info {
    color: #666;
    font-size: 0.9em;
    margin-top: 5px;
}

.espanol-dev-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.espanol-link {
    color: #667eea;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
}

.espanol-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 600px) {
    .espanol-header h1 {
        font-size: 2em;
    }
    
    .espanol-card h2 {
        font-size: 1.5em;
    }
    
    .espanol-dev-actions {
        flex-direction: column;
    }
    
    .espanol-button {
        width: 100%;
    }
}


