/* welcome.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.welcome-container {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.welcome-content {
    max-width: 100%;
    width: 100%;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
}

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

.welcome-header h1 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0;
}

.top-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem !important;
    margin: 0 !important;
    border-width: 1px !important;
}

.welcome-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.welcome-features {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 1rem;
    margin: 0 0 0.8rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.feature p {
    color: #666;
}

.registration-highlight, .link-management-info {
    background-color: #e8f4fd;
    border-radius: 8px;
    padding: 1rem;
    margin: 0 0 1rem;
    border-left: 4px solid #3498db;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #3498db;
}

.registration-highlight h3, .link-management-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.link-management-info ul {
    text-align: left;
    margin-top: 0.8rem;
    padding-left: 1.5rem;
}

.link-management-info li {
    margin-bottom: 0.5rem;
}

.registration-highlight p {
    color: #555;
    font-size: 1.1rem;
}

.welcome-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border: 2px solid #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #f0f7fc;
}

.welcome-footer {
    text-align: center;
    padding: 1.5rem;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .welcome-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .top-buttons {
        margin-top: 0.5rem;
    }
    
    .btn-small {
        padding: 0.05rem 0.1rem;
        font-size: 0.4rem;
        margin: 0;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .registration-highlight, .link-management-info {
        padding: 0.8rem;
    }
}