/* WINX Landing Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Header */
.header {
  background-color: #1a1a2e;
  padding: 12px 24px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ffffff;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 76, 108, 0.85), rgba(193, 53, 132, 0.85));
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 400px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 320px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* About Section */
.about {
  padding: 80px 24px;
  background: linear-gradient(180deg, #e8d5e0, #d4c5e0);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-bottom: 16px;
}

.section-header p {
  color: #6b7280;
  font-size: 0.875rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 0 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #8b5cf6;
}

.feature h3 {
  color: #8b5cf6;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Download Section */
.download {
  padding: 80px 24px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  text-align: center;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
}

.download h2 {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.download > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 40px;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #1a1a2e;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  min-width: 200px;
  transition: opacity 0.3s ease;
}

.store-btn:hover {
  opacity: 0.9;
}

.store-btn svg {
  width: 32px;
  height: 32px;
}

.store-btn-text {
  text-align: left;
}

.store-btn-text span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-btn-text strong {
  font-size: 1.125rem;
}

/* Contact Section */
.contact {
  padding: 80px 24px;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  text-align: center;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 32px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.social-icons svg {
  width: 24px;
  height: 24px;
}

.email-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.875rem;
  outline: none;
}

.email-form button {
  padding: 12px 32px;
  background-color: #e84c6c;
  color: #ffffff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #d63d5c;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    margin: 0 auto;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-image img {
    width: 250px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    flex-direction: column;
  }
}