/* Main Wrapper */
.coming-soon-wrapper { 
  min-height: 100vh; 
  display: flex; 
  flex-direction: column; 
  background: var(--site-bg-color, #010103);
  color: #fff; 
}

/* Hero Section */
.hero { 
  position: relative; 
  text-align: center;
  margin: auto 0;
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .overlay { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Removed blur for clarity */
  z-index: 1;
}

/* Blurred, semi-transparent card for hero content */
.hero-card {
  background: rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.25rem;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

/* Ensure content is above the image grid */
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Logo container and image styles */
.logo-container {
  max-width: 100%;
  margin: 2rem 0 3rem;
  padding: 0 1rem;
  text-align: center;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-logo {
    max-width: 300px;
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 1.25rem 0.75rem !important;
  }
}

.text-gradient { 
  background: linear-gradient(90deg, #dc3545, #e4606f); 
  -webkit-background-clip: text; 
  background-clip: text;
  color: transparent; 
  display: inline-block;
}

.cta-btn { 
  padding: 0.75rem 2.5rem; 
  font-weight: 600; 
  animation: pulse 2s infinite; 
  border: 2px solid #dc3545; 
  color: #dc3545; 
  background: transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover { 
  background: rgba(220, 53, 69, 0.1); 
  text-decoration: none;
  color: #fff;
}

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

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: rgba(255, 255, 255, 0.03);
}

.features .feature-item { 
  transition: transform 0.3s, box-shadow 0.3s; 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  background: rgba(35, 35, 44, 0.8);
}

.features .feature-item:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
  border-color: rgba(220, 53, 69, 0.3); 
}

.text-pink { 
  color: #dc3545; 
}

/* Signup Section */
.signup {
  padding: 4rem 0;
}

.signup .form-control { 
  background-color: var(--site-bg-color, #010103); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  color: #fff; 
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.signup .form-control:focus { 
  background-color: var(--site-bg-color, #010103); 
  border-color: #dc3545; 
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); 
  color: #fff;
}

.signup .form-control::placeholder { 
  color: rgba(255, 255, 255, 0.6); 
}

/* Social Buttons */
.social {
  padding: 2rem 0;
  margin-top: auto;
}

.social-btn { 
  width: 50px; 
  height: 50px; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s; 
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 1.25rem;
}

.social-btn:hover { 
  background: #dc3545; 
  border-color: #dc3545; 
  transform: translateY(-3px); 
  color: #fff;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) { 
  .hero h1 { 
    font-size: 2.5rem; 
  } 
  
  .hero p { 
    font-size: 1.1rem; 
  } 
  
  .countdown-item {
    min-width: calc(50% - 1rem);
    margin-bottom: 1rem;
  }
}

/* Countdown Section */
.countdown {
  background-color: var(--site-bg-color, #010103);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(220, 53, 69, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.countdown .container {
  position: relative;
  z-index: 1;
}

.countdown h2 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.countdown .lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.countdown-container {
  margin: 0 auto;
  max-width: 900px;
}

.countdown-item {
  background: rgba(30, 30, 40, 0.8);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 16px;
  z-index: -1;
}

.countdown-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(220, 53, 69, 0.25);
  border-color: #dc3545;
}

.countdown-value {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #dc3545, #e4606f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.countdown-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.countdown-icon {
  font-size: 1.75rem;
  color: #dc3545;
  margin-bottom: 0.5rem;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  transition: all 0.3s ease;
}

.countdown-item:hover .countdown-icon {
  transform: scale(1.1);
  background: rgba(220, 53, 69, 0.2);
}

.countdown-progress {
  width: 80%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.countdown-progress .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #dc3545, #e4606f);
  width: 0;
  transition: width 1s linear;
}

.btn-pink {
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-pink:hover {
  background: #c82333;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

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

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* Animation for countdown items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Creator Benefits Section Styles */
.creator-benefits {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

/* Animated underline for section header */
.section-header-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.animated-underline {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #dc3545, #e4606f);
  border-radius: 2px;
  animation: pulse-width 3s infinite;
}

@keyframes pulse-width {
  0%, 100% { width: 80px; }
  50% { width: 150px; }
}

/* Text gradient for pink highlights */
.text-gradient-pink {
  background: linear-gradient(90deg, #dc3545, #e4606f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Card styles */
.benefits-card, .testimonial-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  transform: translateY(0);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefits-card:hover, .testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Benefit item styles */
.benefit-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

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

/* Benefit icon styles */
.benefit-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.benefit-icon {
  position: relative;
  z-index: 1;
  color: #dc3545;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon-bg {
  transform: scale(1);
  background: rgba(220, 53, 69, 0.2);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

/* Benefit percentage and tag styles */
.benefit-percentage, .benefit-tag {
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1.5rem;
  color: #dc3545;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.benefit-percentage span {
  font-size: 1rem;
  vertical-align: super;
}

.benefit-tag {
  background: rgba(220, 53, 69, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 1rem;
}

.benefit-item:hover .benefit-percentage, 
.benefit-item:hover .benefit-tag {
  opacity: 1;
  transform: scale(1.1);
}

/* Testimonial card styles */
.testimonial-card {
  color: #fff;
}

.testimonial-quote-mark {
  top: 10px;
  right: 20px;
  opacity: 0.1;
  z-index: 0;
}

.opacity-20 {
  opacity: 0.2;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(220, 53, 69, 0.18);
  border: 3px solid #dc3545;
  background: #181828;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s, height 0.3s;
}

@media (max-width: 575.98px) {
  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonial stats */
.testimonial-stats {
  margin-top: 1rem;
}

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

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc3545;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Button styles */
.btn-gradient-pink {
  background: linear-gradient(90deg, #dc3545, #e4606f);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-gradient-pink:hover {
  background: linear-gradient(90deg, #c82333, #dc3545);
  color: #fff;
  transform: translateY(-3px);
}

.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
  transform: translateY(-3px);
}

/* Particles container for floating effect */
.particles-container {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Particle styling */
.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

/* Particle animation */
@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-50px) translateX(20px);
  }
  50% {
    transform: translateY(-20px) translateX(50px);
  }
  75% {
    transform: translateY(30px) translateX(25px);
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .benefit-percentage, .benefit-tag {
    position: relative;
    margin-left: auto;
    font-size: 1.25rem;
  }
  
  .testimonial-stats {
    margin-top: 1rem;
  }
}

@media (min-width: 992px) {
  .testimonial-card.h-100 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  .testimonial-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .animated-underline {
    bottom: -5px;
  }
  
  .creator-benefits {
    padding: 3rem 0;
  }
  
  .benefit-item {
    padding: 0.75rem 0;
  }
  
  .benefit-icon-wrapper {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575.98px) {
  .section-header-wrapper h2 {
    font-size: 2.5rem;
  }
  
  .benefit-percentage,
  .benefit-tag {
    display: none !important;
  }
  
  .testimonial-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stat-item {
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
    flex-direction: row;
  }
  
  .stat-value {
    margin-right: 0.5rem;
  }
}

.countdown-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.countdown-item:nth-child(1) { animation-delay: 0.1s; }
.countdown-item:nth-child(2) { animation-delay: 0.2s; }
.countdown-item:nth-child(3) { animation-delay: 0.3s; }
.countdown-item:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .countdown-container {
    gap: 1rem;
  }
  
  .countdown-item {
    min-width: calc(50% - 1rem);
    padding: 1.25rem 0.5rem;
  }
  
  .countdown-value {
    font-size: 2.2rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .countdown-item {
    min-width: calc(50% - 0.5rem);
    padding: 1rem 0.5rem;
  }
  
  .countdown-value {
    font-size: 1.8rem;
  }
  
  .countdown-label {
    font-size: 0.75rem;
  }
}