/* verified.css - Estilos para la confirmación */

body {
    background: radial-gradient(circle at 50% 30%, #1a2e1a 0%, #0f1115 70%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.verified-container {
    flex: 1; /* Ocupa el espacio restante para centrar verticalmente */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Tarjeta de Cristal */
.success-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.success-card h1 {
    font-size: 2rem;
    color: var(--text-white);
    margin: 20px 0 10px;
}

.success-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* === ANIMACIÓN DEL CHECK VERDE === */
.check-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4CAF50; /* Tu verde OLYVO */
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4CAF50;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

@keyframes scale {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
    100% { box-shadow: inset 0px 0px 0px 50px rgba(76, 175, 80, 0.1); }
}

/* Botones */
.btn-open-app {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-green);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-open-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
}

.small-text {
    margin-top: 30px;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
}

.store-links-mini {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.store-btn {
    padding: 8px 16px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.store-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}