/* Modern 2025 Fanelix Homepage Styles */
/* Glassmorphism + Gradient Design with Orange/Pink Tones */

/* CSS Variables for consistent theming */
:root {
  --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ff4081 50%, #e91e63 75%, #9c27b0 100%);
  --secondary-gradient: linear-gradient(135deg, #ff9a56 0%, #ff6b9d 50%, #c44569 100%);
  --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #8a8a8a;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --border-radius: 20px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Modern Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Modern Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Override existing jumbotron styles */
.jumbotron.homepage {
  background: var(--primary-gradient) !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Animated Background Elements */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.gradient-orb-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #ff4081, #e91e63);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.gradient-orb-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #9c27b0, #673ab7);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

/* Floating Particles */
.floating-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatParticle 8s linear infinite;
}

.floating-particle-1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.floating-particle-2 {
  width: 12px;
  height: 12px;
  top: 30%;
  right: 25%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.floating-particle-3 {
  width: 6px;
  height: 6px;
  top: 70%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.floating-particle-4 {
  width: 10px;
  height: 10px;
  top: 80%;
  right: 20%;
  animation-delay: 6s;
  animation-duration: 11s;
}

.floating-particle-5 {
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  animation-delay: 1s;
  animation-duration: 13s;
}

/* Social Media Icons */
.social-icon {
  position: absolute;
  opacity: 0.4;
  animation: floatSocial 12s ease-in-out infinite;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-icon-1 {
  top: 15%;
  left: 80%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.social-icon-2 {
  top: 40%;
  left: 5%;
  animation-delay: 3s;
  animation-duration: 18s;
}

.social-icon-3 {
  top: 60%;
  right: 10%;
  animation-delay: 6s;
  animation-duration: 20s;
}

.social-icon-4 {
  top: 25%;
  right: 30%;
  animation-delay: 2s;
  animation-duration: 16s;
}

.social-icon-5 {
  top: 70%;
  left: 60%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.social-icon-6 {
  top: 10%;
  left: 50%;
  animation-delay: 1s;
  animation-duration: 17s;
}

.social-icon-7 {
  top: 50%;
  right: 5%;
  animation-delay: 7s;
  animation-duration: 19s;
}

.social-icon-8 {
  top: 80%;
  left: 30%;
  animation-delay: 5s;
  animation-duration: 13s;
}

.social-icon-9 {
  top: 30%;
  left: 10%;
  animation-delay: 8s;
  animation-duration: 21s;
}

.social-icon-10 {
  top: 65%;
  right: 40%;
  animation-delay: 2s;
  animation-duration: 16s;
}

/* Heart Animation */
.heart-icon {
  color: #ffffff !important;
  animation: heartbeat 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

/* Like Button Animation */
.like-icon {
  color: #ffffff !important;
  animation: bounce 1.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Star Animation */
.star-icon {
  color: #ffffff !important;
  animation: twinkle 3s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(247, 147, 30, 0.5);
}

/* Comment Bubble Animation */
.comment-icon {
  color: #ffffff !important;
  animation: float 4s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}

/* Share Icon Animation */
.share-icon {
  color: #ffffff !important;
  animation: rotate 6s linear infinite;
  text-shadow: 0 0 10px rgba(103, 58, 183, 0.5);
}

/* Follow Icon Animation */
.follow-icon {
  color: #ffffff !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  animation: pulse 2.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

/* Force remove any background from follow icon */
.social-icon .follow-icon,
.social-icon-6 .follow-icon,
.bi-person-plus-fill {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

/* Subscribe Icon Animation */
.subscribe-icon {
  color: #ffffff !important;
  animation: bounce 2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Tip Icon Animation */
.tip-icon {
  color: #ffffff !important;
  animation: twinkle 2.8s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(247, 147, 30, 0.5);
}

/* View Icon Animation */
.view-icon {
  color: #ffffff !important;
  animation: float 3.5s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}

/* Pulsing Dots */
.pulsing-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.pulsing-dot-1 {
  top: 25%;
  left: 30%;
  animation-delay: 0s;
}

.pulsing-dot-2 {
  top: 45%;
  right: 30%;
  animation-delay: 1s;
}

.pulsing-dot-3 {
  top: 65%;
  left: 40%;
  animation-delay: 2s;
}

.pulsing-dot-4 {
  top: 35%;
  right: 60%;
  animation-delay: 0.5s;
}

.pulsing-dot-5 {
  top: 75%;
  left: 70%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatParticle {
  0% { transform: translateY(0px) translateX(0px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px) rotate(360deg); opacity: 0; }
}

@keyframes moveShape {
  0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
  25% { transform: translateX(100px) translateY(-50px) rotate(90deg); }
  50% { transform: translateX(200px) translateY(0px) rotate(180deg); }
  75% { transform: translateX(100px) translateY(50px) rotate(270deg); }
  100% { transform: translateX(0px) translateY(0px) rotate(360deg); }
}

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

@keyframes floatSocial {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-30px) translateX(20px) rotate(5deg); }
  50% { transform: translateY(-60px) translateX(-10px) rotate(-5deg); }
  75% { transform: translateY(-30px) translateX(15px) rotate(3deg); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.3); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

@keyframes twinkle {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
  25% { transform: rotate(90deg) scale(1.2); opacity: 1; }
  50% { transform: rotate(180deg) scale(0.9); opacity: 0.6; }
  75% { transform: rotate(270deg) scale(1.1); opacity: 0.9; }
}

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

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.4s both;
}

/* Modern Button Styles */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  text-shadow: none;
}

/* Ensure button text is always visible */
.btn-modern * {
  color: inherit;
}

.btn-primary-modern {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: var(--glass-shadow);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.3);
}

/* Override any existing button styles with higher specificity */
a.btn-modern.btn-secondary-modern,
button.btn-modern.btn-secondary-modern,
.btn-modern.btn-secondary-modern {
  background: white !important;
  color: #1a1a1a !important;
  box-shadow: var(--shadow-medium) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

a.btn-modern.btn-secondary-modern:hover,
button.btn-modern.btn-secondary-modern:hover,
.btn-modern.btn-secondary-modern:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-strong) !important;
  background: #f8fafc !important;
  color: #1a1a1a !important;
  text-decoration: none !important;
}

a.btn-modern.btn-secondary-modern i,
button.btn-modern.btn-secondary-modern i,
.btn-modern.btn-secondary-modern i,
a.btn-modern.btn-secondary-modern svg,
button.btn-modern.btn-secondary-modern svg,
.btn-modern.btn-secondary-modern svg {
  color: #1a1a1a !important;
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--glass-shadow);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: var(--primary-gradient);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  color: white;
}

.stat-item {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Creator Cards */
.creator-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.creator-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.creator-avatar {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--primary-gradient);
}

.creator-info {
  padding: 1.5rem;
}

.creator-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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

.creator-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Earnings Simulator */
.simulator-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.simulator-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-medium);
  max-width: 800px;
  margin: 0 auto;
}

.simulator-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.simulator-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

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

.control-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.control-label {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-input {
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: white;
}

.control-input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gradient);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gradient);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-soft);
}

.result-display {
  text-align: center;
  padding: 2rem;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-lg);
  color: white;
  margin-top: 2rem;
}

.result-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-modern {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .simulator-controls {
    grid-template-columns: 1fr;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .simulator-card {
    padding: 2rem;
  }
  
  .result-amount {
    font-size: 2rem;
  }
}

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

.bg-gradient {
  background: var(--primary-gradient);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.shadow-medium {
  box-shadow: var(--shadow-medium);
}

.shadow-strong {
  box-shadow: var(--shadow-strong);
}

.rounded-modern {
  border-radius: var(--border-radius);
}

.rounded-lg-modern {
  border-radius: var(--border-radius-lg);
}

.rounded-xl-modern {
  border-radius: var(--border-radius-xl);
}

/* Loading States */
.loading-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Focus States for Accessibility */
.btn-modern:focus,
.control-input:focus,
.range-slider:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.3);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gradient-orb {
    animation: none !important;
  }
}

/* Performance optimizations */
.hero-section {
  will-change: transform;
}

.gradient-orb {
  will-change: transform;
}

/* Ensure compatibility with existing Bootstrap classes */
.btn-modern {
  display: inline-flex !important;
}

/* Override any conflicting styles */
.hero-section .container {
  position: relative;
  z-index: 10;
}

/* Ensure proper stacking context */
.hero-bg {
  z-index: 1;
}

.hero-content {
  z-index: 10;
  position: relative;
}

/* ULTRA SPECIFIC: Force remove all backgrounds from social icons */
.social-icon,
.social-icon *,
.social-icon i,
.social-icon .bi,
.social-icon .bi-person-plus-fill,
.social-icon .bi-heart-fill,
.social-icon .bi-hand-thumbs-up-fill,
.social-icon .bi-star-fill,
.social-icon .bi-chat-dots-fill,
.social-icon .bi-share-fill,
.social-icon .bi-bell-fill,
.social-icon .bi-currency-dollar,
.social-icon .bi-eye-fill {
  background: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

/* CRITICAL: Force button text visibility - highest specificity */
.btn-modern.btn-secondary-modern,
a.btn-modern.btn-secondary-modern {
  color: #000000 !important;
  background-color: #ffffff !important;
  border: 2px solid #e0e0e0 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.btn-modern.btn-secondary-modern:hover,
a.btn-modern.btn-secondary-modern:hover {
  color: #000000 !important;
  background-color: #f5f5f5 !important;
}

.btn-modern.btn-secondary-modern *,
a.btn-modern.btn-secondary-modern * {
  color: #000000 !important;
}

/* ULTRA SPECIFIC: Override any possible conflicting styles */
section .btn-modern.btn-secondary-modern,
.hero-section .btn-modern.btn-secondary-modern,
.container .btn-modern.btn-secondary-modern,
div .btn-modern.btn-secondary-modern {
  color: #000000 !important;
  background-color: #ffffff !important;
  border: 2px solid #cccccc !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

section .btn-modern.btn-secondary-modern:hover,
.hero-section .btn-modern.btn-secondary-modern:hover,
.container .btn-modern.btn-secondary-modern:hover,
div .btn-modern.btn-secondary-modern:hover {
  color: #000000 !important;
  background-color: #f0f0f0 !important;
}

/* Media query override to ensure visibility on all devices */
@media screen and (min-width: 1px) {
  .btn-modern.btn-secondary-modern {
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 2px solid #999999 !important;
    font-weight: 900 !important;
  }
  
  .btn-modern.btn-secondary-modern:hover {
    color: #000000 !important;
    background-color: #eeeeee !important;
  }
}

/* Signup Page Specific Styles */
.hero-section .glass-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
  border-radius: var(--border-radius-lg) !important;
  margin-top: 2rem !important;
}

/* Add more spacing for signup page specifically */
.hero-section .container {
  padding-top: 3rem !important;
}

.hero-section .card-body {
  position: relative;
  z-index: 10;
}

.hero-section .form-control {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-section .form-control:focus {
  background: rgba(255, 255, 255, 1) !important;
  border-color: #ff6b35 !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.hero-section .input-group-text {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  color: #ff6b35 !important;
}

.hero-section .btn {
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4081 100%) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.hero-section .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}

.hero-section .btn-facebook {
  background: rgba(24, 119, 242, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(24, 119, 242, 0.3) !important;
}

.hero-section .btn-twitter {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.hero-section .btn-google {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
}

.hero-section .btn-facebook:hover,
.hero-section .btn-twitter:hover,
.hero-section .btn-google:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.hero-section .custom-control-label {
  color: #333 !important;
  font-weight: 500 !important;
}

.hero-section .custom-control-label a {
  color: #ff6b35 !important;
  text-decoration: none !important;
}

.hero-section .custom-control-label a:hover {
  color: #f7931e !important;
  text-decoration: underline !important;
}

.hero-section .text-light {
  color: #333333 !important;
  text-shadow: 0 1px 2px rgba(255, 107, 53, 0.6), 0 0 8px rgba(255, 107, 53, 0.3) !important;
  font-weight: 700 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.hero-section .text-light:hover {
  color: #1a1a1a !important;
  text-shadow: 0 1px 3px rgba(255, 107, 53, 0.8), 0 0 12px rgba(255, 107, 53, 0.5) !important;
  font-weight: 700 !important;
}

/* Force bold styling with higher specificity */
.hero-section .text-light small {
  font-weight: 700 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Signup page responsive adjustments */
@media (max-width: 768px) {
  .hero-section .glass-card {
    margin: 1rem !important;
    margin-top: 1.5rem !important;
    border-radius: var(--border-radius) !important;
  }
  
  .hero-section .container {
    padding-top: 2.5rem !important;
  }
  
  .hero-section .card-body {
    padding: 1.5rem !important;
  }
  
  .hero-section .btn {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-section .container {
    padding: 0 1rem !important;
    padding-top: 2rem !important;
  }
  
  .hero-section .glass-card {
    margin: 0.5rem !important;
    margin-top: 1rem !important;
  }
}

/* Login Page Specific Styles */
.hero-section .glass-card {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
  border-radius: var(--border-radius-lg) !important;
  margin-top: 2rem !important;
}

/* Add more spacing for login page specifically */
.hero-section .container {
  padding-top: 3rem !important;
}

.hero-section .card-body {
  position: relative;
  z-index: 10;
}

.hero-section .form-control {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-section .form-control:focus {
  background: rgba(255, 255, 255, 1) !important;
  border-color: #ff6b35 !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.hero-section .input-group-text {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  color: #ff6b35 !important;
}

.hero-section .btn {
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4081 100%) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

.hero-section .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}

.hero-section .btn-facebook {
  background: rgba(24, 119, 242, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(24, 119, 242, 0.3) !important;
}

.hero-section .btn-twitter {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

.hero-section .btn-google {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
}

.hero-section .btn-facebook:hover,
.hero-section .btn-twitter:hover,
.hero-section .btn-google:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
}

.hero-section .custom-control-label {
  color: #333 !important;
  font-weight: 500 !important;
}

.hero-section .custom-control-label a {
  color: #ff6b35 !important;
  text-decoration: none !important;
}

.hero-section .custom-control-label a:hover {
  color: #f7931e !important;
  text-decoration: underline !important;
}

.hero-section .text-light {
  color: #333333 !important;
  text-shadow: 0 1px 2px rgba(255, 107, 53, 0.6), 0 0 8px rgba(255, 107, 53, 0.3) !important;
  font-weight: 700 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.hero-section .text-light:hover {
  color: #1a1a1a !important;
  text-shadow: 0 1px 3px rgba(255, 107, 53, 0.8), 0 0 12px rgba(255, 107, 53, 0.5) !important;
  font-weight: 700 !important;
}

/* Force bold styling with higher specificity */
.hero-section .text-light small {
  font-weight: 700 !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Login page responsive adjustments */
@media (max-width: 768px) {
  .hero-section .glass-card {
    margin: 1rem !important;
    margin-top: 1.5rem !important;
    border-radius: var(--border-radius) !important;
  }
  
  .hero-section .container {
    padding-top: 2.5rem !important;
  }
  
  .hero-section .card-body {
    padding: 1.5rem !important;
  }
  
  .hero-section .btn {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-section .container {
    padding: 0 1rem !important;
    padding-top: 2rem !important;
  }
  
  .hero-section .glass-card {
    margin: 0.5rem !important;
    margin-top: 1rem !important;
  }
}

/* Make Live Stream Icons Red */
.bi-broadcast,
.bi-broadcast-fill,
[class*="broadcast"] {
  color: #dc2626 !important;
}

/* Live stream button icons */
.btnCreateLive i,
.btnCreateLive .bi-broadcast,
.btnCreateLive .bi-broadcast-fill {
  color: #dc2626 !important;
}

/* Live stream page icons */
.live .bi-broadcast,
.live .bi-broadcast-fill {
  color: #dc2626 !important;
}

