﻿body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.redirect-container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    padding: 2rem;
}

.safety-message {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.safety-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--primary-color-solid);
}

.progress-container {
    width: 100%;
    height: 8px;
    background: var(--bg-input);
    border-radius: 4px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--primary-gradient);
    animation: progress 3s ease-in-out forwards;
}

.highlight-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    transition: transform 0.3s ease;
    width: 100%;
}

    .highlight-card:hover {
        transform: translateY(-5px);
    }

.highlight-label {
    background: rgba(107, 114, 128, 0.3);
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.highlight-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.highlight-text {
    flex: 1;
    text-align: left;
}

.highlight-cta {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 200px;
}

    .highlight-cta:hover {
        background: var(--primary-hover-gradient);
        transform: scale(1.05);
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }

    80% {
        width: 90%;
    }

    100% {
        width: 100%;
    }
}

/* Responsive styles */
@media (max-width: 576px) {
    .safety-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .highlight-text {
        text-align: center;
        margin-top: 1rem;
    }

    .highlight-image {
        margin: 0 auto;
    }
}
