/* Root Variables */
:root {
  /* Theme Colors - Deep Red & Black Theme */
  --primary-color: #cc0000;
  --primary-dark: #8b0000;
  --secondary-color: #ff3333;
  --accent-color: #ff1a1a;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #06b6d4;
  
  /* Neutral Colors */
  --dark-color: #1a0000;
  --light-color: #f8fafc;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  --gradient-dark: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-dark) 100%);
  --gradient-navbar: linear-gradient(to right, #1a0000 0%, #8b0000 50%, #cc0000 100%);
  
  /* Fonts */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
  animation: fadeIn 0.5s ease-in;
}

/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
  }
  50% {
    box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
  }
}

/* Scroll Animation Classes */
.fade-in-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-800);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
}

/* Utility Classes */
.section-padding {
  padding: 80px 0;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.custom-navbar {
  background: linear-gradient(to right, rgba(26, 0, 0, 0.95), rgba(139, 0, 0, 0.95), rgba(204, 0, 0, 0.95)) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  padding: 1rem 0;
  animation: fadeInDown 0.6s ease-out;
}

.custom-navbar.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

/* Mobile Capsule Navbar */
@media (max-width: 768px) {
  .custom-navbar {
    background: linear-gradient(to right, rgba(26, 0, 0, 0.95), rgba(139, 0, 0, 0.95), rgba(204, 0, 0, 0.95)) !important;
    margin: 0 15px;
    border-radius: 50px;
    padding: 0.6rem 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 5px;
    left: 0;
    right: 0;
    width: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1030;
  }
  
  .custom-navbar .container {
    padding: 0 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Adjust main content spacing for capsule navbar on mobile */
  main {
    padding-top: 80px;
  }
  
  /* Adjust flash messages for capsule navbar */
  .alert {
    margin-top: 80px !important;
    margin-bottom: 0 !important;
  }
  
  /* Ensure body has no extra margin/padding on mobile */
  body {
    margin: 0;
    padding: 0;
  }
  
  /* Remove any extra spacing from hero section on mobile */
  .hero-section {
    margin-top: 0;
  }
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white) !important;
  transition: var(--transition);
  animation: slideInLeft 0.6s ease-out;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

.support-btn {
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 0.5rem 1rem !important;
  color: var(--white) !important;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.support-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.support-btn:hover::before {
  width: 300px;
  height: 300px;
}

.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(204, 0, 0, 0.4);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 0, 0, 0.8) 0%, rgba(204, 0, 0, 0.7) 100%);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-overlay > * {
  pointer-events: auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Hero Section */
.responsive-hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-bg-desktop {
  background-attachment: fixed;
}

.hero-bg-mobile {
  background-attachment: scroll;
  background-position: center center;
}

.responsive-hero .hero-overlay {
  z-index: 2;
}

/* Mobile optimizations for hero images */
@media (max-width: 767.98px) {
  .hero-bg-mobile {
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
  }
  
  .hero-section {
    min-height: 100vh;
    background-attachment: scroll !important;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-cta .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta .btn.me-3 {
    margin-right: auto !important;
    margin-bottom: 1rem;
  }
}

/* Desktop optimizations */
@media (min-width: 768px) {
  .hero-bg-desktop {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
  }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
  }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
  .hero-bg-desktop {
    background-size: cover;
    background-position: center center;
  }
}

/* Resources Page Styles */
.resources-hero {
  background: var(--gradient-primary);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.resources-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 0, 0, 0.8) 0%, rgba(204, 0, 0, 0.7) 100%);
  z-index: 1;
}

.resources-hero .container {
  position: relative;
  z-index: 2;
}

.resources-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.resources-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .resources-hero {
    padding: 100px 0 60px;
  }
  
  .resources-hero-title {
    font-size: 2.5rem;
  }
  
  .resources-hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Reel Carousel - Enhanced UI */
#beyond-reel {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#beyond-reel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.03) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

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

.reel-carousel-container {
  overflow: hidden;
  margin: 2rem 0;
  padding: 1rem 0;
  position: relative;
  width: 100%;
}

.reel-carousel {
  display: flex;
  animation: slideLeftToRight 40s linear infinite;
  gap: 2rem;
  padding: 0.5rem 0;
  will-change: transform;
  width: max-content;
}

