/* Unified Tailwind Custom Styles for Gurusthan */

:root {
  --gold: #B76E2E;
  --gold-dark: #9B5A24;
  --gold-light: #FFA559;
  --deep: #2C1A12;
  --deep-2: #1E130E;
  --cream: #FFF9F0;
  --saffron-light: #FFE6D5;
  --saffron-border: #FFA559;
  --text-primary: #2C1A12;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --sidebar-w: 260px;
  --topbar-h: 64px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 14px rgba(183,110,46,0.1);
  --shadow-lg: 0 8px 32px rgba(44,26,18,0.15);
}

/* Base resets & Fonts */
* { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }

/* Custom Utilities from Index Design */
.spiritual-gradient { background: linear-gradient(135deg, #FEF3E8 0%, #FFF9F0 100%); }
.gold-text { color: #B76E2E; }
.gold-bg { background-color: #B76E2E; }
.saffron-bg-light { background-color: #FFE6D5; }
.saffron-border { border-color: #FFA559; }
.card-hover { transition: all 0.25s ease-in-out; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15); }
.hero-slide { width: 100px; transition: opacity 0.5s ease-in-out; background-size: cover; background-position: center; }
.counter-number { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.sticky-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; box-shadow: 0 10px 20px rgba(183,110,46,0.3); }

/* Dashboard Specific Styles */
.dash-wrapper { display: flex; min-height: 100vh; background: var(--cream); }

.sidebar {
  width: var(--sidebar-w);
  background: var(--deep-2);
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.sidebar-logo {
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-nav { padding: 14px 0; flex: 1; }

.nav-section-title {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  padding: 10px 20px 4px;
}

.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px; color: rgba(255,255,255,0.65);
  font-size: 0.88rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  border-radius: 0; border-left: 3px solid transparent;
  text-decoration: none;
}

.nav-item:hover, .nav-item.active {
  background: rgba(183,110,46,0.15);
  color: var(--gold-light);
  border-left-color: var(--gold-light);
}

.topbar {
  height: var(--topbar-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: fixed; top: 0; right: 0;
  left: var(--sidebar-w);
  z-index: 90;
  display: flex; align-items: center;
  padding: 0 28px; gap: 16px;
}

@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.active { transform: translateX(0); }
  .topbar { left: 0; }
  .main-content { margin-left: 0 !important; }
}

.main-content {
  margin-left: var(--sidebar-w);
  padding-top: var(--topbar-h);
  flex: 1;
  width: 100%;
}
/* events design */
/* events-modern.css - Sacred Events Design */
/* This CSS is isolated and won't conflict with your existing styles */

/* Root Variables */
:root {
    --sacred-dark: #2C1A12;
    --sacred-mid: #B76E2E;
    --sacred-light: #FFA559;
    --sacred-success: #2ed573;
    --sacred-danger: #ff4757;
    --sacred-warning: #ffa502;
    --sacred-text-muted: #718096;
    --sacred-text-dark: #2C1A12;
    --sacred-shadow: 0 10px 40px rgba(0,0,0,.08);
    --sacred-radius: 20px;
}

/* Page Banner */
.sacred-banner {
    background: linear-gradient(135deg, #2C1A12 0%, #B76E2E 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.sacred-banner::before {
    content: '🕉️';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: -50px;
    bottom: -80px;
    transform: rotate(-15deg);
}

.sacred-banner h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.sacred-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Filter Bar */
.sacred-filter-bar {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--sacred-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.sacred-filter-bar label {
    font-weight: 600;
    font-size: 12px;
    color: var(--sacred-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.sacred-filter-bar select,
.sacred-filter-bar input {
    width: 100%;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.sacred-filter-bar select:focus,
.sacred-filter-bar input:focus {
    border-color: var(--sacred-mid);
    outline: none;
    box-shadow: 0 0 0 3px rgba(183, 110, 46, 0.1);
}

.sacred-btn-filter {
    background: linear-gradient(135deg, var(--sacred-dark), var(--sacred-mid));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 28px;
}

.sacred-btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(183, 110, 46, 0.2);
}

/* View Toggle */
.sacred-view-toggle {
    display: flex;
    gap: 10px;
}

.sacred-view-btn {
    border: 2px solid #f0f0f0;
    background: #fff;
    color: #718096;
    padding: 8px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.sacred-view-btn.active {
    background: var(--sacred-mid);
    color: #fff;
    border-color: var(--sacred-mid);
}

.sacred-view-btn:hover:not(.active) {
    background: #f9f9f9;
}

/* Event Card */
.sacred-event-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--sacred-shadow);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-bottom: 0;
}

.sacred-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(183, 110, 46, 0.15);
}

.sacred-event-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sacred-mid), var(--sacred-light));
}

.sacred-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.sacred-event-card:hover .sacred-event-img img {
    transform: scale(1.08);
}

.sacred-event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: var(--sacred-mid);
    border-radius: 12px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.sacred-event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.sacred-event-status.upcoming {
    background: rgba(183, 110, 46, 0.9);
    color: #fff;
}

.sacred-event-status.ongoing {
    background: rgba(46, 213, 115, 0.9);
    color: #fff;
}

.sacred-event-status.completed {
    background: rgba(108, 117, 125, 0.9);
    color: #fff;
}

.sacred-event-body {
    padding: 20px;
    flex: 1;
}

.sacred-event-type {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sacred-mid);
    margin-bottom: 12px;
}

.sacred-event-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sacred-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sacred-event-meta {
    font-size: 12px;
    color: var(--sacred-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.sacred-event-meta i {
    color: var(--sacred-mid);
    width: 16px;
}

.sacred-event-description {
    font-size: 13px;
    color: #4a5568;
    margin: 15px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sacred-event-slots {
    background: #FFF9F0;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sacred-mid);
    font-weight: 600;
    margin: 15px 0;
}

.sacred-countdown {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--sacred-danger);
    background: #FFF5F5;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    margin-top: 12px;
}

.sacred-btn-reg {
    background: linear-gradient(135deg, var(--sacred-dark), var(--sacred-mid));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
    width: 100%;
    margin-top: 15px;
}

.sacred-btn-reg:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(183, 110, 46, 0.2);
    color: #fff;
    text-decoration: none;
}

.sacred-btn-reg.disabled,
.sacred-btn-reg:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* List View Styles */
.sacred-event-card-list {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--sacred-shadow);
    transition: all 0.4s;
    cursor: pointer;
    margin-bottom: 20px;
}

.sacred-event-card-list:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 40px rgba(183, 110, 46, 0.15);
}

.sacred-event-img-list {
    width: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sacred-mid), var(--sacred-light));
    flex-shrink: 0;
}

.sacred-event-img-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sacred-event-body-list {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Sidebar Widget */
.sacred-sidebar-widget {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px;
    box-shadow: var(--sacred-shadow);
    margin-bottom: 25px;
}

.sacred-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sacred-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sacred-mid);
    display: inline-block;
}

