:root {
  --purple-primary: #4B2E6F;
  --purple-dark: #3A1D5A;
  --gold: #E6B800;
  --text-light: #FFFFFF;
  --text-dark: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--purple-primary);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

header {
  text-align: center;
  padding: 2rem 0;
  width: 100%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin: 0 auto;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  gap: 2rem;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: var(--gold);
  line-height: 1.1;
  font-weight: 700;
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.download-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.download-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 700;
}

.download-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
}

.btn {
  display: inline-block;
  background-color: var(--gold);
  color: var(--purple-dark);
  text-decoration: none;
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 25px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

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

.out-now-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--gold);
  color: var(--purple-dark);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  line-height: 1;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
  text-align: center;
  margin-top: auto;
  padding: 2rem 0;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .download-options {
    padding: 0 1rem;
  }

  .download-card {
    margin: 0 auto;
  }

  .out-now-badge {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
    top: -10px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 10px;
  }

  .hero {
    gap: 1.5rem;
  }

  .download-card {
    padding: 2rem 1.5rem;
  }
} 