@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {

  --primary: #f23e1b;
  --primary-dark: #a52a12;
  --secondary: #ffca24;
  --white: #ffffff;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.65);
}

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

body {
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
}
a {
  color: inherit;
  text-decoration: none;
}

/* ============================
  LAYOUT
============================ */
.promo-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.promo-content {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ============================
  LOGO
============================ */
.promo-logo {
  width: 200px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 30px;
}
/* ============================
  TITLE
============================ */
.promo-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.15;
}
.promo-title span {
  color: var(--secondary);
}
/* ============================
  DESCRIPTION
============================ */
.promo-description {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-light);
}
.promo-description strong {
  color: var(--white);
  font-weight: 700;
}
.promo-description .highlight {
  color: var(--secondary);
  font-weight: 700;
}
.promo-description a{
  border-bottom: 4px solid var(--white);
}

/* ============================
  BUTTONS
============================ */
.promo-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: 30px;
}
.promo-btn {
  padding: 0;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: max-content;
}
.promo-btn img{
  display: block;
  max-width: 250px;
  height: auto;
}
.promo-btn:hover {
  transform: translateY(-2px);
}
.promo-btn-play {
  background: var(--secondary);
  color: #1d1d1d;
}
.promo-btn-apple {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.promo-content .promo-terms .app-link{
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: none;
}
/* ============================
  DESKTOP
============================ */
@media (min-width: 768px) {
  .promo-title {
    font-size: 2.75rem;
  }
  .promo-description {
    font-size: 1.35rem;
  }
  .promo-buttons {
    flex-direction: row;
  }
  .promo-btn {
    flex: 1;
  }
}
.promo-login-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 700;
  position: fixed;
  bottom: 5px;
  right: 20px;
  opacity: 0.6;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.promo-login-link:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .promo-login-link {
    font-size: 0.8rem;
    padding: 8px 12px;
    bottom: 15px;
    right: 15px;
  }
}