.sacred-upcoming-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.sacred-upcoming-item:hover {
    transform: translateX(5px);
}

.sacred-upcoming-item:last-child {
    border-bottom: none;
}

.sacred-upcoming-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--sacred-dark);
    margin-bottom: 5px;
}

.sacred-upcoming-date {
    font-size: 11px;
    color: var(--sacred-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA Widget */
.sacred-cta-widget {
    background: linear-gradient(135deg, var(--sacred-dark), var(--sacred-mid));
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.sacred-cta-widget h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.sacred-cta-widget p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.sacred-btn-cta {
    background: #fff;
    color: var(--sacred-mid);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.sacred-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: var(--sacred-dark);
    text-decoration: none;
}

/* Empty State */
.sacred-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #faf9f8;
    border-radius: 30px;
    border: 2px dashed #e9ecef;
}

.sacred-empty-state i {
    font-size: 3rem;
    color: var(--sacred-mid);
    opacity: 0.5;
    margin-bottom: 20px;
    display: inline-block;
}

.sacred-empty-state h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sacred-dark);
}

/* Stats Text */
.sacred-stats {
    font-size: 13px;
    color: var(--sacred-text-muted);
    margin-bottom: 20px;
}

.sacred-stats strong {
    color: var(--sacred-dark);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .sacred-event-img-list {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .sacred-banner {
        padding: 60px 0 40px;
    }
    
    .sacred-banner h1 {
        font-size: 2rem;
    }
    
    .sacred-banner p {
        font-size: 1rem;
    }
    
    .sacred-event-img {
        height: 180px;
    }
    
    .sacred-event-title {
        font-size: 1rem;
    }
    
    .sacred-event-card-list {
        flex-direction: column;
    }
    
    .sacred-event-img-list {
        width: 100%;
        height: 200px;
    }
    
    .sacred-btn-filter {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .sacred-view-toggle {
        margin-top: 15px;
    }
}
/* event-details-modern.css - Sacred Event Details Design */
/* This CSS is isolated and won't conflict with your existing styles */

:root {
    --sacred-deep: #2C1A12;
    --sacred-mid: #B76E2E;
    --sacred-light: #FFA559;
    --sacred-accent: #FFA559;
    --sacred-success: #2ed573;
    --sacred-forest: #2f6b4d;
    --sacred-soft-gray: #faf9f8;
    --sacred-border: #f0ede8;
    --sacred-text-dark: #2C1A12;
    --sacred-text-soft: #6c5b4b;
    --sacred-white: #ffffff;
    --sacred-shadow: 0 15px 35px -10px rgba(44, 26, 18, 0.12);
    --sacred-shadow-hover: 0 25px 45px -12px rgba(183, 110, 46, 0.2);
    --sacred-radius: 24px;
    --sacred-radius-sm: 16px;
}

/* Hero Section */
.sacred-event-hero {
    background: linear-gradient(135deg, var(--sacred-deep) 0%, var(--sacred-mid) 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.sacred-event-hero::after {
    content: '🕉️';
    position: absolute;
    font-size: 200px;
    opacity: 0.05;
    right: -50px;
    bottom: -80px;
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: -1;
}

.sacred-event-hero .breadcrumb {
    background: transparent;
    margin-bottom: 30px;
    font-size: 13px;
}

.sacred-event-hero .breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.sacred-event-hero .breadcrumb a:hover {
    color: #fff;
}

.sacred-category-badge {
    background: var(--sacred-accent);
    color: var(--sacred-deep);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sacred-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    margin: 5px;
}

.sacred-btn-register {
    background: var(--sacred-accent);
    color: var(--sacred-deep);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.sacred-btn-register:hover {
    background: #e6942c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 89, 0.3);
}

.sacred-btn-register.attending {
    background: var(--sacred-success);
    color: #fff;
    cursor: default;
    opacity: 0.8;
}

.sacred-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid var(--sacred-accent);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.sacred-btn-outline:hover {
    background: var(--sacred-accent);
    color: var(--sacred-deep);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Cards */
.sacred-chart-card {
    background: var(--sacred-white);
    border-radius: var(--sacred-radius);
    padding: 28px;
    box-shadow: var(--sacred-shadow);
    border: 1px solid var(--sacred-border);
    transition: box-shadow 0.3s;
    margin-bottom: 28px;
}

.sacred-chart-card:hover {
    box-shadow: var(--sacred-shadow-hover);
}

/* Stats Cards */
.sacred-stat-card {
    background: var(--sacred-soft-gray);
    border-radius: var(--sacred-radius-sm);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.sacred-stat-card:hover {
    transform: translateY(-4px);
    background: #fff4e8;
}

.sacred-stat-icon {
    font-size: 2rem;
    color: var(--sacred-mid);
    margin-bottom: 10px;
}

.sacred-stat-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--sacred-deep);
}

.sacred-stat-label {
    font-size: 12px;
    color: var(--sacred-text-soft);
}

/* Progress Bar */
.sacred-prog-bar {
    height: 8px;
    border-radius: 4px;
    background: #f0ede8;
    overflow: hidden;
}

.sacred-prog-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--sacred-mid), var(--sacred-light));
    transition: width 0.6s ease;
}

/* Schedule Accordion */
.sacred-accordion-item {
    border: 1px solid var(--sacred-border);
    margin-bottom: 12px;
    border-radius: var(--sacred-radius-sm) !important;
    overflow: hidden;
}

.sacred-accordion-button {
    background: #fff;
    color: var(--sacred-deep);
    font-weight: 600;
    padding: 18px 20px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.sacred-accordion-button:not(.collapsed) {
    background: var(--sacred-deep);
    color: #fff;
}

.sacred-accordion-button:focus {
    outline: none;
}

.sacred-day-schedule {
    padding: 20px;
    background: var(--sacred-soft-gray);
}

.sacred-schedule-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    border-bottom: 1px dashed var(--sacred-border);
}

.sacred-schedule-item:last-child {
    border-bottom: none;
}

.sacred-schedule-time {
    min-width: 110px;
    font-weight: 600;
    color: var(--sacred-mid);
    font-size: 14px;
}

.sacred-schedule-activity {
    flex: 1;
}

.sacred-schedule-activity h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--sacred-deep);
    font-size: 15px;
}

