/* Custom Modal Structure Styling */
#welcomeModal {
    background-color: #fff;
    border-radius: 12px;
    max-width: 1200px;
    width: 90%;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    display: none;
    max-height: 90vh;
    overflow-y: auto;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.welcome-header {
    background: linear-gradient(135deg, #21033a 0%, #4a127c 100%);
    color: #fff;
    padding: 25px 30px;
    text-align: center;
    margin-bottom: 15px;
    border-radius: 8px;
}

.welcome-header h2 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 700;
}

.welcome-header .highlight {
    color: #e8a819;
    font-weight: 800;
}

.welcome-header .tagline {
    font-size: 17px;
    margin: 0;
    opacity: 1;
    color: white;
}

.welcome-body {
    padding: 0;
}

.welcome-section {
    margin-bottom: 15px;
    padding: 10px;
    background-color: rgba(0,0,0,0.03);
    border-radius: 8px;
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.welcome-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.feature {
    padding: 15px;
    background-color: rgba(0,0,0,0.01);
    border-radius: 8px;
    text-align: center;
}

.feature i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0066cc;
    display: block;
    text-align: center;
}

.feature p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.welcome-message {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    color: #333;
}

.welcome-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-accept-btn {
    background: linear-gradient(to right, #e8a819, #ff8a00);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(232, 168, 25, 0.4);
}

.welcome-accept-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 25, 0.6);
}

.welcome-accept-btn:disabled {
    background: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    transform: none !important;
    box-shadow: none !important;
}

.dont-show-again {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #777;
    margin-top: 20px;
}

.dont-show-again input {
    margin-right: 8px;
    width: 15px;
    height: 15px;
}

.dont-show-again label {
    display: flex;
    align-items: center;
    margin: 0;
    line-height: 15px;
}

@media (max-width: 767px) {
    #welcomeModal {
        width: 95%;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .welcome-header h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .welcome-content {
        padding: 20px;
    }
}

/* Remove old Magnific Popup styles - no longer needed */