/*
Theme Name: Prayerslide
Description: A modern WordPress theme for prayers with slide-by-slide functionality, redesigned with contemporary UI patterns.
Version: 2.0
Author: Prayerslide Theme
Text Domain: prayerslide
*/

/* Font Face Declarations */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.9d6ea955.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Light.bc3640bb.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.a3d41c8a.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.dbdc58a1.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tomato Grotesk';
  src: url('fonts/Tomato-Grotesk-medium.f1183a75.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tomato Grotesk';
  src: url('fonts/Tomato-Grotesk-semibold.019ade94.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Unicons';
  src: url('fonts/Unicons.9ab4a243.eot');
  src: url('fonts/Unicons.9ab4a243.eot#iefix') format('embedded-opentype'),
       url('fonts/Unicons.c3373071.woff') format('woff'),
       url('fonts/Unicons.73232ed5.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* CSS Custom Properties (Variables) */
:root {
  /* Colors - Based on demoweb design */
  --uc-primary: #459CF2;
  --uc-secondary: #FCE04B;
  --uc-accent: #023363;
  --uc-success: #10b981;
  --uc-warning: #f59e0b;
  --uc-danger: #ef4444;
  --uc-info: #3b82f6;
  
  /* Gray Scale */
  --uc-white: #ffffff;
  --uc-gray-25: #fafafa;
  --uc-gray-50: #f9fafb;
  --uc-gray-100: #f3f4f6;
  --uc-gray-200: #5EA5D4;
  --uc-gray-300: #d1d5db;
  --uc-gray-400: #9ca3af;
  --uc-gray-500: #6b7280;
  --uc-gray-600: #4b5563;
  --uc-gray-700: #374151;
  --uc-gray-800: #1f2937;
  --uc-gray-900: #111827;
  --uc-black: #000000;
  
  /* Typography */
  --uc-font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --uc-font-family-heading: 'Tomato Grotesk', var(--uc-font-family-base);
  --uc-font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  /* Font Sizes */
  --uc-fs-8: 0.75rem;    /* 12px */
  --uc-fs-7: 0.875rem;   /* 14px */
  --uc-fs-6: 1rem;       /* 16px */
  --uc-fs-5: 1.125rem;   /* 18px */
  --uc-fs-4: 1.25rem;    /* 20px */
  --uc-fs-3: 1.5rem;     /* 24px */
  --uc-fs-2: 1.875rem;   /* 30px */
  --uc-fs-1: 2.25rem;    /* 36px */
  --uc-display-6: 3rem;  /* 48px */
  --uc-display-5: 3.5rem; /* 56px */
  --uc-display-4: 4rem;  /* 64px */
  --uc-display-3: 4.5rem; /* 72px */
  --uc-display-2: 5rem;  /* 80px */
  --uc-display-1: 6rem;  /* 96px */
  
  /* Spacing */
  --uc-space-narrow: 0.25rem;
  --uc-space-1: 0.5rem;
  --uc-space-2: 1rem;
  --uc-space-3: 1.5rem;
  --uc-space-4: 2rem;
  --uc-space-5: 2.5rem;
  --uc-space-6: 3rem;
  --uc-space-7: 3.5rem;
  --uc-space-8: 4rem;
  --uc-space-9: 4.5rem;
  
  /* Border Radius */
  --uc-radius-1: 0.25rem;
  --uc-radius-2: 0.5rem;
  --uc-radius-3: 0.75rem;
  --uc-radius-pill: 50rem;
  --uc-radius-circle: 50%;
  
  /* Shadows */
  --uc-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --uc-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --uc-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --uc-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --uc-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --uc-transition: all 0.15s ease-in-out;
  --uc-transition-slow: all 0.3s ease-in-out;
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
  :root {
    --uc-primary: #60a5fa;
    --uc-secondary: #fde047;
  }
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--uc-font-family-base);
  font-size: var(--uc-fs-6);
  font-weight: 400;
  line-height: 1.6;
  color: var(--uc-gray-900);
  background-color: #E6E9EC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--uc-font-family-heading);
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

.h1, h1 { font-size: var(--uc-fs-1); }
.h2, h2 { font-size: var(--uc-fs-2); }
.h3, h3 { font-size: var(--uc-fs-3); }
.h4, h4 { font-size: var(--uc-fs-4); }
.h5, h5 { font-size: var(--uc-fs-5); }
.h6, h6 { font-size: var(--uc-fs-6); }

.display-1 { font-size: var(--uc-display-1); }
.display-2 { font-size: var(--uc-display-2); }
.display-3 { font-size: var(--uc-display-3); }
.display-4 { font-size: var(--uc-display-4); }
.display-5 { font-size: var(--uc-display-5); }
.display-6 { font-size: var(--uc-display-6); }

.fs-8 { font-size: var(--uc-fs-8); }
.fs-7 { font-size: var(--uc-fs-7); }
.fs-6 { font-size: var(--uc-fs-6); }
.fs-5 { font-size: var(--uc-fs-5); }
.fs-4 { font-size: var(--uc-fs-4); }
.fs-3 { font-size: var(--uc-fs-3); }
.fs-2 { font-size: var(--uc-fs-2); }
.fs-1 { font-size: var(--uc-fs-1); }

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-bold { font-weight: 700; }

p {
  margin: 0 0 1rem;
}

a {
  color: var(--uc-primary);
  text-decoration: underline;
  transition: var(--uc-transition);
}

a:hover {
  color: var(--uc-accent);
}

.text-none {
  text-decoration: none;
}

/* Color Utilities */
.text-primary { color: var(--uc-primary); }
.text-secondary { color: var(--uc-secondary); }
.text-accent { color: var(--uc-accent); }
.text-success { color: var(--uc-success); }
.text-warning { color: var(--uc-warning); }
.text-danger { color: var(--uc-danger); }
.text-info { color: var(--uc-info); }
.text-white { color: var(--uc-white); }
.text-gray-25 { color: var(--uc-gray-25); }
.text-gray-50 { color: var(--uc-gray-50); }
.text-gray-100 { color: var(--uc-gray-100); }
.text-gray-200 { color: var(--uc-gray-200); }
.text-gray-300 { color: var(--uc-gray-300); }
.text-gray-400 { color: var(--uc-gray-400); }
.text-gray-500 { color: var(--uc-gray-500); }
.text-gray-600 { color: var(--uc-gray-600); }
.text-gray-700 { color: var(--uc-gray-700); }
.text-gray-800 { color: var(--uc-gray-800); }
.text-gray-900 { color: var(--uc-gray-900); }
.text-black { color: var(--uc-black); }

/* Background Colors */
.bg-primary { background-color: var(--uc-primary); }
.bg-secondary { background-color: var(--uc-secondary); }
.bg-accent { background-color: var(--uc-accent); }
.bg-success { background-color: var(--uc-success); }
.bg-warning { background-color: var(--uc-warning); }
.bg-danger { background-color: var(--uc-danger); }
.bg-info { background-color: var(--uc-info); }
.bg-white { background-color: #E6E9EC; }
.bg-gray-25 { background-color: var(--uc-gray-25); }
.bg-gray-50 { background-color: var(--uc-gray-50); }
.bg-gray-100 { background-color: var(--uc-gray-100); }
.bg-gray-200 { background-color: var(--uc-gray-200); }
.bg-gray-300 { background-color: var(--uc-gray-300); }
.bg-gray-400 { background-color: var(--uc-gray-400); }
.bg-gray-500 { background-color: var(--uc-gray-500); }
.bg-gray-600 { background-color: var(--uc-gray-600); }
.bg-gray-700 { background-color: var(--uc-gray-700); }
.bg-gray-800 { background-color: var(--uc-gray-800); }
.bg-gray-900 { background-color: var(--uc-gray-900); }
.bg-black { background-color: var(--uc-black); }

/* Background Opacity */
.bg-opacity-10 { background-color: rgb(from var(--uc-primary) r g b / 0.1); }
.bg-opacity-20 { background-color: rgb(from var(--uc-primary) r g b / 0.2); }
.bg-opacity-50 { background-color: rgb(from var(--uc-primary) r g b / 0.5); }
.bg-opacity-75 { background-color: rgb(from var(--uc-primary) r g b / 0.75); }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.panel {
  display: block;
}

.vstack {
  display: flex;
  flex-direction: column;
}

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cstack {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spacing */
.m-0 { margin: 0; }
.m-1 { margin: var(--uc-space-1); }
.m-2 { margin: var(--uc-space-2); }
.m-3 { margin: var(--uc-space-3); }
.m-4 { margin: var(--uc-space-4); }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

.mt-1 { margin-top: var(--uc-space-1); }
.mt-2 { margin-top: var(--uc-space-2); }
.mt-3 { margin-top: var(--uc-space-3); }
.mt-4 { margin-top: var(--uc-space-4); }
.mt-auto { margin-top: auto; }

.mb-1 { margin-bottom: var(--uc-space-1); }
.mb-2 { margin-bottom: var(--uc-space-2); }
.mb-3 { margin-bottom: var(--uc-space-3); }
.mb-4 { margin-bottom: var(--uc-space-4); }

.p-1 { padding: var(--uc-space-1); }
.p-2 { padding: var(--uc-space-2); }
.p-3 { padding: var(--uc-space-3); }
.p-4 { padding: var(--uc-space-4); }
.p-5 { padding: var(--uc-space-5); }
.p-6 { padding: var(--uc-space-6); }

.px-1 { padding-left: var(--uc-space-1); padding-right: var(--uc-space-1); }
.px-2 { padding-left: var(--uc-space-2); padding-right: var(--uc-space-2); }
.px-3 { padding-left: var(--uc-space-3); padding-right: var(--uc-space-3); }

.py-1 { padding-top: var(--uc-space-1); padding-bottom: var(--uc-space-1); }
.py-2 { padding-top: var(--uc-space-2); padding-bottom: var(--uc-space-2); }
.py-3 { padding-top: var(--uc-space-3); padding-bottom: var(--uc-space-3); }
.py-4 { padding-top: var(--uc-space-4); padding-bottom: var(--uc-space-4); }
.py-5 { padding-top: var(--uc-space-5); padding-bottom: var(--uc-space-5); }
.py-6 { padding-top: var(--uc-space-6); padding-bottom: var(--uc-space-6); }
.py-7 { padding-top: var(--uc-space-7); padding-bottom: var(--uc-space-7); }
.py-8 { padding-top: var(--uc-space-8); padding-bottom: var(--uc-space-8); }
.py-9 { padding-top: var(--uc-space-9); padding-bottom: var(--uc-space-9); }

.py-narrow { padding-top: var(--uc-space-narrow); padding-bottom: var(--uc-space-narrow); }

/* Gap Utilities */
.gap-1 { gap: var(--uc-space-1); }
.gap-2 { gap: var(--uc-space-2); }
.gap-3 { gap: var(--uc-space-3); }
.gap-4 { gap: var(--uc-space-4); }
.gap-5 { gap: var(--uc-space-5); }
.gap-6 { gap: var(--uc-space-6); }
.gap-7 { gap: var(--uc-space-7); }
.gap-8 { gap: var(--uc-space-8); }

/* Border Radius */
.rounded-1 { border-radius: var(--uc-radius-1); }
.rounded-2 { border-radius: var(--uc-radius-2); }
.rounded-3 { border-radius: var(--uc-radius-3); }
.rounded-pill { border-radius: var(--uc-radius-pill); }
.rounded-circle { border-radius: var(--uc-radius-circle); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Z-index */
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }
.z-1000 { z-index: 1000; }

/* Width & Height */
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.min-h-screen { min-height: 100vh; }
.w-fit-content { width: fit-content; }

.w-40px { width: 40px; }
.h-40px { height: 40px; }
.w-48px { width: 48px; }
.h-48px { height: 48px; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-center { align-items: center; }

/* Gap Classes */
.g-2 { margin: 0 -0.5rem; }
.g-2 > * { padding: 0 0.5rem; }
.g-4 { margin: 0 -1rem; }
.g-4 > * { padding: 0 1rem; }
.g-6 { margin: 0 -1.5rem; }
.g-6 > * { padding: 0 1.5rem; }
.g-8 { margin: 0 -2rem; }
.g-8 > * { padding: 0 2rem; }

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.row > * {
  padding: 0 0.5rem;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }

/* Child Grid Utilities */
.child-cols-12 > * { flex: 0 0 100%; max-width: 100%; }
.child-cols-6 > * { flex: 0 0 50%; max-width: 50%; }
.child-cols-4 > * { flex: 0 0 25%; max-width: 25%; }
.child-cols-3 > * { flex: 0 0 25%; max-width: 25%; }
.child-cols-2 > * { flex: 0 0 50%; max-width: 50%; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: var(--uc-fs-6);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--uc-radius-2);
  transition: var(--uc-transition);
  white-space: nowrap;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--uc-primary), 0.25);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: var(--uc-fs-7);
}

.btn-md {
  padding: 0.5rem 1rem;
  font-size: var(--uc-fs-6);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: var(--uc-fs-5);
}

.btn-primary {
  color: var(--uc-white);
  background-color: #173655;
  border-color: #173655;
}

.btn-primary:hover {
  color: var(--uc-white);
  background-color: #0f2a42;
  border-color: #0f2a42;
}

.btn-outline-primary {
  color: var(--uc-primary);
  background-color: transparent;
  border-color: var(--uc-primary);
}

.btn-outline-primary:hover {
  color: var(--uc-white);
  background-color: var(--uc-primary);
  border-color: var(--uc-primary);
}

.btn-outline-gray {
  color: var(--uc-gray-600);
  background-color: transparent;
  border-color: var(--uc-gray-300);
}

.btn-outline-gray:hover {
  color: var(--uc-white);
  background-color: var(--uc-gray-600);
  border-color: var(--uc-gray-600);
}

/* Forms */
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: var(--uc-fs-6);
  font-weight: 400;
  line-height: 1.5;
  color: var(--uc-gray-900);
  background-color: var(--uc-white);
  background-clip: padding-box;
  border: 1px solid var(--uc-gray-300);
  border-radius: var(--uc-radius-2);
  transition: var(--uc-transition);
}

.form-control:focus {
  color: var(--uc-gray-900);
  background-color: var(--uc-white);
  border-color: var(--uc-primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--uc-primary), 0.25);
}

.form-control-lg {
  padding: 0.75rem 1rem;
  font-size: var(--uc-fs-5);
}

/* Badges */
.uc-badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--uc-radius-1);
}

