/**
 * Transleti Connector - 503 Pending Translation Page
 *
 * @package Transleti_Connector
 */
* {
    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, #1B1B42 0%, #2d2d5e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}
.icon {
    width: 80px;
    height: 80px;
    background: #FA6039;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}
h1 {
    color: #1B1B42;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-primary {
    background: #FA6039;
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(250, 96, 57, 0.5);
}
.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}
.btn-secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}
.footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    color: #a0aec0;
    font-size: 13px;
}
@media (max-width: 480px) {
    .container {
        padding: 32px 24px;
    }
    h1 {
        font-size: 20px;
    }
}
