/* WIP (Work In Progress) Oldal Stílusok */

.wip-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: var(--card-bg, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color, #e5e7eb);
}

.wip-icon {
    font-size: 4rem;
    color: var(--primary-color, #1e40af);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.wip-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #1f2937);
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
}

.wip-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

.wip-message {
    background: var(--accent-bg, #f3f4f6);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color, #1e40af);
    margin-bottom: 2rem;
}

.wip-message-text {
    font-size: 1.1rem;
    color: var(--text-primary, #1f2937);
    font-weight: 500;
    margin: 0;
}

.wip-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.wip-progress-bar {
    width: 200px;
    height: 8px;
    background: var(--border-color, #e5e7eb);
    border-radius: 4px;
    overflow: hidden;
}

.wip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color, #1e40af), var(--accent-color, #3b82f6));
    border-radius: 4px;
    animation: progress-animation 3s ease-in-out infinite;
}

.wip-progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary, #6b7280);
    font-weight: 500;
}

.wip-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.wip-btn-primary {
    background: var(--primary-color, #1e40af);
    color: white;
    border: 2px solid var(--primary-color, #1e40af);
}

.wip-btn-primary:hover {
    background: var(--primary-hover, #1d4ed8);
    border-color: var(--primary-hover, #1d4ed8);
    transform: translateY(-2px);
}

.wip-btn-secondary {
    background: transparent;
    color: var(--primary-color, #1e40af);
    border: 2px solid var(--primary-color, #1e40af);
}

.wip-btn-secondary:hover {
    background: var(--primary-color, #1e40af);
    color: white;
    transform: translateY(-2px);
}

/* Animációk */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes progress-animation {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 0%;
    }
}

/* Reszponzív */
@media (max-width: 768px) {
    .wip-container {
        margin: 2rem 1rem;
        padding: 2rem 1rem;
    }
    
    .wip-title {
        font-size: 2rem;
    }
    
    .wip-subtitle {
        font-size: 1.1rem;
    }
    
    .wip-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .wip-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Dark mode támogatás */
[data-theme="dark"] .wip-container {
    background: var(--card-bg-dark, #1f2937);
    border-color: var(--border-color-dark, #374151);
}

[data-theme="dark"] .wip-title {
    color: var(--text-primary-dark, #f9fafb);
}

[data-theme="dark"] .wip-subtitle {
    color: var(--text-secondary-dark, #d1d5db);
}

[data-theme="dark"] .wip-message {
    background: var(--accent-bg-dark, #374151);
}

[data-theme="dark"] .wip-message-text {
    color: var(--text-primary-dark, #f9fafb);
}

[data-theme="dark"] .wip-progress-text {
    color: var(--text-secondary-dark, #d1d5db);
}
