/* CURRENT SERMON PAGE STYLES */

.current-sermon-section {
  min-height: 100vh;
  padding: 120px 20px 40px;
  background: linear-gradient(135deg, #2c1810 0%, #4a2c2a 40%, #1a3a5c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* LIVE INDICATOR */
.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  border-radius: 999px;
  margin-bottom: 24px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: #dc3545;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.live-text {
  color: #dc3545;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}

/* VERSE HEADER */
.verse-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.book-icon {
  font-size: 48px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.verse-header h1 {
  font-size: 42px;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-weight: 700;
}

/* VERSE CONTAINER */
.verse-container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  padding: 50px 40px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  margin-bottom: 20px;
  position: relative;
}

.verse-container::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.verse-container blockquote {
  font-family: 'Georgia', serif;
  font-size: 26px;
  line-height: 1.9;
  color: var(--dark);
  white-space: pre-wrap;
  word-wrap: break-word;
  text-align: left;
  margin: 0;
  padding: 20px 0 0 40px;
  border-left: 4px solid var(--gold);
  padding-left: 30px;
}

.verse-version {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* VERSE FOOTER */
.verse-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sync-status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sync-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
}

.last-updated {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* SERMON INFO */
.sermon-info {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 30px 40px;
  max-width: 700px;
  width: 100%;
  backdrop-filter: blur(10px);
}

.sermon-info h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
}

.sermon-speaker {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* ADMIN PANEL */
.admin-section {
  padding: 40px 20px;
  background: var(--bg);
}

.admin-card {
  max-width: 700px;
  margin: auto;
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid #eee;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.admin-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.admin-desc {
  color: var(--gray);
  text-align: center;
  margin-bottom: 30px;
}

.admin-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  color: var(--dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-hint {
  font-size: 13px;
  color: var(--gray);
  margin-top: -4px;
}

.admin-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.admin-actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  font-size: 15px;
}

.outline-btn-dark {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}

.outline-btn-dark:hover {
  background: var(--dark);
  color: white;
}

.admin-status {
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  display: none;
  font-size: 14px;
}

.admin-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
}

.admin-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
}

/* ADMIN TOGGLE BUTTON */
.admin-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 1000;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.admin-toggle-btn:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .current-sermon-section {
    padding: 100px 16px 30px;
  }

  .verse-header h1 {
    font-size: 28px;
  }

  .book-icon {
    font-size: 36px;
  }

  .verse-container {
    padding: 30px 20px;
  }

  .verse-container blockquote {
    font-size: 20px;
    line-height: 1.7;
    padding-left: 20px;
  }

  .verse-container::before {
    font-size: 60px;
    left: 15px;
    top: 10px;
  }

  .admin-actions {
    flex-direction: column;
  }

  .admin-actions .btn {
    min-width: 100%;
  }
}