.sacred-schedule-activity p {
    font-size: 13px;
    color: var(--sacred-text-soft);
    margin: 0;
}

.sacred-schedule-location {
    font-size: 12px;
    color: var(--sacred-text-soft);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

/* Tab Navigation */
.sacred-tabs {
    border-bottom: 2px solid var(--sacred-border);
    margin-bottom: 24px;
}

.sacred-tab-link {
    background: none;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    color: var(--sacred-text-soft);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.sacred-tab-link.active {
    color: var(--sacred-mid);
}

.sacred-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sacred-mid);
}

/* Volunteer List */
.sacred-volunteer-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sacred-border);
}

.sacred-volunteer-row:last-child {
    border-bottom: none;
}

.sacred-vol-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    background: #f0ede8;
    color: var(--sacred-mid);
}

.sacred-badge-approved {
    background: #e8f5e9;
    color: var(--sacred-success);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
}

.sacred-badge-pending {
    background: #fff3e0;
    color: var(--sacred-mid);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Sidebar Widget */
.sacred-sidebar-widget {
    background: var(--sacred-white);
    border-radius: var(--sacred-radius);
    border: 1px solid var(--sacred-border);
    padding: 24px;
    box-shadow: var(--sacred-shadow);
    margin-bottom: 24px;
}

.sacred-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sacred-deep);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sacred-accent);
    display: inline-block;
}

