.welcome-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.welcome-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: white;
    font-size: 1em;
    opacity: 0.8;
    animation: fall linear infinite;
    z-index: 1;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

.welcome-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.santa-header {
    text-align: center;
    margin-bottom: 35px;
}

.santa-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.main-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #c92a2a 0%, #e03131 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-text {
    font-size: 20px;
    color: #495057;
    font-weight: 500;
    margin-bottom: 30px;
}

.info-section {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
    border-left: 4px solid #c92a2a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.info-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #495057;
    font-size: 16px;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #c92a2a;
    font-weight: 700;
}

.initiative-box {
    background: linear-gradient(135deg, #e7f5ff 0%, #d0ebff 100%);
    border-left: 4px solid #1c7ed6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    font-style: italic;
}

.initiative-box p {
    margin: 0;
    color: #1864ab;
    font-size: 15px;
}

.consigne-box {
    background: linear-gradient(135deg, #fff9db 0%, #fff3bf 100%);
    border-left: 4px solid #f59f00;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.consigne-icon {
    font-size: 24px;
    color: #f59f00;
    flex-shrink: 0;
}

.consigne-content {
    flex: 1;
}

.consigne-title {
    font-weight: 700;
    color: #e67700;
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consigne-text {
    margin: 0;
    color: #495057;
    line-height: 1.6;
    font-size: 15px;
}

.continue-btn {
    background: linear-gradient(135deg, #c92a2a 0%, #e03131 100%);
    color: white;
    border: none;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(201, 42, 42, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 42, 42, 0.4);
    color: white;
}

.continue-btn:active {
    transform: translateY(-1px);
}

.btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

.decorative-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    opacity: 0.15;
}

@media (max-width: 768px) {
    .welcome-card {
        padding: 35px 25px;
    }

    .main-title {
        font-size: 26px;
    }

    .welcome-text {
        font-size: 18px;
    }

    .santa-icon {
        font-size: 60px;
    }

    .continue-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
}