/* Styles pour la page d'attente, réutilisant les variables globales */

body {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Ambient Background Glows */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(circle, var(--accent-blue) 0%, rgba(94,162,198,0) 70%);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    animation: float 10s ease-in-out infinite alternate;
}

.glow-2 {
    background: linear-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    right: -100px;
    bottom: -200px;
    animation-delay: -5s;
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 20px));
    z-index: 1;
    background: var(--card-bg);
    color: #ffffff;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--accent-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--bg-color);
    box-shadow: 0 4px 15px rgba(94, 162, 198, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(94, 162, 198, 0.5);
    transform: translateY(-2px);
    background: #75b0cc;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* SVG Icons */
.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (min-width: 480px) {
    .links-container {
        flex-direction: row;
    }
    .btn {
        flex: 1;
    }
}
