* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family: 'Noto Sans Bengali', 'Poppins', sans-serif; */
  font-family: "Anek Bangla", sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --light-blue: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Custom Background Classes */
.bg-light-blue {
  background: var(--light-blue) !important;
}

/* Global Loader Styles */
.global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(30, 64, 175, 0.95));
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.global-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.round-loader {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.loader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: rotate 1.5s linear infinite;
}

.loader-ring:nth-child(1) {
  border-top-color: #ffffff;
  animation-delay: 0s;
}

.loader-ring:nth-child(2) {
  border-top-color: rgba(255, 255, 255, 0.7);
  animation-delay: -0.5s;
  width: 60px;
  height: 60px;
  top: 10px;
  left: 10px;
}

.loader-ring:nth-child(3) {
  border-top-color: rgba(255, 255, 255, 0.4);
  animation-delay: -1s;
  width: 40px;
  height: 40px;
  top: 20px;
  left: 20px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

/* Responsive loader */
@media (max-width: 768px) {
  .round-loader {
    width: 60px;
    height: 60px;
  }

  .loader-ring:nth-child(2) {
    width: 45px;
    height: 45px;
    top: 7.5px;
    left: 7.5px;
  }

  .loader-ring:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
  }

  .loader-text {
    font-size: 14px;
  }
}

