/* Prayer Community — Frontend Styles */
.pc-wall { font-family: Inter, system-ui, sans-serif; }
.pc-wall * { box-sizing: border-box; }

/* Header */
.pc-header { background: linear-gradient(135deg, #1e293b 0%, #0e2e4e 100%); padding: 48px 0 32px; color: #fff; }
.pc-header h2 { font-size: 2rem; font-weight: 800; margin: 0 0 4px; }
.pc-header p { color: #94a3b8; margin: 0; }

/* Tabs */
.pc-tabs { display: flex; gap: 0; margin-bottom: 0; }
.pc-tab-btn { padding: 10px 24px; border: 2px solid #1e293b; background: transparent; color: #1e293b; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.pc-tab-btn:first-child { border-radius: 8px 0 0 8px; }
.pc-tab-btn:last-child { border-radius: 0 8px 8px 0; }
.pc-tab-btn.active { background: #1e293b; color: #fff; }
.pc-tab-btn:hover:not(.active) { background: #f1f5f9; }

/* Prayer Card */
.pc-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; margin-bottom: 16px; transition: box-shadow 0.2s; }
.pc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.pc-card-type { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #e50914; margin-bottom: 4px; }
.pc-card-type.praise { color: #16a34a; }
.pc-card-message { font-size: 0.95rem; color: #475569; line-height: 1.6; margin-bottom: 12px; }
.pc-card-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.pc-card-author { font-weight: 700; color: #1e293b; font-size: 1rem; }
.pc-card-date { font-size: 0.8rem; color: #94a3b8; }
.pc-card-right { text-align: right; }
.pc-pray-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border: 2px solid #1e293b; background: transparent; color: #1e293b; border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.pc-pray-btn:hover { background: #1e293b; color: #fff; }
.pc-pray-btn.prayed { background: #1e293b; color: #fff; }
.pc-pray-count { font-size: 0.8rem; color: #64748b; }
.pc-report-link { font-size: 0.8rem; color: #94a3b8; text-decoration: none; text-align: center; display: block; margin-top: 8px; }
.pc-report-link:hover { color: #e50914; }
.pc-report-link a { color: #0ea5e9; text-decoration: underline; }

/* Pagination dots */
.pc-pagination { display: flex; justify-content: center; gap: 6px; margin: 24px 0; }
.pc-page-dot { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #1e293b; background: transparent; color: #1e293b; font-weight: 700; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-family: inherit; }
.pc-page-dot.active { background: #1e293b; color: #fff; }

/* Submit Form */
.pc-form-section { padding: 48px 0; background: #fff; }
.pc-form-section h3 { font-size: 1.6rem; font-weight: 800; color: #1e293b; text-align: center; margin-bottom: 32px; }
.pc-form { max-width: 700px; margin: 0 auto; }
.pc-form label { font-weight: 600; color: #1e293b; font-size: 0.9rem; margin-bottom: 6px; display: block; }
.pc-form input[type="text"],
.pc-form input[type="email"],
.pc-form textarea,
.pc-form select { width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s; }
.pc-form input:focus, .pc-form textarea:focus, .pc-form select:focus { outline: none; border-color: #1e293b; }
.pc-form textarea { min-height: 120px; resize: vertical; }
.pc-form .pc-radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.pc-form .pc-radio-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; font-size: 0.9rem; margin-bottom: 0; }
.pc-form .pc-checkbox-group { margin-bottom: 12px; }
.pc-form .pc-checkbox-group label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 0.85rem; color: #475569; cursor: pointer; margin-bottom: 8px; }
.pc-disclaimer { background: #fef9c3; border-radius: 8px; padding: 12px 16px; text-align: center; font-size: 0.85rem; color: #92400e; font-style: italic; margin: 20px 0; }
.pc-submit-btn { display: block; margin: 0 auto; padding: 14px 48px; background: #1e293b; color: #fff; border: none; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.pc-submit-btn:hover { background: #334155; }
.pc-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Prayer Center Widget (dark section) */
.pc-center-widget { background: linear-gradient(135deg, #1e293b 0%, #0e2e4e 100%); padding: 60px 0; color: #fff; text-align: center; font-family: Inter, system-ui, sans-serif; }
.pc-center-widget h2 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.pc-center-widget .pc-scripture { color: #94a3b8; font-size: 0.95rem; max-width: 600px; margin: 0 auto 12px; line-height: 1.6; font-style: italic; }
.pc-center-widget .pc-cta-btn { display: inline-block; padding: 12px 32px; background: #e50914; color: #fff; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: background 0.2s; border: none; cursor: pointer; }
.pc-center-widget .pc-cta-btn:hover { background: #c73652; }
.pc-center-latest { margin-top: 40px; text-align: left; max-width: 700px; margin-left: auto; margin-right: auto; }
.pc-center-latest-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pc-center-latest-header h5 { font-weight: 700; margin: 0; font-size: 1.1rem; }
.pc-center-latest-header a { color: #e50914; text-decoration: none; font-size: 0.85rem; font-weight: 600; }
.pc-center-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px; }
.pc-center-card .pc-msg { color: #cbd5e1; font-size: 0.9rem; margin-bottom: 12px; }
.pc-center-card .pc-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.pc-center-card .pc-author { font-weight: 700; font-size: 1rem; }
.pc-center-card .pc-date { color: #64748b; font-size: 0.8rem; }
.pc-center-pray-btn { padding: 8px 20px; border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff; border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.pc-center-pray-btn:hover { background: rgba(255,255,255,0.1); }

/* Toast notification */
.pc-toast { position: fixed; bottom: 24px; right: 24px; background: #1e293b; color: #fff; padding: 14px 24px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; z-index: 99999; box-shadow: 0 8px 30px rgba(0,0,0,0.2); transform: translateY(100px); opacity: 0; transition: all 0.3s; font-family: Inter, system-ui, sans-serif; }
.pc-toast.show { transform: translateY(0); opacity: 1; }

/* Loading spinner */
.pc-loading { text-align: center; padding: 40px; color: #94a3b8; }
.pc-loading .spinner { display: inline-block; width: 32px; height: 32px; border: 3px solid #e2e8f0; border-top-color: #e50914; border-radius: 50%; animation: pcSpin 0.8s linear infinite; }
@keyframes pcSpin { to { transform: rotate(360deg); } }

/* Report modal */
.pc-report-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 99998; align-items: center; justify-content: center; }
.pc-report-overlay.active { display: flex; }
.pc-report-box { background: #fff; border-radius: 16px; padding: 32px; max-width: 400px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
