/* Futuristic Theme for TrendMaster */

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #a5b4fc;
  --secondary-color: #10b981;
  --dark-color: #111827;
  --darker-color: #030712;
  --light-color: #f9fafb;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --success-color: #10b981;
  --info-color: #3b82f6;
  --accent-color: #8b5cf6;
  --accent-light: #c4b5fd;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --card-bg: rgba(31, 41, 55, 0.8);
  --card-border: rgba(99, 102, 241, 0.2);
  --glass-bg: rgba(17, 24, 39, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--light-color);
  background-color: var(--dark-color);
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
  background-attachment: fixed;
  background-size: cover;
}

/* Glassmorphism Card Styles */
.glass-card {
  background: var(--glass-bg);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  overflow: hidden;
}

.glass-card:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}

.glass-card-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.glass-card-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light-color);
  margin: 0;
}

.glass-card-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  background-clip: text;
  border-radius: 3px;
}

.glass-card-body {
  padding: 1.25rem;
}

/* Futuristic Stats Grid */
.futuristic-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.futuristic-stat-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.futuristic-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  background-clip: text;
}

.futuristic-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.futuristic-stat-icon {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.futuristic-stat-icon::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.futuristic-stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.futuristic-stat-label {
  color: var(--gray-300);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.futuristic-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Glass Card Mini for previews */
.glass-card-mini {
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-card-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Secondary button style */
.futuristic-btn-secondary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.9));
  color: white;
}

.futuristic-btn-secondary:hover {
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* Futuristic Calendar */
.futuristic-calendar {
  background: var(--glass-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
}

.futuristic-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(31, 41, 55, 0.9);
  border-bottom: 1px solid var(--glass-border);
}

.futuristic-calendar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light-color);
}

.futuristic-calendar-nav {
  display: flex;
  gap: 0.5rem;
}

.futuristic-calendar-nav button {
  background: rgba(99, 102, 241, 0.2);
  border: none;
  color: var(--light-color);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.futuristic-calendar-nav button:hover {
  background: rgba(99, 102, 241, 0.4);
}

.futuristic-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--glass-border);
}

.futuristic-calendar-day {
  background: rgba(31, 41, 55, 0.7);
  aspect-ratio: 1;
  padding: 0.5rem;
  position: relative;
  transition: all 0.2s ease;
}

.futuristic-calendar-day:hover {
  background: rgba(31, 41, 55, 0.9);
}

.futuristic-calendar-day.has-events::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.futuristic-calendar-day.today {
  background: rgba(99, 102, 241, 0.2);
}

.futuristic-calendar-day.selected {
  background: rgba(99, 102, 241, 0.3);
}

.futuristic-day-number {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--light-color);
}

/* Event Cards */
.futuristic-event-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.futuristic-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.futuristic-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.futuristic-event-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--light-color);
}

.futuristic-event-date {
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.futuristic-event-date i {
  color: var(--primary-color);
}

.futuristic-event-description {
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.futuristic-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.futuristic-event-tag {
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary-light);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.futuristic-event-design-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.futuristic-event-design-type {
  background: rgba(16, 185, 129, 0.2);
  color: var(--secondary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

.futuristic-event-section {
  margin-top: 1.25rem;
}

.futuristic-event-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.futuristic-event-section h4 i {
  color: var(--primary-color);
}

.futuristic-prompt-ideas-list,
.futuristic-design-inspiration-list {
  list-style-type: none;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.futuristic-prompt-ideas-list li,
.futuristic-design-inspiration-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.futuristic-prompt-ideas-list li::before,
.futuristic-design-inspiration-list li::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
}

.futuristic-stock-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  background: rgba(99, 102, 241, 0.1);
}

.futuristic-stock-link:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

/* Futuristic Buttons */
.futuristic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.futuristic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.futuristic-btn:hover::before {
  left: 100%;
}

.futuristic-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.futuristic-btn-primary:hover {
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.futuristic-btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-light);
}

.futuristic-btn-outline:hover {
  background: rgba(99, 102, 241, 0.1);
}

.futuristic-btn-outline.active {
  background: rgba(99, 102, 241, 0.2);
  color: var(--light-color);
}

.futuristic-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

/* Premium Desktop Navbar */
.futuristic-navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  min-height: 64px;
}

.futuristic-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}

.futuristic-navbar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  height: 64px;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.futuristic-navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: -0.025em;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.futuristic-navbar-brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.2));
}