/* Icons */
.icon-narrow { font-size: 0.875em; }
.icon-1 { font-size: 1em; }
.icon-2 { font-size: 1.5em; }
.icon-3 { font-size: 2em; }

/* Aspect Ratios */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--uc-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  --uc-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-4x3 {
  --uc-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-1x1 {
  --uc-aspect-ratio: 100%;
}

/* Media */
.media-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Opacity */
.opacity-60 { opacity: 0.6; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

/* Responsive Breakpoints */
@media (min-width: 576px) {
  .sm\:d-inline { display: inline; }
  .sm\:d-block { display: block; }
  .sm\:child-cols-6 > * { flex: 0 0 50%; max-width: 50%; }
  .sm\:child-cols-4 > * { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .sm\:child-cols-3 > * { flex: 0 0 25%; max-width: 25%; }
  .sm\:child-cols-2 > * { flex: 0 0 50%; max-width: 50%; }
}

@media (min-width: 768px) {
  .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  
  .lg\:gap-2 { gap: var(--uc-space-2); }
  .lg\:gap-4 { gap: var(--uc-space-4); }
  .lg\:gap-6 { gap: var(--uc-space-6); }
  .lg\:gap-8 { gap: var(--uc-space-8); }
  
  .lg\:py-8 { padding-top: var(--uc-space-8); padding-bottom: var(--uc-space-8); }
  .lg\:py-9 { padding-top: var(--uc-space-9); padding-bottom: var(--uc-space-9); }
  
  .lg\:p-4 { padding: var(--uc-space-4); }
  .lg\:p-6 { padding: var(--uc-space-6); }
  
  .lg\:mt-6 { margin-top: var(--uc-space-6); }
  
  .lg\:btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: var(--uc-fs-5);
  }
  
  .lg\:child-cols-3 > * { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .lg\:child-cols-4 > * { flex: 0 0 25%; max-width: 25%; }
}

@media (min-width: 1024px) {
  .xl\:display-4 { font-size: var(--uc-display-4); }
  .xl\:h1 { font-size: var(--uc-fs-1); }
  .xl\:fs-5 { font-size: var(--uc-fs-5); }
  
  .xl\:gap-6 { gap: var(--uc-space-6); }
  .xl\:gap-8 { gap: var(--uc-space-8); }
  
  .xl\:py-9 { padding-top: var(--uc-space-9); padding-bottom: var(--uc-space-9); }
}

/* Dark Mode Support */
.dark\:bg-gray-900 { background-color: #E6E9EC; }
.dark\:bg-gray-800 { background-color: var(--uc-gray-800); }
.dark\:bg-gray-100 { background-color: var(--uc-gray-100); }
.dark\:text-gray-200 { color: var(--uc-gray-200); }
.dark\:text-gray-300 { color: var(--uc-gray-300); }
.dark\:text-gray-400 { color: var(--uc-gray-400); }
.dark\:text-gray-900 { color: var(--uc-gray-900); }

/* Breakpoint Classes */
.bp-xs { display: block; }
.bp-sm { display: none; }
.bp-md { display: none; }
.bp-lg { display: none; }
.bp-xl { display: none; }
.bp-xxl { display: none; }

@media (min-width: 576px) {
  .bp-xs { display: none; }
  .bp-sm { display: block; }
}

@media (min-width: 768px) {
  .bp-sm { display: none; }
  .bp-md { display: block; }
}

@media (min-width: 992px) {
  .bp-md { display: none; }
  .bp-lg { display: block; }
}

@media (min-width: 1200px) {
  .bp-lg { display: none; }
  .bp-xl { display: block; }
}

@media (min-width: 1400px) {
  .bp-xl { display: none; }
  .bp-xxl { display: block; }
}

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* Header Styles - Demo Design */
.uc-header {
  position: relative;
  z-index: 999;
}

.uc-navbar-sticky-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.uc-navbar-container {
  background-color: var(--uc-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.uc-navbar-sticky .uc-navbar-container {
  background-color: var(--uc-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.uc-navbar-transparent .uc-navbar-container {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.uc-center-navbar {
  position: relative;
}

.uc-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0;
}

@media (min-width: 992px) {
  .uc-navbar {
    min-height: 100px;
  }
}

.uc-navbar-left,
.uc-navbar-center,
.uc-navbar-right {
  display: flex;
  align-items: center;
}

.uc-navbar-center {
  flex: 1;
  justify-content: flex-end;
}

/* Logo Styles */
.uc-logo {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.uc-logo a {
  display: inline-block;
  text-decoration: none;
}

.uc-logo img {
  width: 160px !important;
  height: auto;
  transition: all 0.3s ease;
}

@media (min-width: 1200px) {
  .uc-logo img {
    width: 180px !important;
  }
}

/* Navigation Menu */
.uc-navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

@media (min-width: 1200px) {
  .uc-navbar-nav {
    gap: 1.5rem;
  }
}

.uc-navbar-nav li {
  position: relative;
}

.uc-navbar-nav a {
  display: block;
  padding: 0.5rem 0;
  color: var(--uc-gray-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.uc-navbar-nav a:hover {
  color: var(--uc-primary);
}

/* Header Button */
.uc-navbar-right .btn {
  margin-left: 1rem;
}

/* Dashboard Link Button Styling */
.menu-item-dashboard .dashboard-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #173655;
  color: white !important;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.80rem !important;
  transition: all 0.3s ease;
  border: 2px solid #173655;
}

.menu-item-dashboard .dashboard-link:hover {
  background: #0f2a42;
  border-color: #0f2a42;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 54, 85, 0.3);
}

.menu-item-dashboard .dashboard-link .user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.menu-item-dashboard .dashboard-link .login-icon {
  font-size: 1.2rem;
  opacity: 0.9;
}

.menu-item-dashboard .dashboard-link .dashboard-text {
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .menu-item-dashboard .dashboard-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .menu-item-dashboard .dashboard-link .user-avatar {
    width: 20px;
    height: 20px;
  }
}





/* Hero Section Styles */
.uc-hero-wrapper {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

.hero-email-form {
  background: white;
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 400px;
}

.hero-email-form input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 14px;
}

.hero-email-form input:focus {
  outline: none;
  box-shadow: none;
}

.hero-email-form .btn {
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.hero-stats .stat-label {
  font-size: 2rem;
  color: #6b7280;
  margin: 0;
}

.hero-illustration {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

/* Hero Woman Photo Styles */
.hero-woman-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-woman-photo .position-relative {
  position: relative;
}

.hero-woman-photo .bg-gradient-to-br {
  background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-woman-photo .bg-gradient-to-br:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.floating-badge {
  position: absolute;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-badge.success {
  background: #10b981;
  color: white;
  top: 20px;
  left: 20px;
}

.floating-badge.warning {
  background: #f59e0b;
  color: white;
  bottom: 20px;
  left: 20px;
}

.floating-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: white;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

@media (max-width: 991px) {
  .hero-stats {
    margin-top: 2rem;
  }
  
  .hero-stats .col-4 {
    margin-bottom: 1rem;
  }
  
  .hero-illustration {
    margin-top: 2rem;
    min-height: 300px;
  }
  
  .hero-woman-photo .bg-gradient-to-br {
    width: 250px !important;
    height: 250px !important;
  }
  
  .floating-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .floating-badge.success {
    top: 10px !important;
    right: -10px !important;
  }
  
  .floating-badge.warning {
    bottom: 10px !important;
    left: -10px !important;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
  .uc-navbar-nav {
    display: none;
  }
  
  .uc-menu-trigger {
    display: flex;
  }
  
  .uc-navbar {
    min-height: 60px;
  }
  
  .uc-logo {
    margin-top: 1rem;
  }
  
  .uc-logo img {
    width: 130px !important;
  }
}

@media (min-width: 992px) {
  .uc-menu-trigger {
    display: none;
  }
  
  .uc-navbar-nav {
    display: flex;
  }
}



/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--uc-gray-900);
  font-weight: 700;
  font-size: var(--uc-fs-4);
}

.site-logo:hover {
  color: var(--uc-primary);
}

.site-logo img {
  max-height: 40px;
  width: auto;
}

/* Footer */
.site-footer {
  background-color: var(--uc-gray-900);
  color: var(--uc-white);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--uc-white);
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: var(--uc-gray-300);
  text-decoration: none;
  transition: var(--uc-transition);
}

.footer-section ul a:hover {
  color: var(--uc-white);
}

.footer-bottom {
  border-top: 1px solid var(--uc-gray-700);
  padding-top: 2rem;
  text-align: center;
  color: var(--uc-gray-400);
}

/* Prayer Viewer Styles */
.prayer-viewer {
  max-width: 800px;
  margin: 2rem auto;
  background: var(--uc-white);
  border-radius: var(--uc-radius-3);
  box-shadow: var(--uc-shadow-lg);
  overflow: hidden;
}

.prayer-header {
  background-color: var(--uc-primary);
  color: var(--uc-white);
  padding: 2rem;
  text-align: center;
}

.prayer-title {
  font-size: var(--uc-fs-2);
  margin-bottom: 0.5rem;
}

.prayer-content {
  padding: 0.25rem;
}

.prayer-slides-container {
  position: relative;
  min-height: 300px;
}

.prayer-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: var(--uc-fs-4);
  line-height: 1.8;
  text-align: center;
  padding: 1rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.prayer-slide.active {
  opacity: 1;
  visibility: visible;
}

.prayer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: var(--uc-gray-50);
  border-top: 1px solid var(--uc-gray-200);
}

.nav-btn {
  background-color: var(--uc-primary);
  color: var(--uc-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--uc-radius-2);
  cursor: pointer;
  font-size: var(--uc-fs-6);
  transition: var(--uc-transition);
}

.nav-btn:hover:not(:disabled) {
  background-color: var(--uc-accent);
}

.nav-btn:disabled {
  background-color: var(--uc-gray-400);
  cursor: not-allowed;
}

/* Hamburger Button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #2575fc;
  padding: 5px;
  z-index: 1000;
}

/* Show hamburger on mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

/* Mobile Navigation Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Menu */
@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    z-index: 999;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1.5rem 0;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
  }

  .nav-links a:hover {
    color: #2575fc;
    background: rgba(37, 117, 252, 0.1);
  }
  
  /* Dashboard button styling in mobile menu */
  .nav-links .menu-item-dashboard .dashboard-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #173655;
    border: 1px solid #173655;
    border-radius: 8px;
    color: white;
    font-weight: 600;
  }
  
  .nav-links .menu-item-dashboard .dashboard-link:hover {
    background: #D0B431;
    color: white;
  }
  
  .nav-links .menu-item-dashboard .user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid currentColor;
  }
  
  .nav-links .menu-item-dashboard .login-icon {
    font-size: 1.2rem;
  }
  
  .nav-links .menu-item-dashboard .dashboard-text {
    font-size: 1.1rem;
  }
  
  /* Close button styling */
  .nav-links .close-menu-item {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links .close-menu-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #173655;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }
  
  .nav-links .close-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
  }
  
  .nav-links .close-icon {
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  .nav-links {
    display: none;
  }
  .overlay {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .nav-links {
    width: 85%;
  }
}

/* Responsive Design */
/* Mobile First - Base styles for mobile */
.container {
  padding: 0 1rem;
}

.nav-menu {
  display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn-group {
    flex-direction: row;
    gap: 1rem;
  }
  
  .search-form {
    max-width: 500px;
  }
  
  /* Responsive Grid Classes for sm breakpoint */
  .sm\:col-6 { flex: 0 0 50%; max-width: 50%; }
  .sm\:col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .sm\:col-3 { flex: 0 0 25%; max-width: 25%; }
  .sm\:child-cols-6 > * { flex: 0 0 50%; max-width: 50%; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Large devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  
  .uc-navbar-nav.mobile-active {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    box-shadow: none;
    z-index: auto;
  }
  
  .uc-navbar-nav.mobile-active li {
    margin: 0 10px;
    width: auto;
  }
  
  .uc-navbar-nav.mobile-active a {
    padding: 0.5rem 0;
    font-size: 1rem;
    border-bottom: none;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .hero-section {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .prayers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .prayer-viewer {
    margin: 2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .hero-section {
    padding: 8rem 0;
  }
  
  /* Responsive Grid Classes for lg breakpoint */
  .lg\:col-6 { flex: 0 0 50%; max-width: 50%; }
  .lg\:col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .lg\:col-3 { flex: 0 0 25%; max-width: 25%; }
  .lg\:col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .lg\:col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .lg\:col-12 { flex: 0 0 100%; max-width: 100%; }
  
  /* Responsive Text Alignment */
  .lg\:text-start { text-align: left; }
  
  /* Responsive Gap Classes */
  .lg\:g-6 { margin: 0 -1.5rem; }
  .lg\:g-6 > * { padding: 0 1.5rem; }
  .lg\:g-8 { margin: 0 -2rem; }
  .lg\:g-8 > * { padding: 0 2rem; }
  
  .lg\:child-cols-3 > * { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .lg\:child-cols-4 > * { flex: 0 0 25%; max-width: 25%; }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .prayers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .search-form {
    max-width: 600px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-section {
    padding: 10rem 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .prayers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive Design for All Prayers Page */
@media (max-width: 768px) {
  .archive-header {
    padding: 2rem 0 1.5rem;
  }
  
  .archive-title {
    font-size: 2rem;
  }
  
  .archive-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .filter-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .prayer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .prayer-card {
    margin: 0 0.5rem;
  }
  
  .prayer-filters {
    margin: 0 0.5rem 1.5rem;
    padding: 1rem;
  }
  
  /* Mobile hero section adjustments */
  .uc-hero .col-12.lg\:col-6 .panel.vstack .panel.vstack h2 {
    margin-top: 1rem;
  }
  
  .hero-image {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .filter-controls {
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
  }
  
  .sort-filter {
    grid-column: 1 / -1;
  }
  
  .prayer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 574px) {
  /* Global overflow prevention */
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure content remains visible on very small screens */
  .bp-xs {
    display: block !important;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  /* Add gap above "Find Your Perfect Prayer" text */
  .uc-hero .col-12.lg\:col-6 .panel.vstack .panel.vstack h2 {
    margin-top: 1.5rem;
  }
  
  /* Add bottom margin to hero image */
  .hero-image {
    margin-bottom: 2rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
    white-space: normal;
    word-wrap: break-word;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .categories-grid,
  .prayers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .prayer-viewer {
    margin: 0.5rem;
    border-radius: 0;
  }
  
  .prayer-slide {
    padding: 1rem;
    font-size: var(--uc-fs-6);
    min-height: 250px;
  }
  
  /* All Prayers Page Mobile Styles */
  .archive-header {
    padding: 1.5rem 0 1rem;
    margin-bottom: 1rem;
  }
  
  .archive-title {
    font-size: 1.75rem;
  }
  
  .prayer-filters {
    margin: 0 0.25rem 1rem;
    padding: 0.75rem;
    border-radius: 8px;
  }
  
  .prayer-grid {
    margin: 0 0.25rem 2rem;
    gap: 0.75rem;
  }
  
  .prayer-card {
    margin: 0;
  }
  
  .prayer-card-content {
    padding: 1rem;
  }
  
  .prayer-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .read-prayer-btn {
    width: 100%;
  }
  
  .favorite-btn {
    align-self: center;
  }
  
  /* Fix form overflow issues */
  .prayer-search-form {
    width: 100%;
    max-width: 100%;
  }
  
  .form-control {
    min-width: 0;
    width: 100%;
  }
  
  .hstack {
    flex-wrap: wrap;
  }
  
  /* Ensure containers don't overflow */
  .container {
    padding: 0 0.75rem;
    max-width: 100%;
  }
  
  /* Fix any potential overflow issues */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Fix hero email form button */
  .hero-email-form .btn {
    white-space: normal;
    word-wrap: break-word;
  }
  
  /* Ensure no horizontal overflow */
  body, html {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Fix navbar minimum height issues */
  .uc-navbar {
    min-height: auto !important;
  }
  
  /* Fix grid and flex layouts */
  .row, .col-12, .col-6, .lg\:col-6 {
    max-width: 100%;
    min-width: 0;
  }
  
  /* Fix any elements with fixed positioning */
  .position-relative, .position-absolute {
    max-width: 100%;
  }
  
  /* Ensure all text elements wrap properly */
  h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Fix any potential issues with the hero wrapper */
  .uc-hero-wrapper, .uc-hero {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .prayer-content {
    padding: 0.25rem;
  }
  
  .prayer-header {
    padding: 0.75rem;
  }
  
  .prayer-navigation {
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .nav-btn {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* All Prayers Archive Page Styling */
.archive-header {
  text-align: center;
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #173655 0%, #1e4a6b 100%);
  color: white;
  margin-bottom: 2rem;
}

.archive-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.archive-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Prayer Filters Section */
.prayer-filters {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.search-filter {
  position: relative;
}

.prayer-search-form {
  display: flex;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 2px solid #e9ecef;
  transition: border-color 0.3s ease;
}

.prayer-search-form:focus-within {
  border-color: #173655;
}

.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

.search-field::placeholder {
  color: #6c757d;
}

.search-submit {
  padding: 0.75rem 1rem;
  background: #173655;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  transition: background-color 0.3s ease;
  min-width: 50px;
}

.search-submit:hover {
  background: #0f2a42;
}

.category-filter select,
.sort-filter select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.category-filter select:focus,
.sort-filter select:focus {
  outline: none;
  border-color: #173655;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 400px;
}

.hero-text-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-text-content {
    text-align: left;
  }
}

/* Hero Image Styling */
.hero-image-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 250px;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    min-height: auto;
  }
  
  .hero-image {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
  }
}

@media (max-width: 576px) {
  .hero-image {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 15px;
  }
  
  .hero-content-wrapper {
    gap: 1rem;
  }
}

/* Prayer Count */
.prayer-count {
  margin-bottom: 1.5rem;
  text-align: center;
}

.prayer-count p {
  color: #6c757d;
  font-size: 1rem;
  margin: 0;
}

/* Prayer Grid Layout - Updated to match Recent Prayers grid */
.prayer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.prayer-grid .prayer-card {
  flex: 1 1 100%;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .prayer-grid {
    gap: 1.5rem;
  }
  
  .prayer-grid .prayer-card {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 992px) {
  .prayer-grid .prayer-card {
    flex: 1 1 calc(25% - 1.125rem);
  }
}

.prayer-card {
  background: #173655;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prayer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.prayer-thumbnail {
  position: relative;
  overflow: hidden;
}

.prayer-thumbnail a {
  display: block;
}

.prayer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.prayer-card:hover .prayer-image {
  transform: scale(1.05);
}

.prayer-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: white;
}

.prayer-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.prayer-title a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.prayer-title a:hover {
  color: #D0B431;
}

.prayer-excerpt {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.prayer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.slide-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.prayer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.read-prayer-btn {
  background: #D0B431;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  flex: 1;
  text-align: center;
}

.read-prayer-btn:hover {
  background: #b8a02b;
  color: white;
}

.favorite-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.125rem;
}

.favorite-btn:hover {
  border-color: #D0B431;
  background: rgba(208, 180, 49, 0.1);
}

.favorite-btn .heart-icon.favorited {
  color: #ff6b6b;
}

/* No Prayers Found */
.no-prayers {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 2rem 0;
}

.no-prayers-content h2 {
  color: #173655;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.no-prayers-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.view-all-prayers {
  background: #173655;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.view-all-prayers:hover {
  background: #0f2a42;
  color: white;
}

/* Pagination */
.pagination-wrapper {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.prayer-pagination {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.prayer-pagination .page-numbers {
  padding: 0.5rem 0.75rem;
  background: white;
  border: 2px solid #e9ecef;
  color: #173655;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.prayer-pagination .page-numbers:hover,
.prayer-pagination .page-numbers.current {
  background: #173655;
  border-color: #173655;
  color: white;
}

/* Category Section Styling */
.category-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  background-color: #173655;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  border: none;
  font-size: 1.70rem !important;
  margin-bottom: 1rem;
}

.category-btn:hover {
  background-color: #173655;
  color: white;
  text-decoration: none;
}



/* Animation Support */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }

/* RTL Support */
.ltr\:ml-narrow { margin-left: var(--uc-space-narrow); }
.rtl\:mr-narrow { margin-right: var(--uc-space-narrow); }

[dir="rtl"] .ltr\:ml-narrow { margin-left: 0; }
[dir="rtl"] .rtl\:mr-narrow { margin-right: var(--uc-space-narrow); }

/* WordPress Core Compatibility */
.wp-block-group {
  margin-bottom: 1.5rem;
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-quote {
  border-left: 4px solid var(--uc-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* Scrolling Badges Styles */
.scrolling-badges-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 1320px; /* Set specific max-width as requested */
  margin: 0 auto;
  padding: 1rem 0;
  background-color: #E6E9EC;
}

.scrolling-badges-container {
  width: 100%;
  overflow: hidden;
  height: 140px;
  display: flex;
  align-items: center;
}

.scrolling-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: scrollRight 120s linear infinite; /* Slower: 60s -> 120s */
  white-space: nowrap;
  height: 120px;
  transform: translateX(0); /* Start with badges visible */
}

.badge-item-image {
  display: inline-block;
  width: 104px; /* Increased by 30%: 80px * 1.3 = 104px */
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(23, 54, 85, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.8);
  background: white;
}

.badge-item-image:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(23, 54, 85, 0.4);
  border-color: #D0B431;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* Responsive adjustments for badges */
@media (max-width: 768px) {
  .scrolling-badges-wrapper {
    max-width: 100%;
    padding: 0.8rem 1rem;
  }
  
  .scrolling-badges-container {
    height: 120px;
  }
  
  .scrolling-badges {
    height: 100px;
    gap: 1rem;
  }
  
  .badge-item-image {
    width: 85px; /* 30% increase: 65px * 1.3 = 84.5px ≈ 85px */
    height: 85px;
  }
}

@media (max-width: 480px) {
  .scrolling-badges-wrapper {
    padding: 0.5rem;
  }
  
  .scrolling-badges-container {
    height: 100px;
  }
  
  .scrolling-badges {
    height: 80px;
    gap: 0.8rem;
  }
  
  .badge-item-image {
    width: 65px; /* 30% increase: 50px * 1.3 = 65px */
    height: 65px;
  }
}

.wp-block-button .wp-block-button__link {
  background-color: var(--uc-primary);
  color: var(--uc-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--uc-radius-2);
  text-decoration: none;
  display: inline-block;
  transition: var(--uc-transition);
}

.wp-block-button .wp-block-button__link:hover {
  background-color: var(--uc-accent);
}

/* Font Size Classes for Prayer Content */
.font-small .slide-content {
  font-size: 1.25rem !important;
}

.font-medium .slide-content {
  font-size: 1.5rem !important;
}

.font-large .slide-content {
  font-size: 1.875rem !important;
}

.font-extra-large .slide-content {
  font-size: 2.25rem !important;
}

/* Login Modal Styles */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.login-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.login-modal-content {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.login-modal-overlay.show .login-modal-content {
  transform: scale(1);
}

.login-modal-header {
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.login-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.login-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.login-modal-close:hover {
  background-color: #f5f5f5;
  color: #333;
}

.login-modal-body {
  padding: 0 20px 20px;
}

.login-modal-body p {
  margin: 0 0 20px;
  color: #666;
  line-height: 1.5;
}

.social-login-container {
  text-align: center;
}

#google-login-placeholder {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* Login Points Button Styles */
.login-points-btn {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 8px;
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.login-points-btn:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.login-points-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .login-modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
  
  .login-modal-header {
    padding: 15px 15px 0;
  }
  
  .login-modal-body {
    padding: 0 15px 15px;
  }
  
  .prayer-navigation {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .login-points-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    order: 3;
  }
}

/* Dashboard Styles */
.dashboard-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.dashboard-header {
  background: linear-gradient(135deg, #173655 0%, #1e4a6b 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(23, 54, 85, 0.2);
}

.dashboard-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-details h2 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.user-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Prayer Tier Showcase */
.prayer-tier-showcase {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.tier-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.tier-badge-container {
  text-align: center;
}

.badge-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.badge-link:hover {
  transform: scale(1.05);
}

.tier-badge-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-click-text {
  margin: 0.5rem 0 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

.badge-text-link {
  color: #173655;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.badge-text-link:hover {
  color: #0f2a42;
  text-decoration: underline;
}

.tier-info {
  flex: 1;
}

.tier-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1e293b;
}

.tier-details {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.tier-level {
  background: #173655;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.tier-range {
  color: #64748b;
  font-size: 0.875rem;
}

.points-display {
  text-align: center;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 1.5rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.points-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #173655;
  line-height: 1;
}

.points-label {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.progress-to-next {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.progress-text {
  font-weight: 600;
  color: #1e293b;
}

.next-tier-name {
  color: #64748b;
  font-size: 0.875rem;
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #173655, #1e4a6b);
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Dashboard Stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #173655, #1e4a6b);
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(23, 54, 85, 0.3);
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: #1e293b;
}

.stat-label {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
}

/* Notification Display Styles */
.notification-display {
  padding: 0;
  margin: 0;
}

.notification-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.notification-message {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.no-notifications {
  font-size: 0.875rem;
  color: #94a3b8;
  text-align: center;
  padding: 0;
  margin: 0;
  font-style: italic;
}

/* Favorite Prayers Section */
.favorite-prayers-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #1e293b;
}

.browse-more-btn {
  background: #173655;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.browse-more-btn:hover {
  background: #0f2a42;
  color: white;
}

.favorite-prayers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.favorite-prayer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.favorite-prayer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.prayer-thumbnail {
  position: relative;
  overflow: hidden;
}

.prayer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.favorite-prayer-card:hover .prayer-image {
  transform: scale(1.05);
}

.prayer-content {
  padding: 1.5rem;
}

.prayer-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.prayer-title a {
  color: #1e293b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.prayer-title a:hover {
  color: #173655;
}

.prayer-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.prayer-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.prayer-category {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}

.prayer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.read-prayer-btn {
  background: #173655;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  flex: 1;
  text-align: center;
}

.read-prayer-btn:hover {
  background: #0f2a42;
  color: white;
}

.remove-favorite-btn {
  background: #ef4444;
  color: white;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.remove-favorite-btn:hover {
  background: #dc2626;
}

.remove-icon {
  font-size: 1rem;
  font-weight: bold;
}

/* Favorites Pagination */
.favorites-pagination {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.favorites-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 4px;
  padding: 8px 12px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.favorites-pagination .page-numbers:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #475569;
  transform: translateY(-1px);
}

.favorites-pagination .page-numbers.current {
  background: #173655;
  border-color: #173655;
  color: white;
  font-weight: 600;
}

.favorites-pagination .page-numbers.prev,
.favorites-pagination .page-numbers.next {
  padding: 8px 16px;
  font-weight: 500;
}

.favorites-pagination .page-numbers.prev:hover,
.favorites-pagination .page-numbers.next:hover {
  background: #173655;
  border-color: #173655;
  color: white;
}

.favorites-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: default;
}

.favorites-pagination .page-numbers.dots:hover {
  background: transparent;
  border: none;
  transform: none;
}

/* No Favorites State */
.no-favorites {
  text-align: center;
  padding: 3rem 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
}

.no-favorites-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-favorites-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #1e293b;
}

.no-favorites-text {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.browse-prayers-btn {
  background: #173655;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.browse-prayers-btn:hover {
  background: #0f2a42;
  color: white;
}

/* Suggested Prayers Section */
.suggested-prayers-section {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.section-subtitle {
  color: #64748b;
  margin: 0.25rem 0 0 0;
  font-size: 0.875rem;
}

.suggested-prayers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.suggested-prayer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggested-prayer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Dashboard Actions */
.dashboard-actions {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.action-btn.primary {
  background: #173655;
  color: white;
}

.action-btn.primary:hover {
  background: #0f2a42;
  color: white;
  transform: translateY(-2px);
}

.action-btn.secondary {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.action-btn.secondary:hover {
  background: #e2e8f0;
  color: #334155;
  transform: translateY(-2px);
}

.action-btn.logout {
  background: #ef4444;
  color: white;
}

.action-btn.logout:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1rem;
}

/* Dashboard Responsive Design */
@media (max-width: 1024px) {
  .dashboard-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .tier-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .dashboard-stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .favorite-prayers-grid,
  .suggested-prayers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .action-buttons {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .dashboard-wrapper {
    padding: 1rem 0.5rem;
  }
  
  .dashboard-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .dashboard-title {
    font-size: 2rem;
  }
  
  .user-info {
    justify-content: center;
  }
  
  .prayer-tier-showcase,
  .favorite-prayers-section,
  .suggested-prayers-section,
  .dashboard-actions {
    padding: 1.5rem;
  }
  
  .tier-card {
    gap: 1rem;
  }
  
  .tier-badge-image {
    width: 60px;
    height: 60px;
  }
  
  .tier-title {
    font-size: 1.5rem;
  }
  
  .points-display {
    padding: 1rem;
  }
  
  .points-number {
    font-size: 2rem;
  }
  
  .dashboard-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .browse-more-btn {
    align-self: stretch;
    text-align: center;
  }
  
  .favorite-prayers-grid,
  .suggested-prayers-grid {
    grid-template-columns: 1fr;
  }
  
  .prayer-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .read-prayer-btn {
    width: 100%;
  }
  
  .action-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dashboard-wrapper {
    padding: 0.75rem 0.25rem;
  }
  
  .dashboard-header {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .dashboard-title {
    font-size: 1.75rem;
  }
  
  .user-details h2 {
    font-size: 1.125rem;
  }
  
  .dashboard-content {
    gap: 1rem;
  }
  
  .prayer-tier-showcase,
  .favorite-prayers-section,
  .suggested-prayers-section,
  .dashboard-actions {
    padding: 1rem;
    margin: 0 0.25rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .tier-title {
    font-size: 1.25rem;
  }
  
  .tier-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .progress-to-next {
    padding: 1rem;
  }
  
  .progress-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .stat-icon {
    margin-bottom: 0.5rem;
  }
  
  .prayer-content {
    padding: 1rem;
  }
  
  .prayer-image {
    height: 150px;
  }
  
  .no-favorites {
    padding: 2rem 1rem;
  }
  
  .no-favorites-title {
    font-size: 1.25rem;
  }
  
  /* Mobile Pagination Styles */
  .favorites-pagination {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .favorites-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    margin: 0 2px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }
  
  .favorites-pagination .page-numbers.prev,
  .favorites-pagination .page-numbers.next {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

/* Badge Page Styling */
.badge-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 20px 0;
}

.badge-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.badge-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
}

/* Current Badge Showcase */
.current-badge-showcase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.badge-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.badge-display-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.badge-image-extra-large {
    position: relative;
    display: inline-block;
    padding: 0;
    background: transparent;
}

.current-badge-img-xl {
    width: 400px;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.badge-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.badge-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.badge-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-tier,
.badge-points {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Social Sharing Section */
.social-sharing {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.sharing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.sharing-subtitle {
    color: #64748b;
    margin-bottom: 25px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.twitter-btn {
    background: #1da1f2;
    color: white;
}

.twitter-btn:hover {
    background: #0d8bd9;
    transform: translateY(-2px);
}

.facebook-btn {
    background: #4267b2;
    color: white;
}

.facebook-btn:hover {
    background: #365899;
    transform: translateY(-2px);
}

.linkedin-btn {
    background: #0077b5;
    color: white;
}

.linkedin-btn:hover {
    background: #005885;
    transform: translateY(-2px);
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f7fafc;
    color: #4a5568;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

/* All Badges Section */
.all-badges-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.all-badges-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 10px;
}

.all-badges-section .section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.badge-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-item.badge-unlocked {
    border-color: #48bb78;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.badge-item.badge-locked {
    opacity: 0.6;
    background: #f7fafc;
}

.badge-image-small {
    position: relative;
    margin-bottom: 20px;
}

.badge-img-small {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.badge-unlocked .badge-img-small {
    border-color: #48bb78;
}

.badge-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.badge-overlay::before {
    content: "🔒";
}

.badge-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.badge-requirement {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.badge-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-status.unlocked {
    background: #48bb78;
    color: white;
}

.badge-status.locked {
    background: #e2e8f0;
    color: #64748b;
}

/* Page Navigation */
.page-navigation {
    text-align: center;
    margin-top: 30px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1a202c;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 5px;
}

.modal-close:hover {
    color: #1a202c;
}

.share-preview {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 10px;
}

.preview-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.preview-text h4 {
    margin: 0 0 5px 0;
    color: #1a202c;
}

.preview-text p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.share-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-copy,
.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-copy {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-copy:hover {
    background: #cbd5e0;
}

.btn-facebook {
    background: #4267b2;
    color: white;
}

.btn-facebook:hover {
    background: #365899;
}

/* Badge Page Responsive Design */
@media (max-width: 1024px) {
    .badge-layout-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .badge-display-section {
        min-height: auto;
        padding: 20px 0;
    }
    
    .current-badge-img-xl {
        width: 320px;
        height: 320px;
    }
    
    .badge-info-section {
        text-align: center;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .badge-page {
        padding: 5px 0;
    }
    
    .badge-header {
        padding: 15px 10px;
        margin-bottom: 20px;
    }
    
    .badge-page-title {
        font-size: 2rem;
    }
    
    .current-badge-showcase {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .badge-display-section {
        min-height: auto;
        padding: 10px 0;
    }
    
    .badge-image-extra-large {
        padding: 5px;
    }
    
    .current-badge-img-xl {
        width: 320px;
        height: 320px;
    }
    
    .badge-title {
        font-size: 1.8rem;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .all-badges-section {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .badge-page {
        padding: 0;
    }
    
    .badge-header {
        padding: 10px 8px;
        margin-bottom: 15px;
    }
    
    .badge-page-title {
        font-size: 1.8rem;
    }
    
    .current-badge-showcase {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .badge-title {
        font-size: 1.5rem;
    }
    
    .badge-details {
        justify-content: center;
    }
    
    .current-badge-img-xl {
        width: 300px;
        height: 300px;
    }
    
    .badge-item {
        padding: 15px 10px;
    }
    
    .all-badges-section {
        padding: 15px 10px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu,
  .prayer-navigation,
  .login-modal-overlay {
    display: none;
  }
  
  .prayer-viewer {
    box-shadow: none;
    margin: 0;
  }
  
  .prayer-slide {
    position: static;
    opacity: 1;
    visibility: visible;
    page-break-inside: avoid;
  }
}

/* ===== LOGIN PAGE STYLES ===== */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #173655 0%, #1e4a6b 50%, #173655 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.login-wrapper {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(23, 54, 85, 0.15);
  overflow: hidden;
  min-height: 600px;
}

.login-container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #173655;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.login-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.login-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.login-error p {
  color: #dc2626;
  margin: 0;
  font-weight: 500;
}

.social-login-container {
  margin-bottom: 2rem;
}

.social-login-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.social-login-text {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.nsl-container-custom {
  margin-bottom: 1rem;
}

.social-login-buttons,
.social-login-buttons-coming-soon {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.social-login-btn:hover:not(.coming-soon) {
  border-color: #173655;
  box-shadow: 0 4px 12px rgba(23, 54, 85, 0.15);
  transform: translateY(-1px);
}

.social-login-btn.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
}

.social-login-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-text {
  flex: 1;
  text-align: center;
}

.coming-soon-badge {
  background: #D0B431;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  position: absolute;
  top: -8px;
  right: -8px;
}

.login-footer {
  margin-top: 2rem;
  text-align: center;
}

.login-links {
  margin-bottom: 1.5rem;
}

.forgot-password-link {
  color: #173655;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.forgot-password-link:hover {
  color: #D0B431;
}

.login-register {
  margin-bottom: 1.5rem;
}

.login-register p {
  color: #6b7280;
  margin: 0;
}

.register-link {
  color: #173655;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.register-link:hover {
  color: #D0B431;
}

.back-to-site {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.back-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #173655;
}

.login-sidebar {
  background: linear-gradient(135deg, #173655 0%, #1e4a6b 100%);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.login-welcome {
  text-align: center;
  max-width: 400px;
}

.welcome-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.welcome-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.welcome-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.login-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  font-size: 1.25rem;
  width: 2rem;
  text-align: center;
}

.feature-text {
  font-size: 1rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .login-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 0;
  }
  
  .login-sidebar {
    order: -1;
    padding: 2rem;
  }
  
  .welcome-title {
    font-size: 1.75rem;
  }
  
  .welcome-text {
    font-size: 1rem;
  }
  
  .login-features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  
  .feature-item {
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  .login-page {
    padding: 1rem;
  }
  
  .login-container {
    padding: 2rem 1.5rem;
  }
  
  .login-sidebar {
    padding: 1.5rem;
  }
  
  .login-title {
    font-size: 2rem;
  }
  
  .welcome-title {
    font-size: 1.5rem;
  }
  
  .welcome-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 1.5rem 1rem;
  }
  
  .login-sidebar {
    padding: 1rem;
  }
  
  .login-title {
    font-size: 1.75rem;
  }
  
  .social-login-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* Prayer Setup Modal Styles - Updated 1756834892 - Plain Colors Applied */
.setup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.setup-modal.show {
  opacity: 1;
  visibility: visible;
}

.setup-modal-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: all 0.3s ease;
}

.setup-modal.show .setup-modal-content {
  transform: translateY(0) scale(1);
}

.setup-modal-header {
  background: #173655 !important;
  color: white !important;
  padding: 1rem 2rem 0.75rem;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.modal-close-btn:active {
  transform: scale(0.95);
}

.setup-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  border-radius: 20px 20px 0 0;
}

.setup-modal-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}

.setup-modal-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.setup-form {
  padding: 2.5rem 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.category-option {
  cursor: pointer;
  display: block;
  position: relative;
}

.category-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.category-card {
  background: #EAEDEF !important;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #173655;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 14px;
}

.category-option:hover .category-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(23, 54, 85, 0.15);
  border-color: #173655;
}

.category-option.selected .category-card {
  border-color: #173655;
  background: #173655 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(23, 54, 85, 0.3);
}

.category-option.selected .category-card::before {
  opacity: 1;
}

.category-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.category-count {
  font-size: 0.7rem;
  opacity: 0.7;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.category-option.selected .category-count {
  opacity: 0.9;
}

.category-description {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.25rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-option.selected .category-description {
  opacity: 0.8;
}

.setup-form-footer {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0 0 20px 20px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.selection-counter {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.save-preferences-btn {
  background: #173655 !important;
  color: white !important;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(23, 54, 85, 0.3);
}

.save-preferences-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 54, 85, 0.4);
}

.save-preferences-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .setup-modal {
    padding: 0.5rem;
  }
  
  .setup-modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }
  
  .setup-modal-header {
    padding: 2rem 1.5rem 1.5rem;
    border-radius: 16px 16px 0 0;
  }
  
  .setup-modal-header h2 {
    font-size: 1.5rem;
  }
  
  .setup-modal-header p {
    font-size: 1rem;
  }
  
  .setup-form {
    padding: 2rem 1.5rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.5rem;
  }
  
  .category-card {
    padding: 0.625rem;
    min-height: 55px;
  }
  
  .modal-close-btn {
    width: 36px;
    height: 36px;
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .setup-form-footer {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .save-preferences-btn {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .category-card {
    padding: 1rem;
    min-height: 80px;
  }
  
  .setup-modal-header {
    padding: 1.5rem 1rem;
  }
  
  .setup-form {
    padding: 1.5rem 1rem;
  }
  
  .setup-form-footer {
    padding: 1rem;
  }
}