.welcome-container {
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0052ff 0%, #00a3ff 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.2);
}

.welcome-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.welcome-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.feature-description {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.networks-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.networks-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.network-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.network-badge {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.welcome-cta {
    text-align: center;
    margin-top: 2rem;
}

.welcome-cta-text {
    font-size: 18px;
    margin-bottom: 1rem;
}

.welcome-cta-button {
    background: white;
    color: #0052ff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.welcome-cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .welcome-container {
        padding: 1.5rem;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1rem;
    }
}

.welcome-section {
    display: block;
}

.welcome-section.hidden {
    display: none;
}