/* * Balai Pikir UGC Style - Optimized UI/UX 
 * Performance Note: Using CSS Variables & Hardware Accelerated Transitions
 */
:root {
    --bp-primary: #0073aa;
    --bp-primary-dark: #005a87;
    --bp-bg: #f8fafc;
    --bp-border: #e2e8f0;
    --bp-text-main: #1e293b;
    --bp-text-muted: #64748b;
    --bp-white: #ffffff;
    --bp-radius: 12px;
    --bp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bp-ugc-wrapper {
    max-width: 1070px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--bp-text-main);
    line-height: 1.6;
    padding: 0 20px;
}

.bp-ugc-card {
    background: var(--bp-white);
    padding: 40px;
    border-radius: var(--bp-radius);
    box-shadow: var(--bp-shadow);
    border: 1px solid var(--bp-border);
}

/* Typography & Hierarchy */
.bp-ugc-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 35px 0 20px;
    color: var(--bp-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bp-ugc-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--bp-border);
}

.bp-ugc-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 12px;
    color: var(--bp-text-main);
}

/* Inputs & Focus States */
.bp-ugc-input, 
.bp-ugc-select, 
.bp-ugc-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bp-border);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--bp-bg);
    transition: all 0.2s ease; /* Smooth but fast for performance */
    outline: none;
}

.bp-ugc-input:focus, 
.bp-ugc-textarea:focus {
    border-color: var(--bp-primary);
    background: var(--bp-white);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.bp-ugc-textarea.naskah-utama {
    min-height: 450px;
    font-family: 'Charter', 'Georgia', serif; /* Better reading experience */
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Grid System */
.bp-ugc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

/* Buttons with Feedback */
.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.1s active, background 0.2s ease;
    border: none;
}

.bp-btn:active {
    transform: scale(0.98); /* Tactile feedback */
}

.bp-btn-primary {
    background: var(--bp-primary);
    color: var(--bp-white) !important;
}

.bp-btn-primary:hover {
    background: var(--bp-primary-dark);
}

.bp-btn-secondary {
    background: #f1f5f9;
    color: var(--bp-text-main) !important;
}

.bp-btn-secondary:hover {
    background: #e2e8f0;
}

/* Hint & Info Text */
.bp-info-text {
    font-size: 0.85rem;
    color: var(--bp-text-muted);
    margin-top: 4px;
}

/* Mobile Adjustments */
@media(max-width: 600px) {
    .bp-ugc-card { padding: 25px 20px; }
    .bp-ugc-wrapper { margin: 20px auto; }
}