/* Стили для Production версии приложения espanol */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.espanol-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.espanol-header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.espanol-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.espanol-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.espanol-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.espanol-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
}

.espanol-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.espanol-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.espanol-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.espanol-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.espanol-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}

.espanol-dev-links {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.espanol-link {
    color: #f5576c;
    text-decoration: none;
    font-size: 0.9em;
}

.espanol-link:hover {
    text-decoration: underline;
}

