.welcome-modal 
{
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn 
{
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-modal.show 
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content
{
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 50px rgba(74, 107, 122, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

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

.modal-close-btn
{
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover 
{
    color: var(--text-dark);
}

.modal-content h2 
{
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-content p 
{
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-links 
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-link 
{
    display: block;
    padding: 1rem;
    text-align: center;
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modal-link:hover 
{
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 107, 122, 0.2);
}

@media (max-width: 600px) 
{
    .modal-content 
    {
        padding: 2rem 1.5rem;
    }
    
    .modal-content h2 
    {
        font-size: 1.5rem;
    }
    
    .modal-links 
    {
        grid-template-columns: 1fr;
    }
}