/* Main Content Styles */
.main-content {
    padding: 1rem;
    text-align: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Welcome Modal Styles */
#welcomeModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#welcomeModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#welcomeModal .modal-body {
    padding: 1rem 1rem;
}

.welcome-icon {
    font-size: 4rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.welcome-text {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.welcome-features {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item i {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: #495057;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.explore-btn {
    padding: 0.5rem 2rem;
}

.newsletter-optin {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #welcomeModal .modal-body {
        padding: 1.5rem;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .welcome-actions {
        flex-direction: column;
    }
}