/* SilentSale Landing Page Styles */
:root {
  --primary-color: #7b42e5;
  --primary-dark: #4a1e9e;
  --primary-light: #9e6ff7;
  --dark-bg: #1a1a2e;
  --text-light: #ffffff;
  --text-dark: #000000;
  --accent-color: #ff3366;
  --success-color: #28a745;
  --error-color: #dc3545;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}




.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 40px;
  margin-right: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 0;
  background: url('../images/hero_background.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.feature-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.redacted {
  position: relative;
  display: inline-block;
  background-color: var(--primary-light);
  color: transparent;
  padding: 5px 15px;
  border-radius: 4px;
  margin: 0 5px;
  user-select: none;
}

.redacted::after {
  content: 'OLD WAY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Form Styles */
.signup-form {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 40px auto 0;
  border: 1px solid rgba(123, 66, 229, 0.3);
}

.signup-form h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

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

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--dark-bg), #2a1a4a);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 66, 229, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(123, 66, 229, 0.5);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  opacity: 0.8;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 30px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-light);
  margin: 0 15px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  opacity: 0.5;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .signup-form {
    padding: 30px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 66, 229, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(123, 66, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123, 66, 229, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Form validation styles */
.error-message {
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

.success-message {
  background-color: rgba(40, 167, 69, 0.2);
  color: var(--success-color);
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  display: none;
}

input.error {
  border-color: var(--error-color);
}

.limited-spots {
  display: inline-block;
  background-color: rgba(255, 51, 102, 0.2);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 20px;
  font-size: 0.9rem;
}

.countdown {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.countdown-item {
  margin: 0 10px;
  text-align: center;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  background-color: rgba(123, 66, 229, 0.3);
  border-radius: 10px;
  padding: 10px 15px;
  min-width: 80px;
  display: inline-block;
}

.countdown-label {
  font-size: 0.9rem;
  margin-top: 5px;
  opacity: 0.7;
}
