/* Welcome Page Styles */
.welcome-container {
    padding: 0 15px;
    margin: 0 15px 0 15px;
}

.welcome-container .user-card {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.continue-button:hover {
    background: #a0302a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.continue-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Post-Registration Welcome Page Styles */
.post-registration-welcome {
    animation: fadeIn 0.5s ease-out;
}

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

.post-registration-welcome .material-icons {
    vertical-align: middle;
}

/* Responsive adjustments for welcome page */
@media (max-width: 768px) {
    .post-registration-welcome h1 {
        font-size: 2rem !important;
    }
    
    .post-registration-welcome .quick-start-options {
        flex-direction: column;
    }
    
    .post-registration-welcome .quick-start-options a {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .post-registration-welcome h1 {
        font-size: 1.8rem !important;
    }
    
    .post-registration-welcome p {
        font-size: 1rem !important;
    }
    
    .membership-plans {
        grid-template-columns: 1fr !important;
    }
}