/* Premium Navigation Links */
.futuristic-navbar-nav {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.futuristic-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.futuristic-nav-link:hover {
  color: white;
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

.futuristic-nav-link.active {
  color: white;
  background: rgba(99, 102, 241, 0.2);
  border-bottom: 2px solid #6366f1;
}

/* Professional Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: white;
  background: rgba(99, 102, 241, 0.1);
}

/* Professional User Profile Section */
.navbar-user-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.navbar-user-profile:hover {
  color: white;
  background: rgba(99, 102, 241, 0.1);
}

.navbar-user-profile i {
  font-size: 1.25rem;
  color: #6366f1;
}

/* Professional Button Styles for Navbar */
.navbar-btn {
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  border: 1px solid transparent;
  cursor: pointer;
}

.navbar-btn-primary {
  background: #6366f1;
  color: white;
  border-color: #6366f1;
}

.navbar-btn-primary:hover {
  background: #5855eb;
  border-color: #5855eb;
  transform: translateY(-1px);
}

.navbar-btn-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Futuristic Footer */
.futuristic-footer {
  background: rgba(17, 24, 39, 0.9);
  color: var(--gray-300);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.futuristic-footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.futuristic-footer-links {
  list-style: none;
  padding: 0;
}

.futuristic-footer-link {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.futuristic-footer-link:hover {
  color: var(--primary-light);
}

.futuristic-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

.futuristic-social-links {
  display: flex;
  gap: 1rem;
}

.futuristic-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-300);
  transition: all 0.3s ease;
}

.futuristic-social-link:hover {
  background: rgba(99, 102, 241, 0.2);
  color: var(--primary-light);
  transform: translateY(-3px);
}

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

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

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  z-index: 1000;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(99, 102, 241, 0.2);
  overflow-y: auto;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--gray-300);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  color: var(--light-color);
  background: rgba(99, 102, 241, 0.1);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 0.5rem;
}

.mobile-nav-links .futuristic-nav-link {
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav-links .futuristic-nav-link:hover,
.mobile-nav-links .futuristic-nav-link.active {
  background: rgba(99, 102, 241, 0.15);
  color: var(--light-color);
  transform: translateX(5px);
}

.mobile-nav-user {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.mobile-user-profile i {
  font-size: 1.25rem;
  color: #6366f1;
}

.mobile-nav-user .navbar-btn {
  width: 100%;
  justify-content: center;
}

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

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Premium Navbar Enhancements */
.futuristic-navbar.scrolled {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.99), rgba(30, 41, 59, 0.98));
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  padding: 0.625rem 0;
  min-height: 60px;
}

.futuristic-navbar.scrolled .futuristic-navbar-brand {
  font-size: 1.625rem;
}

.futuristic-navbar.scrolled .futuristic-navbar-brand::before {
  font-size: 1.75rem;
}

/* Stable FontAwesome Icons for Navigation */
.futuristic-nav-link i {
  font-size: 0.875rem;
  margin-right: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: inline-block;
  width: 16px;
  text-align: center;
}

.futuristic-nav-link:hover i,
.futuristic-nav-link.active i {
  opacity: 1;
  color: inherit;
}

