* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #e5e7eb;
    min-height: 100vh;
   
}

.blocked-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.blocked-card {
    background: #020617;
    border-radius: 16px;
    padding: 40px 35px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.contenedorLogoBloqueado{
    width: 100%;
    height: 90px;
}
.contenedorLogoBloqueado img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon {
    font-size: 64px;
    color: #ef4444;
    margin-bottom: 20px;
}

.blocked-card h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #f9fafb;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 30px;
}

.actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #111827;
    color: #e5e7eb;
    border: 1px solid #1f2937;
}

.btn-secondary:hover {
    background: #1f2937;
}

.footer-text {
    margin-top: 25px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .blocked-card {
        padding: 30px 20px;
    }

    .blocked-card h1 {
        font-size: 1.8rem;
    }

    .icon {
        font-size: 54px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
