﻿.redirect-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 20px;
    background-image: url('https://okohiring.com/images/hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* Block: redirect-card */
.redirect-card {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: slideUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* Element: redirect-card__title */
.redirect-card__title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Element: redirect-card__message */
.redirect-card__message {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Element: redirect-card__countdown */
.redirect-card__countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Element: redirect-card__button */
.redirect-card__button {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 16px 30px;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

    .redirect-card__button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
        background: white;
    }

    .redirect-card__button:active {
        transform: translateY(0);
    }

    .redirect-card__button > svg {
        width: 24px;
        height: 24px;
        stroke: #000;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-left: 12px;
    }
/* Element: redirect-card__footer */
.redirect-card__footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 600px) {
    .redirect-card {
        padding: 40px 30px;
    }

    .redirect-card__title {
        font-size: 24px;
    }

    .redirect-card__message {
        font-size: 14px;
    }
}