/* Countdown Timer */
.sacred-countdown-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5253 100%);
    color: white;
    padding: 28px;
    border-radius: var(--sacred-radius);
    text-align: center;
    margin-bottom: 28px;
}

.sacred-countdown-item {
    display: inline-block;
    margin: 0 12px;
}

.sacred-countdown-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.sacred-countdown-label {
    font-size: 11px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Budget Breakdown */
.sacred-budget-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--sacred-border);
}

.sacred-budget-category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sacred-category-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.sacred-budget-amount {
    font-weight: 600;
    color: var(--sacred-deep);
}

/* Modal Styles */
.sacred-modal .modal-content {
    border-radius: var(--sacred-radius);
    overflow: hidden;
    border: none;
}

.sacred-modal .modal-header {
    background: var(--sacred-deep);
    border-radius: 0;
    padding: 20px 24px;
}

.sacred-modal .modal-header .modal-title {
    color: #fff;
}

.sacred-modal .modal-body {
    padding: 28px;
}

.sacred-modal .form-control,
.sacred-modal .form-select {
    border-radius: 12px;
    border: 1.5px solid var(--sacred-border);
    padding: 12px 15px;
}

.sacred-modal .form-control:focus,
.sacred-modal .form-select:focus {
    border-color: var(--sacred-mid);
    box-shadow: 0 0 0 3px rgba(183, 110, 46, 0.1);
}

.sacred-modal .form-floating label {
    color: var(--sacred-text-soft);
}

/* Toast */
.sacred-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1100;
    background: var(--sacred-success);
    color: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--sacred-shadow);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .sacred-event-hero {
        padding: 60px 0 40px;
    }
    
    .sacred-event-hero h1 {
        font-size: 2rem;
    }
    
    .sacred-chart-card {
        padding: 20px;
    }
    
    .sacred-schedule-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .sacred-schedule-time {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .sacred-countdown-item {
        margin: 0 8px;
    }
    
    .sacred-countdown-value {
        font-size: 1.5rem;
    }
    
    .sacred-info-pill {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .sacred-stat-card {
        padding: 15px;
    }
    
    .sacred-stat-value {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .sacred-event-hero h1 {
        font-size: 1.5rem;
    }
    
    .sacred-btn-register,
    .sacred-btn-outline {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .sacred-countdown-value {
        font-size: 1.2rem;
    }
    
    .sacred-tab-link {
        padding: 8px 16px;
        font-size: 13px;
    }
}