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

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #1a0f14 0%, #2d1620 50%, #3d1a28 100%);
  color: #333;
  position: relative;
  min-height: 100vh;
  display: block;
  padding: 40px 20px;
}

/* Animated stars background */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.stars::before,
.stars::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  box-shadow: 100px 100px white, 200px 50px white, 150px 200px white,
              50px 150px white, 250px 100px white, 300px 200px white,
              100px 300px white, 200px 250px white, 350px 150px white;
  animation: twinkle 3s infinite;
}

.stars::after {
  animation-delay: 1.5s;
  box-shadow: 75px 125px white, 175px 75px white, 125px 225px white,
              25px 175px white, 275px 125px white, 325px 225px white,
              125px 325px white, 225px 275px white, 375px 175px white;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Header */
.header {
  margin-bottom: 40px;
  margin-top: 20px;
  animation: slideDown 0.8s ease;
  padding: 20px 0;
}

.logo-wrapper {
  background: rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.ashley-photo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.ashley-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ff4dd4;
  box-shadow: 0 8px 24px rgba(255, 77, 212, 0.3);
  transition: transform 0.3s ease;
}

.ashley-image:hover {
  transform: scale(1.05);
}

.logo {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

.deals-text {
  display: block;
  font-size: 28px;
  color: white !important;
  font-weight: 600;
}

.ashley-text {
  display: block;
  font-size: 44px;
  color: #ff4dd4 !important;
  font-weight: 900;
}

.coming-soon-subtitle {
  color: #ff4dd4;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 10px;
  text-transform: lowercase;
}

.tagline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

/* Content */
.content {
  background: rgba(255, 255, 255, 0.98);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.8s ease;
  margin-bottom: 40px;
  margin-top: 40px;
}

.headline {
  font-size: 42px;
  color: #1e3c72;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Countdown */
.countdown {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #ff4dd4 0%, #ec4899 100%);
  border-radius: 12px;
  color: white;
}

.countdown p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.timer-value {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.timer-label {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
  text-transform: uppercase;
}

/* Signup Section */
.signup-section {
  margin: 40px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #ff4dd4;
}

.cta-heading {
  font-size: 24px;
  color: #1e3c72;
  margin-bottom: 10px;
  font-weight: 800;
}

.cta-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.email-form {
  margin-bottom: 15px;
}

.form-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.email-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.email-form input:focus {
  outline: none;
  border-color: #ff4dd4;
  box-shadow: 0 0 0 3px rgba(255, 77, 212, 0.1);
}

.btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff4dd4 0%, #ec4899 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 77, 212, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.form-note {
  font-size: 12px;
  color: #999;
}

.signup-stats {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.stat {
  display: inline-block;
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #ff4dd4;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.form-message {
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 10px;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Features */
.features {
  margin-top: 40px;
  text-align: left;
}

.features h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e3c72;
  text-align: center;
}

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

.feature-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ff4dd4;
}

.feature-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.feature-item h4 {
  color: #ff4dd4;
  margin-bottom: 8px;
  font-size: 14px;
}

.feature-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* Feature Badges */
.feature-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.badge {
  background: linear-gradient(135deg, #ff4dd4 0%, #ec4899 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.badge-icon {
  font-size: 18px;
}

/* Hero Section */
.hero-section {
  margin-bottom: 40px;
}

.headline-line {
  display: block;
}

.headline-line.highlight {
  color: #ff4dd4;
}

.subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin: 25px 0 30px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accent {
  color: #ff4dd4;
  font-weight: 600;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 77, 212, 0.2);
  border-color: #ff4dd4;
}

.feature-icon-wrapper {
  font-size: 36px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 16px;
  color: #1e3c72;
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.section-title {
  font-size: 28px;
  color: #1e3c72;
  margin-bottom: 30px;
  font-weight: 800;
}

/* Social Proof */
.social-proof {
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 77, 212, 0.1);
  border-radius: 12px;
}

.proof-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e3c72;
  font-weight: 600;
}

.proof-icon {
  color: #ff4dd4;
  font-size: 20px;
  font-weight: bold;
}

/* Footer */
.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 14px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.social-link {
  color: #ff4dd4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ec4899;
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 15px 10px;
  }

  .header {
    margin-bottom: 30px;
    margin-top: 10px;
  }

  .logo-wrapper {
    padding: 20px 15px;
  }

  .ashley-image {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }

  .logo {
    font-size: 24px;
  }

  .deals-text {
    font-size: 20px;
  }

  .ashley-text {
    font-size: 32px;
  }

  .coming-soon-subtitle {
    font-size: 14px;
  }

  .headline {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .subtitle {
    font-size: 16px;
    margin: 15px 0 25px 0;
  }

  .description {
    font-size: 16px;
  }

  .content {
    padding: 30px 20px;
    margin-top: 15px;
    margin-bottom: 20px;
  }

  .form-wrapper {
    flex-direction: column;
  }

  .timer {
    gap: 10px;
  }

  .timer-item {
    min-width: 60px;
  }

  .timer-value {
    font-size: 24px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}
