﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #a855f7 0%, #f97316 50%, #ec4899 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.welcome-container {
    text-align: center;
    padding: 3rem 0;
    color: white;
}

    .welcome-container h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        color: white;
    }

    .welcome-container .lead {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        color: white;
    }

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.action-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .action-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        color: #333;
    }

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.action-card small {
    color: #999;
}

.header-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: white;
    color: #a855f7;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

    .btn-primary-custom:hover {
        background: #a855f7;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
        text-decoration: none;
    }

.btn-outline-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-outline-custom:hover {
        background: white;
        color: #f97316;
        text-decoration: none;
        transform: translateY(-2px);
    }

.alert {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 2rem auto;
    max-width: 800px;
    color: #333;
}

    .alert h5 {
        color: #333;
    }

    .alert ol {
        color: #333;
    }

@media (max-width: 768px) {
    .welcome-container h1 {
        font-size: 2rem;
    }

    .action-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .header-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 200px;
        text-align: center;
    }
}