.reel-carousel:hover {
  animation-play-state: paused;
}

@keyframes slideLeftToRight {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.reel-item {
  flex-shrink: 0;
  width: 320px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.reel-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.reel-thumbnail {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--white);
  border: 3px solid transparent;
}

.reel-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(139, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.reel-thumbnail:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(204, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.reel-thumbnail:hover::before {
  opacity: 1;
}

.reel-category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.reel-category-tag.trending {
  background: linear-gradient(135deg, #ff5722, #ff3d00);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.reel-category-tag.new {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.reel-category-tag.must_watch {
  background: linear-gradient(135deg, #ffc107, #ffb300);
  color: #1a0000;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.reel-thumbnail img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-thumbnail:hover img {
  transform: scale(1.1);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.95) 0%,
    rgba(204, 0, 0, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
  z-index: 5;
}

.reel-thumbnail:hover .reel-overlay {
  opacity: 1;
  backdrop-filter: blur(10px);
}

.reel-overlay i {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: playIconBounce 1.5s ease-in-out infinite;
}

@keyframes playIconBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.reel-overlay h6 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* Resource Cards */
.resource-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
}

.resource-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.resource-card:hover::after {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.resource-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.resource-card:hover .resource-image img {
  transform: scale(1.1) rotate(2deg);
}

.coming-soon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.resource-content {
  padding: 1.5rem;
}

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

/* Opinion Cards */
.opinion-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  animation: scaleIn 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.opinion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.opinion-card:hover::before {
  left: 100%;
}

.opinion-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary-color);
}

.opinion-header h4 {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.opinion-position {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-style: italic;
}

.opinion-description {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.poll-section {
  margin-top: 1.5rem;
}

.poll-question {
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-weight: 600;
}

.poll-option {
  background: var(--gray-100);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.poll-option:hover {
  background: var(--gray-200);
  transform: scale(1.02);
}

.poll-option-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.poll-percentage {
  font-weight: 600;
  color: var(--primary-color);
}

.poll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--gray-200);
  width: 100%;
}

.poll-progress-bar {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.5s ease;
  border-radius: 2px;
}

.poll-stats {
  text-align: center;
  margin-top: 1rem;
}

/* Show Cards */
.show-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.show-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.show-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(204, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.coming-soon-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.show-content {
  padding: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.newsletter-section .section-title,
.newsletter-section .section-subtitle {
  color: var(--white) !important;
}

.newsletter-section .section-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: var(--white) !important;
  background-clip: unset !important;
}

.newsletter-form .form-control {
  border-radius: 10px;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  background: var(--white);
  color: var(--primary-color);
  border: none;
}

.newsletter-form .btn:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* Support Section */
.support-section-bg {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.support-section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.5;
}

.support-tiers-container {
  position: relative;
  z-index: 2;
}

.support-tier-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.support-tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popular-tier {
  transform: scale(1.05);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.popular-tier:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.tier-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
}

.tier-icon i {
  font-size: 2rem;
  color: var(--white);
}

.tier-title {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.tier-price-container {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.tier-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.tier-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.tier-period {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.tier-description {
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.tier-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.tier-benefits li {
  padding: 0.5rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: center;
}

.tier-benefits li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

.tier-btn {
  margin-top: auto;
  border-radius: 30px;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.tier-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Custom Support Section */
.custom-support-section {
  position: relative;
  z-index: 2;
}

.custom-support-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem 1.5rem;
}

.custom-amount-input-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.currency-symbol {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.custom-amount-input {
  width: 150px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  transition: var(--transition);
}

.custom-amount-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.custom-amount-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-custom-support {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  transition: var(--transition);
}

.btn-custom-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.4);
  color: white;
}

.support-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.payment-security {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.payment-security i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.support-stats {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.stat-item {
  display: inline-flex;
  align-items: center;
}

.stat-number {
  font-weight: 600;
  color: var(--accent-color);
}

/* Contact Page */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.contact-grid {
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--gray-200);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-content h4 {
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.contact-email {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-email:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Social Media Links */
.social-section {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}

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

.social-link-large {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--gray-200);
}

.social-link-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link-large.youtube {
  border-color: #ff0000;
}

.social-link-large.youtube:hover {
  background: #ff0000;
  color: var(--white);
}

.social-link-large.instagram {
  border-color: #e4405f;
}

.social-link-large.instagram:hover {
  background: #e4405f;
  color: var(--white);
}

.social-link-large.twitter {
  border-color: #1da1f2;
}

.social-link-large.twitter:hover {
  background: #1da1f2;
  color: var(--white);
}

.social-link-large.linkedin {
  border-color: #0077b5;
}

.social-link-large.linkedin:hover {
  background: #0077b5;
  color: var(--white);
}

.social-link-large i {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 30px;
  text-align: center;
}

.social-link-large h5 {
  margin-bottom: 0.25rem;
}

.social-link-large small {
  opacity: 0.7;
}

/* Response Info */
.response-info {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.response-stat i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.response-stat h4 {
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

/* Reel Detail Page */
.reel-detail-section {
  padding: 100px 0 80px;
  background: var(--gray-100);
}

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

.reel-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.reel-meta .badge {
  font-size: 0.9rem;
}

.video-section {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: relative;
  text-align: center;
}

.video-placeholder img {
  border-radius: 10px;
}

.video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.content-section {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.content-title {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.content-body {
  color: var(--gray-600);
  line-height: 1.8;
}

.extra-context {
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
  margin-left: 1rem;
}

.sidebar-section {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.sidebar-title {
  color: var(--gray-800);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sources-list {
  list-style: none;
  padding: 0;
}

.sources-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.sources-list li:last-child {
  border-bottom: none;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #1877f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.share-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.related-section {
  margin-top: 3rem;
}

.related-reel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.related-reel:hover {
  transform: scale(1.05);
}

.related-reel img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.related-reel:hover .related-overlay {
  opacity: 1;
}

/* Footer Improvements */
.footer-section {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrid)"/></svg>') repeat;
  opacity: 0.5;
}

.footer-brand {
  position: relative;
  z-index: 2;
}

.footer-brand-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.footer-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: var(--white);
}

.footer-social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
}

.footer-social-link.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
  color: var(--white);
}

.footer-social-link.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: var(--white);
}

.footer-column {
  position: relative;
  z-index: 2;
}

.footer-column-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 10px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 6px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-cta {
  border-radius: 25px;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}

.footer-cta:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.footer-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-stat-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer-stat-item i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.footer-stat-item span {
  font-weight: 600;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .footer-column-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-column {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .footer-stats {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Admin Styles */
.admin-section {
  padding-top: 76px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  display: flex;
}

.admin-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.1"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
  pointer-events: none;
  z-index: 0;
}

.admin-sidebar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  height: calc(100vh - 76px);
  padding: 2rem;
  border-right: 1px solid var(--gray-200);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
  width: 280px;
  z-index: 10;
  border-radius: 0 20px 20px 0;
  overflow-y: auto;
  flex-shrink: 0;
  position: sticky;
  top: 76px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.admin-header h4 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav-item {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--gray-600);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.admin-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  z-index: -1;
}

.admin-nav-item:hover::before,
.admin-nav-item.active::before {
  left: 0;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: var(--white);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(204, 0, 0, 0.3);
}

.admin-nav-item i {
  width: 20px;
  text-align: center;
}

.admin-content {
  flex: 1;
  padding: 2rem;
  position: relative;
  z-index: 5;
  min-width: 0;
}

.admin-tab {
  display: none;
}

.admin-tab.active {
  display: block;
}

.admin-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admin-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
}

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

.admin-card:hover::before {
  left: 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-card:hover::after {
  opacity: 1;
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.stat-icon::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 1.5rem;
  z-index: 2;
  position: relative;
}

.stat-icon.bg-primary { background: var(--primary-color); }
.stat-icon.bg-success { background: var(--success-color); }
.stat-icon.bg-info { background: var(--info-color); }
.stat-icon.bg-warning { background: var(--warning-color); }

.stat-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-content p {
  color: var(--gray-600);
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  border-left-color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.activity-item i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-action-btn {
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-700);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-action-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.admin-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.admin-thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced opinion cards */
.admin-card h5 {
  color: var(--gray-800);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.admin-card .text-muted {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.poll-results {
  background: rgba(248, 250, 252, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  margin-bottom: 1.5rem;
}

.poll-results h6 {
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.poll-result-item .badge {
  background: var(--gradient-primary) !important;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Enhanced buttons */
.btn {
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform-origin: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  transition: transform 0.1s;
}

.btn-outline-success, .btn-outline-danger, .btn-outline-primary {
  border-width: 2px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-outline-success:hover, .btn-outline-danger:hover, .btn-outline-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary, .btn-success, .btn-danger {
  animation: scaleIn 0.4s ease-out;
}

.btn-primary:hover, .btn-success:hover, .btn-danger:hover {
  animation: pulse 1s infinite;
}

/* Enhanced table styling */
.table {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.table thead th {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 1rem;
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background: rgba(204, 0, 0, 0.05);
  transform: scale(1.01);
}

.table tbody td {
  padding: 1rem;
  border-color: rgba(226, 232, 240, 0.5);
  vertical-align: middle;
}

.poll-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

/* Admin Login */
.admin-login-section {
  padding: 100px 0;
  background: var(--gray-100);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.admin-login-card {
  background: var(--white);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.admin-login-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

/* Footer */
.footer-section {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .reel-carousel {
    animation-duration: 20s;
  }
  
  .reel-item {
    width: 250px;
  }
  
  .support-tier.popular {
    transform: none;
  }
  
  .social-links-large {
    grid-template-columns: 1fr;
  }
  
  .admin-section {
    flex-direction: column;
  }
  
  .admin-sidebar {
    position: relative;
    height: auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
    top: auto;
  }
  
  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
  }
  
  .admin-nav-item {
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .hero-section {
    background-attachment: scroll;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .newsletter-section {
    padding: 2rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .reel-detail-section {
    padding: 80px 0 60px;
  }
  
  .admin-content {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  .custom-navbar,
  .footer-section,
  .hero-cta,
  .support-section {
    display: none !important;
  }
  
  .hero-section {
    background: var(--white) !important;
    color: var(--gray-800) !important;
    height: auto !important;
    padding: 2rem 0;
  }
  
  .hero-overlay {
    background: none !important;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--gray-300);
  border-radius: 50%;
  border-top-color: var(--primary-color);
  animation: spin 1s ease-in-out infinite;
}

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

/* Polls Archive Page Styles */
.polls-archive-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.polls-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.polls-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.polls-archive-header h2 {
  color: var(--gray-800);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.poll-archive-item {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.poll-archive-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.poll-title .poll-link {
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.poll-title .poll-link:hover {
  color: var(--primary-color);
}

.poll-date {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.poll-description {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.poll-question-preview {
  color: var(--gray-600);
  font-style: italic;
  font-size: 0.95rem;
}

.poll-actions .btn {
  border-radius: 25px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}

.poll-stats {
  margin-top: 0.5rem;
}

/* Poll Detail Page Styles */
.poll-detail-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 120px 0 60px;
}

.poll-detail-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.poll-detail-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.poll-detail-header .breadcrumb a:hover {
  color: var(--white);
}

.poll-detail-header .breadcrumb-item.active {
  color: var(--white);
}

.poll-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.poll-detail-meta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.poll-detail-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2rem;
}

.opinion-position-section {
  background: linear-gradient(135deg, rgba(26, 0, 0, 0.05) 0%, rgba(204, 0, 0, 0.05) 100%);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
}

.position-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.position-text {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 0;
}

.opinion-description-section h4 {
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 1rem;
}

.description-text {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 1.05rem;
}

.poll-voting-section {
  background: var(--gray-50);
  border-radius: 15px;
  padding: 2rem;
}

.poll-question-title {
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.poll-options-container {
  margin-bottom: 1.5rem;
}

.poll-options-container .poll-option {
  margin-bottom: 1rem;
}

.poll-stats-section {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.poll-total-votes {
  color: var(--gray-700);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.related-polls-section {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.related-polls-section h4 {
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Mobile Responsive for Polls */
@media (max-width: 768px) {
  .polls-hero-title {
    font-size: 2.5rem;
  }
  
  .poll-detail-title {
    font-size: 2rem;
  }
  
  .poll-detail-card {
    padding: 2rem 1.5rem;
  }
  
  .opinion-position-section {
    padding: 1.5rem;
  }
  
  .poll-voting-section {
    padding: 1.5rem;
  }
  
  .poll-archive-item {
    padding: 1.5rem;
  }
}

/* Chart Controls and Voting Interface */
.chart-controls {
  text-align: center;
}

.chart-controls .btn-group .btn {
  border-radius: 25px;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: var(--transition);
}

.chart-controls .btn-group .btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 1px solid var(--primary-color);
}

.chart-controls .btn-group .btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 1px solid var(--primary-color);
}

.chart-controls .btn-group .btn.active,
.chart-controls .btn-group .btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.charts-container {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.chart-wrapper {
  position: relative;
  height: 400px;
  width: 100%;
}

.voting-title {
  color: var(--gray-800);
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.poll-option-vote {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.poll-option-vote:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(139, 0, 0, 0.1);
  transform: translateY(-2px);
}

.vote-option-content {
  flex: 1;
}

.vote-option-text {
  font-weight: 500;
  color: var(--gray-800);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.3rem;
}

.vote-count {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.vote-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(139, 0, 0, 0.2);
}

.vote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.vote-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(139, 0, 0, 0.2);
}

.vote-alert {
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: none;
  box-shadow: var(--shadow-md);
}

/* Chart responsive adjustments */
@media (max-width: 768px) {
  .chart-wrapper {
    height: 300px;
  }
  
  .chart-controls .btn-group .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .charts-container {
    padding: 1.5rem;
  }
  
  .poll-option-vote {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .vote-option-content {
    flex: none;
  }
  
  .vote-btn {
    width: 100%;
  }
}

/* Topic Tag Styles */
.topic-tag,
.poll-topic-tag {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.2);
  transition: var(--transition);
}

.topic-tag:hover,
.poll-topic-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.poll-meta-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.poll-meta-header .poll-date {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.poll-detail-meta .poll-topic-tag {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Topic filtering styles (for future enhancement) */
.topic-filter {
  margin-bottom: 2rem;
}

.topic-filter-btn {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-600);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin: 0.25rem;
  transition: var(--transition);
  font-size: 0.9rem;
}

.topic-filter-btn:hover,
.topic-filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

@media (max-width: 768px) {
  .poll-meta-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .topic-tag,
  .poll-topic-tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Modal Backdrop Blur Effect */
.modal-backdrop {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-backdrop.show {
  opacity: 0.7;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Enhanced modal styling */
#disclaimerModal .modal-content,
#newsletterModal .modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#disclaimerModal .modal-header,
#newsletterModal .modal-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  border-radius: 20px 20px 0 0;
}

#disclaimerModal .modal-title,
#newsletterModal .modal-title {
  color: var(--white);
}

#disclaimerModal .btn-close,
#newsletterModal .btn-close {
  filter: brightness(0) invert(1);
}

/* ================================
   The Circle Section Styles
   ================================ */

#the-circle {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Top Supporters Card */
.top-supporters-card {
  background: linear-gradient(135deg, #1a0000 0%, #8b0000 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
  height: 100%;
}

.top-supporters-title {
  color: #ffd700;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 1rem;
}

.top-supporters-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-supporter-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.top-supporter-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.5);
}

.top-supporter-item.rank-1 {
  border: 2px solid #ffd700;
  background: rgba(255, 215, 0, 0.15);
}

.top-supporter-item.rank-2 {
  border: 2px solid #c0c0c0;
  background: rgba(192, 192, 192, 0.1);
}

.top-supporter-item.rank-3 {
  border: 2px solid #cd7f32;
  background: rgba(205, 127, 50, 0.1);
}

.top-supporter-item .rank {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffd700;
  min-width: 40px;
}

.top-supporter-item .supporter-name {
  flex: 1;
  color: #ffffff;
  font-weight: 600;
}

.top-supporter-item .support-amount {
  color: #ffd700;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Monthly Highlights Card */
.monthly-highlights-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlights-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.stat-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.stat-content h5 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0;
}

.stat-content p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Top Reel Section */
.top-reel-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.top-reel-card h6 {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.reel-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.reel-stats span {
  color: var(--gray-600);
  font-weight: 600;
}

.reel-stats i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Supporter Recognition Card */
.supporter-recognition-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.recognition-title {
  color: var(--primary-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.supporter-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.supporter-card.gold-border {
  border: 3px solid #ffd700;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.supporter-card.gold-border:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
}

.supporter-card i {
  font-size: 1.5rem;
  color: #ffd700;
}

.supporter-card .supporter-name {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 1rem;
}

.supporter-card .support-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: var(--gray-900);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Shoutouts Section */
.shoutouts-title {
  color: var(--primary-dark);
  font-size: 1.8rem;
  font-weight: 700;
}

.shoutout-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 2px solid transparent;
}

.shoutout-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(204, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.shoutout-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.shoutout-name {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.shoutout-text {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Collaboration Note */
.collab-note-card {
  background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 2px dashed var(--primary-color);
  max-width: 600px;
  margin: 0 auto;
}

.collab-note-card i {
  color: var(--primary-color);
}

.collab-note-card h5 {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.collab-note-card p {
  color: var(--gray-700);
  font-size: 1rem;
}

.collab-note-card a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.collab-note-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive Design for The Circle */
@media (max-width: 991px) {
  .recognition-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .top-supporters-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-card i {
    font-size: 2rem;
  }
  
  .stat-content h5 {
    font-size: 1.5rem;
  }
  
  .top-reel-card .row {
    flex-direction: column;
  }
  
  .shoutouts-section .row {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .recognition-grid {
    grid-template-columns: 1fr;
  }
  
  .reel-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ================================
   Polls Archive Search & Filter Styles
   ================================ */

.search-filter-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-input-group {
  display: flex;
  gap: 1rem;
}

.search-input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  font-size: 1rem;
}

.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.search-btn {
  padding: 0.8rem 2rem;
  border-radius: 12px;
}

.filter-controls {
  padding-top: 1.5rem;
  border-top: 2px solid var(--gray-200);
}

.filter-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  display: block;
}

/* Polls Sidebar */
.polls-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-section {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.group-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.group-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--gray-100);
  border-radius: 10px;
  text-decoration: none;
  color: var(--gray-800);
  transition: var(--transition);
}

.group-item:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateX(5px);
}

.group-item i {
  color: var(--primary-color);
}

.group-item:hover i {
  color: #ffffff;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem;
  background: var(--gray-100);
  border-radius: 10px;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

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

/* Poll Groups Page */
.group-card-link {
  text-decoration: none;
  display: block;
}

.group-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.group-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(204, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.group-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.group-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.group-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.group-latest-poll {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  min-height: 45px;
}

.group-stats {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 2px solid var(--gray-200);
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 1rem;
}

.group-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  font-weight: 600;
}

.group-stat i {
  color: var(--primary-color);
}

.group-date {
  color: var(--gray-500);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Group Detail Page */
.poll-group-hero {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-dark) 100%);
  padding: 6rem 0 4rem;
  color: #ffffff;
}

.group-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.group-detail-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.group-analytics-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.analytics-stat {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.analytics-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.15);
}

.analytics-stat i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.analytics-stat h5 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.analytics-stat h5.small-text {
  font-size: 1rem;
}

.analytics-stat p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Poll Timeline */
.poll-timeline {
  position: relative;
  padding-left: 3rem;
}

.poll-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
}

.timeline-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.15);
}

.timeline-date {
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.timeline-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

.timeline-title a:hover {
  color: var(--primary-color);
}

.timeline-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-200);
}

.timeline-question,
.timeline-votes {
  color: var(--gray-700);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.timeline-question i,
.timeline-votes i {
  color: var(--primary-color);
}

/* Related Polls */
.related-poll-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.related-poll-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(204, 0, 0, 0.15);
}

.related-poll-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.related-poll-title a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
}

.related-poll-title a:hover {
  color: var(--primary-color);
}

.related-poll-question {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.related-poll-meta {
  color: var(--gray-500);
  font-size: 0.85rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gray-200);
}

/* Responsive Design */
@media (max-width: 991px) {
  .polls-sidebar {
    position: static;
    margin-top: 3rem;
  }
  
  .search-input-group {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .filter-controls .row {
    gap: 1rem;
  }
  
  .poll-timeline {
    padding-left: 2rem;
  }
  
  .timeline-item {
    padding-left: 1rem;
  }
  
  .analytics-stat {
    flex-direction: column;
    text-align: center;
  }
}
