/* ==========================================================================
   ATHAR LANDING PAGE - INTERACTIVE DEMO STYLES (TASBEEH & QUOTES)
   ========================================================================== */

/* Interactive Tasbeeh Component */
.tasbeeh-widget {
  background: radial-gradient(circle at top, var(--surface-variant), var(--surface-dark));
  border: 2px solid rgba(30, 107, 122, 0.3);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(0,0,0,0.6);
  cursor: pointer;
  user-select: none;
  transition: transform 0.1s ease;
}

.tasbeeh-widget:active {
  transform: scale(0.97);
}

.tasbeeh-display {
  font-family: monospace;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  margin-bottom: 8px;
}

.tasbeeh-target {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.tasbeeh-btn-reset {
  position: absolute;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.tasbeeh-btn-reset:hover {
  background: rgba(220, 53, 69, 0.2);
  color: #ff6b6b;
  border-color: rgba(220, 53, 69, 0.4);
}

/* Quote/Callout card styling */
.quote-card {
  border-right: 4px solid var(--accent-gold);
  border-left: none;
  background: rgba(212, 175, 55, 0.03);
  padding: 24px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-family: var(--font-accent);
  font-size: 1.35rem;
  line-height: 1.8;
  color: var(--accent-cream);
  margin-bottom: 24px;
}