.navbar {
  padding: 1rem 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(37, 99, 235, 0.95)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.98), rgba(37, 99, 235, 0.98)) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.bg-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.brand-icon-wrapper {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.brand-icon {
  font-size: 1.5rem;
  color: white;
}

.brand-text {
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.navbar-brand {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.navbar-brand .brand-text {
  font-size: 1.3rem;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

/* Desktop Navigation Improvements */
@media (min-width: 992px) {
  .navbar .container {
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand {
    margin-right: 3rem;
  }

  .navbar-nav {
    flex: 1;
    justify-content: center;
    gap: 1rem;
  }

  .navbar-nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-link {
    margin: 0 0.2rem;
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem;
    font-weight: 600;
  }
}

.btn-nav-cta {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white !important;
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Responsive Navigation Styles */
.navbar-nav-container {
  flex: 1;
}

.navbar-nav {
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  margin: 0 0.25rem;
  position: relative;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.95) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
  .navbar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .navbar-brand {
    margin-bottom: 0.5rem;
    order: -1;
    /* Ensure brand comes first */
  }

  .navbar-nav-container {
    width: 100%;
    order: 1;
    /* Ensure nav comes after brand */
    padding-top: 0.5rem;
  }

  .navbar-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem !important;
    margin: 0.1rem;
    min-width: fit-content;
  }

  .nav-link i {
    display: none;
  }

  .brand-text {
    font-size: 1rem !important;
  }

  .navbar {
    padding: 0.75rem 0;
  }
}

@media (max-width: 576px) {
  .navbar .container {
    gap: 1rem;
  }

  .navbar-brand {
    margin-bottom: 0.25rem;
  }

  .navbar-nav-container {
    padding-top: 0.25rem;
  }

  .navbar-nav {
    gap: 0.1rem;
    padding-top: 0.25rem;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem !important;
  }

  .brand-text {
    font-size: 0.9rem !important;
  }

  .user-name {
    display: none;
  }

  .login-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem !important;
  }

  .navbar {
    padding: 0.5rem 0;
  }
}

/* Hero Section Adjustments for Fixed Navbar */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 140px;
    /* Account for column navbar height */
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 160px;
    /* Even more padding for small screens */
  }
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  padding-top: 80px;
  /* Default padding for desktop */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(30, 64, 175, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-year {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.btn-primary {
  background: var(--accent-color);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-outline-light {
  border: 2px solid white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

/* General mobile spacing for fixed navbar */
@media (max-width: 991.98px) {
  body {
    padding-top: 0;
    /* Reset any body padding */
  }

  /* Ensure all main content sections have adequate top spacing on mobile */
  section:first-of-type,
  .subscriber-section,
  .sponsor-section,
  .gallery-section {
    padding-top: max(120px, calc(80px + 2rem)) !important;
  }
}

@media (max-width: 576px) {

  section:first-of-type,
  .subscriber-section,
  .sponsor-section,
  .gallery-section {
    padding-top: max(140px, calc(80px + 3rem)) !important;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.info-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-box i {
  font-size: 2rem;
  color: white;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid var(--primary-color);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
}

.donation-card {
  border-color: var(--accent-color);
}

.donation-card:hover {
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3);
}

.pricing-header {
  text-align: center;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.donation-card .price {
  color: var(--accent-color);
}

.currency {
  font-size: 2rem;
}

.timeline-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.payment-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.payment-option {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.payment-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.event-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.event-icon i {
  font-size: 2.5rem;
  color: white;
}

.event-schedule-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
}

.event-schedule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-time {
  min-width: 120px;
  text-align: center;
}

.period-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.event-content {
  flex: 1;
}

.event-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.event-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.event-description {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 4rem 3rem;
  border-radius: 30px;
  color: white;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

section#details,
section#registration,
section#events {
  min-height: 100vh;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 120px;
    /* Increased padding for mobile navbar */
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .price {
    font-size: 2rem;
  }

  .info-card,
  .event-card {
    margin-bottom: 1rem;
  }
}

footer {
  margin-top: 0;
}

.alert-info {
  background: #e0f2fe;
  border: 2px solid #0284c7;
  color: #0c4a6e;
}

/* Subscriber page css */
.subscriber-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.subscriber-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.subscriber-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.subscriber-image {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s ease;
}

.subscriber-card:hover .subscriber-image {
  transform: scale(1.1);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

.subscriber-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.status-badge i {
  color: #10b981;
  font-size: 1.1rem;
}

.subscriber-card-body {
  padding: 1.25rem 1rem;
}

.subscriber-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
  text-align: center;
}

.subscriber-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.5rem;
  background: transparent;
  border-radius: 6px;
  font-size: 0.85rem;
  border-bottom: 1px solid #f3f4f6;
}

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

.info-item i {
  font-size: 0.9rem;
  opacity: 0.6;
}

.info-label {
  font-weight: 500;
  color: #9ca3af;
  min-width: 70px;
  font-size: 0.8rem;
}

.info-value {
  font-weight: 600;
  color: #4b5563;
  flex: 1;
  font-size: 0.85rem;
}

.subscriber-card-footer {
  padding: 0 1rem 1rem 1rem;
}

.subscriber-card-footer .btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.subscriber-card-footer .btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.pagination {
  gap: 0.5rem;
}

.page-link {
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  color: #667eea;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
}

@media (max-width: 768px) {
  .subscriber-image {
    width: 130px;
    height: 130px;
  }

  .subscriber-name {
    font-size: 1rem;
  }

  .info-item {
    font-size: 0.8rem;
  }
}

/* User Authentication Styles */
.user-dropdown {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 0.4rem 1rem !important;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.user-dropdown:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.user-avatar i {
  font-size: 1.5rem;
  color: #fbbf24;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.5));
}

.user-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.user-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
}

.user-menu .dropdown-item {
  padding: 0.7rem 1.2rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  margin: 0 0.3rem;
  transition: all 0.3s ease;
}

.user-menu .dropdown-item:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateX(3px);
}

/* .user-menu .dropdown-item.text-danger:hover {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
} */

.login-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 25px;
  padding: 0.5rem 1.2rem !important;
  color: white !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
  color: white !important;
}

/* Responsive adjustments for user dropdown */
@media (max-width: 991.98px) {
  .user-dropdown {
    border-radius: 15px;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.15);
  }

  .login-btn {
    margin: 0.5rem 0;
    display: inline-block;
  }

  .user-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Countdown Timer Styles */
.countdown-bg {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.countdown-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 255, 198, 0.2) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(120deg);
  }

  66% {
    transform: translateY(5px) rotate(240deg);
  }
}

.countdown-item {
  min-width: 120px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.countdown-number {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Responsive countdown */
@media (max-width: 768px) {
  .countdown-item {
    min-width: 80px;
    min-height: 80px;
    padding: 1rem !important;
  }

  .countdown-number {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }
}

.table .fw-semibold {
  color: var(--bs-emphasis-color, var(--text-dark));
  font-size: 1.1rem;
  font-weight: 600 !important;
}

.table .text-muted {
  font-size: 0.9rem;
  color: var(--bs-secondary-color) !important;
}

.empty-state {
  padding: 3rem 2rem;
}

.empty-state i {
  opacity: 0.6;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.empty-state h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .table thead th,
  .table tbody td {
    padding: 0.75rem 0.5rem;
  }

  .table .fw-semibold {
    font-size: 1rem;
  }

  .table .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .table tbody tr:hover {
    transform: none;
  }
}