/* Mobile navigation icons */
.mobile-nav-links .futuristic-nav-link i {
  font-size: 1rem;
  margin-right: 0.75rem;
  width: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .futuristic-navbar .container {
    padding: 0 1.5rem;
  }

  .futuristic-navbar-nav {
    gap: 0.25rem;
  }

  .futuristic-nav-link {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
}

@media (max-width: 1024px) {
  .futuristic-navbar .container {
    padding: 0 1rem;
  }

  .futuristic-navbar-nav {
    gap: 0.25rem;
    padding: 0.375rem;
  }

  .futuristic-nav-link {
    font-size: 0.825rem;
    padding: 0.5rem 0.875rem;
  }

  .navbar-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Desktop Layout */
@media (min-width: 769px) {
  .navbar-content {
    display: flex;
  }

  .navbar-left {
    display: flex;
  }

  .navbar-right {
    display: flex;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .futuristic-navbar-nav {
    display: none;
  }

  .navbar-user-section {
    display: none;
  }

  .futuristic-navbar {
    min-height: 60px;
  }

  .futuristic-navbar .container {
    height: 60px;
  }

  .futuristic-navbar-brand {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .futuristic-navbar .container {
    padding: 0 1rem;
  }

  .futuristic-navbar-brand {
    font-size: 1.375rem;
  }

  .mobile-nav-menu {
    width: 280px;
  }
}

/* Focus styles for accessibility */
.futuristic-nav-link:focus,
.navbar-btn:focus,
.mobile-nav-toggle:focus,
.futuristic-navbar-brand:focus {
  outline: 2px solid #6366f1;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (min-width: 640px) {
  .futuristic-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .futuristic-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
  }
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Utility Classes */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Futuristic Upcoming Events */
.futuristic-event-card {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.futuristic-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(79, 70, 229, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.futuristic-event-card:hover::before {
  opacity: 1;
}

.futuristic-event-card:hover {
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
  transform: translateY(-5px) scale(1.02);
}

.event-card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
  border-radius: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.futuristic-event-card:hover .event-card-glow {
  opacity: 0.3;
}

.event-card-content {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  z-index: 1;
}

.event-date-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.event-date-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  color: white;
  min-width: 60px;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.event-date-day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.event-date-year {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
}

.event-countdown {
  font-size: 0.7rem;
  color: var(--accent-color);
  font-weight: 600;
  text-align: center;
  background: rgba(79, 70, 229, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.event-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.event-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light-color);
  margin: 0;
  line-height: 1.3;
}

.event-category-badge {
  background: rgba(79, 70, 229, 0.2);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(79, 70, 229, 0.3);
  white-space: nowrap;
}

.event-description {
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0;
}

.event-metrics {
  display: flex;
  gap: 1rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 70, 229, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.metric-item i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.metric-label {
  font-size: 0.7rem;
  color: var(--gray-300);
  font-weight: 500;
}

.metric-value {
  font-size: 0.8rem;
  color: var(--light-color);
  font-weight: 700;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-tag-more {
  background: rgba(79, 70, 229, 0.2);
  color: var(--accent-color);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(79, 70, 229, 0.3);
}

.event-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.futuristic-event-card:hover .event-action {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

/* Theme-specific colors */
.holiday-theme .event-date-badge {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.holiday-theme .event-category-badge {
  background: rgba(79, 70, 229, 0.2);
  color: #a78bfa;
  border-color: rgba(79, 70, 229, 0.3);
}

.environment-theme .event-date-badge {
  background: linear-gradient(135deg, #10b981, #059669);
}

.environment-theme .event-category-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border-color: rgba(16, 185, 129, 0.3);
}

.business-theme .event-date-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.business-theme .event-category-badge {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
}

.technology-theme .event-date-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.technology-theme .event-category-badge {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.3);
}

.health-theme .event-date-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.health-theme .event-category-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}

.education-theme .event-date-badge {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.education-theme .event-category-badge {
  background: rgba(139, 92, 246, 0.2);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.3);
}

.default-theme .event-date-badge {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.default-theme .event-category-badge {
  background: rgba(107, 114, 128, 0.2);
  color: #d1d5db;
  border-color: rgba(107, 114, 128, 0.3);
}

/* Fallback note styling */
.fallback-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.fallback-note i {
  color: #f59e0b;
}

/* No events message styling */
.no-events-message {
  text-align: center;
  color: var(--gray-300);
  font-style: italic;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0.5rem;
  border: 1px dashed rgba(79, 70, 229, 0.3);
}

/* Futuristic Dashboard Calendar */
.futuristic-dashboard-calendar {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
  border: 1px solid rgba(79, 70, 229, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
}

.calendar-nav-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  border-radius: 0.5rem;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.calendar-nav-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.calendar-title {
  text-align: center;
  flex: 1;
}

.calendar-title h3 {
  color: var(--light-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calendar-subtitle {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin: 0.25rem 0 0 0;
  opacity: 0.8;
}

.calendar-grid-container {
  margin-bottom: 1.5rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 60px;
  padding: 0.25rem;
}

.calendar-day:hover {
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.4);
  transform: scale(1.05);
}

.calendar-day.empty {
  background: transparent;
  border: none;
  cursor: default;
}

.calendar-day.empty:hover {
  transform: none;
}

.calendar-day.today {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(99, 102, 241, 0.2));
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.calendar-day.has-events {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.8));
  border-color: rgba(79, 70, 229, 0.4);
}

.calendar-day.has-events:hover {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(30, 41, 59, 0.9));
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.day-number {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-color);
  margin-bottom: 0.25rem;
}

.calendar-day.today .day-number {
  color: white;
  font-weight: 700;
}

.event-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  align-items: center;
}

.event-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
}

.event-indicator.holiday-theme {
  background: #a78bfa;
}

.event-indicator.environment-theme {
  background: #6ee7b7;
}

.event-indicator.business-theme {
  background: #fbbf24;
}

.event-indicator.technology-theme {
  background: #93c5fd;
}

.event-indicator.health-theme {
  background: #fca5a5;
}

.event-indicator.education-theme {
  background: #c4b5fd;
}

.event-indicator.default-theme {
  background: #d1d5db;
}

.more-events {
  font-size: 0.6rem;
  color: var(--accent-color);
  font-weight: 600;
  background: rgba(79, 70, 229, 0.2);
  padding: 1px 4px;
  border-radius: 0.25rem;
  margin-left: 2px;
}

.calendar-footer {
  border-top: 1px solid rgba(79, 70, 229, 0.2);
  padding-top: 1rem;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray-300);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-dot.holiday-dot {
  background: #a78bfa;
}

.legend-dot.environment-dot {
  background: #6ee7b7;
}

.legend-dot.business-dot {
  background: #fbbf24;
}

.legend-dot.technology-dot {
  background: #93c5fd;
}

/* Day Events Tooltip */
.day-events-tooltip {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
  border: 1px solid rgba(79, 70, 229, 0.4);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  max-width: 250px;
  z-index: 1000;
}

.tooltip-header {
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(79, 70, 229, 0.2);
  padding-bottom: 0.5rem;
}

.tooltip-events {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tooltip-event {
  padding: 0.5rem;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.tooltip-event .event-title {
  color: var(--light-color);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tooltip-event .event-category {
  color: var(--gray-300);
  font-size: 0.7rem;
  opacity: 0.8;
}

.tooltip-more {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 0.25rem;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 0.25rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

/* Responsive Design for Events */
@media (max-width: 768px) {
  .event-card-content {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .event-action {
    display: none;
  }

  .event-metrics {
    flex-direction: column;
    gap: 0.5rem;
  }

  .metric-item {
    padding: 0.4rem 0.6rem;
  }

  .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .futuristic-dashboard-calendar {
    padding: 1rem;
  }

  .calendar-header {
    margin-bottom: 1rem;
  }

  .calendar-title h3 {
    font-size: 1.25rem;
  }

  .calendar-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 0.75rem;
  }

  .calendar-day {
    min-height: 50px;
    padding: 0.125rem;
  }

  .day-number {
    font-size: 0.75rem;
  }

  .calendar-legend {
    gap: 0.75rem;
  }

  .legend-item {
    font-size: 0.7rem;
  }
}

/* Premium Styles */
.premium-crown-icon {
  font-size: 4rem;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.premium-pricing-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.premium-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.premium-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.premium-price .currency {
  font-size: 1.5rem;
  color: var(--gray-300);
}

.premium-price .amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-price .period {
  font-size: 1rem;
  color: var(--gray-400);
}

.premium-features-list {
  text-align: left;
}

.premium-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.premium-feature-item i {
  color: #ffd700;
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
}

.premium-upgrade-btn {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.premium-upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(31, 41, 55, 0.7);
  padding: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
}

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

.feature-name {
  color: var(--light-color);
  font-weight: 500;
}

.free-column, .premium-column {
  text-align: center;
  font-weight: 600;
}

.free-column {
  color: var(--gray-400);
}

.premium-column {
  color: #ffd700;
}

.free-value {
  color: var(--gray-400);
  text-align: center;
}

.premium-value {
  color: #00ff88;
  text-align: center;
  font-weight: 600;
}

.premium-value i.fa-times {
  color: #ff6b6b;
}

.premium-value i.fa-check,
.premium-value i.fa-infinity {
  color: #00ff88;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  min-width: 100px;
}

.payment-method i {
  font-size: 2rem;
  color: var(--primary-color);
}

.payment-method span {
  color: var(--gray-300);
  font-size: 0.875rem;
}

/* Premium Blur Effects */
.premium-blur {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.premium-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

.premium-blur-content {
  text-align: center;
  color: white;
  padding: 1rem;
}

.premium-blur-content i {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.premium-blur-content p {
  margin: 0.5rem 0;
  font-weight: 500;
}

/* Premium Upgrade Container for Niches */
.premium-upgrade-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  padding: 2rem;
}

.premium-upgrade-card {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.premium-upgrade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.premium-upgrade-icon {
  font-size: 4rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.premium-upgrade-title {
  color: var(--light-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-upgrade-description {
  color: var(--gray-300);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.premium-upgrade-features {
  margin-bottom: 2rem;
  text-align: left;
}

.premium-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  color: var(--gray-300);
  font-size: 1rem;
}

.premium-feature i {
  color: #00ff88;
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
}

.premium-upgrade-card .futuristic-btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-upgrade-card .futuristic-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffed4e, #ffd700) !important;
}

/* Premium Prompt Overlay */
.premium-prompt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.premium-prompt-content {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(20px);
}

.premium-prompt-content .premium-icon {
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.premium-prompt-content h3 {
  color: var(--light-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.premium-prompt-content p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.premium-features {
  text-align: left;
  margin-bottom: 2rem;
}

.premium-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-300);
}

.premium-feature i {
  color: #00ff88;
  width: 16px;
}

/* Daily Limit Warning */
.daily-limit-warning {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.warning-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.warning-content i {
  color: #ff6b6b;
  font-size: 1.25rem;
}

.warning-content span {
  color: var(--gray-300);
  flex: 1;
}

/* Success/Error Modals */
.premium-success-modal,
.premium-error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  backdrop-filter: blur(20px);
}

.success-icon i {
  font-size: 4rem;
  color: #00ff88;
  margin-bottom: 1rem;
}

.error-icon i {
  font-size: 4rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}

.modal-content h2 {
  color: var(--light-color);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.success-features {
  display: flex;
  justify-content: space-around;
  margin: 1.5rem 0;
}

.success-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.success-feature i {
  color: #00ff88;
  font-size: 1.5rem;
}

.success-feature span {
  color: var(--gray-300);
  font-size: 0.875rem;
}

/* Real-time notification animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

/* Admin panel specific styles */
.admin-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #1a1a1a;
  padding: 15px 20px;
  border-radius: 8px;
  z-index: 10000;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
  font-weight: 500;
  max-width: 300px;
  animation: slideIn 0.3s ease-out;
}

/* Checkout Page Styles */
.order-item {
  padding: 1rem 0;
}

.order-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 1.5rem 0;
}

.price-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-display .currency {
  font-size: 1rem;
  margin-right: 0.25rem;
}

.premium-features-list {
  margin: 1rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-300);
}

.feature-item i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

.order-total {
  padding: 1rem 0;
  border-top: 2px solid var(--primary-color);
}

.total-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
}

.total-price .currency {
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

/* Payment Methods */
.payment-methods-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-method-card {
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.payment-method-card:hover {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.payment-method-card.selected {
  border-color: var(--primary-color);
  background: rgba(0, 255, 136, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.payment-method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.payment-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}

.payment-logo-fallback {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.payment-info {
  flex: 1;
}

.payment-info h3 {
  color: var(--light-color);
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.payment-info p {
  color: var(--gray-300);
  font-size: 0.9rem;
  margin: 0;
}

.payment-radio {
  position: relative;
}

.payment-radio input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-400);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-radio input[type="radio"]:checked {
  border-color: var(--primary-color);
  background: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.payment-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-color);
}

/* Payment Instructions */
.payment-instructions {
  margin: 2rem 0;
}

.payment-instruction-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
}

.instruction-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.instruction-header i {
  font-size: 2rem;
}

.instruction-header h3 {
  color: var(--light-color);
  font-weight: 600;
  margin: 0;
}

.instruction-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--light-color);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.step-content p {
  color: var(--gray-300);
  margin: 0 0 0.5rem 0;
}

.payment-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
}

.payment-number .number {
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  flex: 1;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(0, 255, 136, 0.2);
}

/* Payment Form */
.payment-form {
  margin: 2rem 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--light-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--glass-border);
  border-radius: 8px;
  color: var(--light-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.form-help {
  display: block;
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Checkout Actions */
.checkout-actions {
  margin-top: 2rem;
}

/* Checkout Modal Overrides */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.checkout-modal-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(20px);
}

.loading-spinner {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.loading-spinner i {
  animation: spin 1s linear infinite;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.checkout-modal-content h2,
.checkout-modal-content h3 {
  color: var(--light-color);
  text-align: center;
  margin-bottom: 1rem;
}

.checkout-modal-content p {
  color: var(--gray-300);
  text-align: center;
  margin-bottom: 2rem;
}

/* Checkout Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  z-index: 10001;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.notification-success {
  border-left: 4px solid var(--primary-color);
}

.notification-success i {
  color: var(--primary-color);
}

.notification-error {
  border-left: 4px solid #ff6b6b;
}

.notification-error i {
  color: #ff6b6b;
}

.notification-info {
  border-left: 4px solid var(--secondary-color);
}

.notification-info i {
  color: var(--secondary-color);
}

.notification span {
  color: var(--light-color);
  font-weight: 500;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
  .checkout-modal-content {
    padding: 2rem;
    margin: 1rem;
  }

  .payment-method-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .payment-radio {
    order: -1;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .payment-number {
    flex-direction: column;
    gap: 1rem;
  }

  .grid.lg\\:grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .price-display {
    font-size: 1.2rem;
  }

  .total-price {
    font-size: 1.5rem;
  }
}