/* Manga Page - Work In Progress */
.wip-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.wip-content {
    text-align: center;
    max-width: 500px;
}

.wip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.wip-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.wip-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.wip-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.wip-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.wip-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.wip-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .wip-container { padding: 1.5rem; }
    .wip-title { font-size: 2rem; }
    .wip-subtitle { font-size: 1rem; }
}

@media (max-width: 600px) {
    .wip-container { padding: 1rem; min-height: calc(100vh - 80px); }
    .wip-icon { width: 70px; height: 70px; }
    .wip-title { font-size: 1.75rem; }
    .wip-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .wip-title {
        font-size: 1.75rem;
    }
    .wip-subtitle {
        font-size: 1rem;
    }
    .wip-icon {
        width: 60px;
        height: 60px;
    }
}
