:root {
  --pale-blue: hsl(225, 100%, 94%);
  --bright-blue: hsl(245, 75%, 52%);
  --very-pale-blue: hsl(225, 100%, 98%);
  --desaturated-blue: hsl(224, 23%, 55%);
  --dark-blue: hsl(223, 47%, 23%);
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  font-family: 'Red Hat Display', sans-serif;
  background-image: url('images/pattern-background-mobile.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: hsl(225, 100%, 94%);
}

main {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}


.order-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(56, 42, 225, 0.1);
  width: 90%;
  max-width: 375px;
  overflow: hidden;
  text-align: center;
}

.hero-img {
  width: 100%;
  display: block;
}

.order-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}

h2 {
  color: var(--dark-blue);
  font-weight: 900;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.description {
  color: var(--desaturated-blue);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.plan-box {
  background: var(--very-pale-blue);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.music-icon {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
}

.plan-details {
  flex: 1;
  text-align: left;
}

.plan-title {
  display: block;
  font-weight: 900;
  color: var(--dark-blue);
}

.plan-price {
  display: block;
  color: var(--desaturated-blue);
  font-size: 0.95rem;
}

.change-link {
  color: var(--bright-blue);
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.change-link:hover {
  color: #766cf1;
}

.payment-btn {
  width: 100%;
  background: var(--bright-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 1rem 0;
  margin-bottom: 1rem;
  box-shadow: 0 8px 16px rgba(56, 42, 225, 0.15);
  cursor: pointer;
  transition: background 0.2s;
}

.payment-btn:hover {
  background: #766cf1;
}

.cancel-btn {
  width: 100%;
  background: none;
  color: var(--desaturated-blue);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  padding: 0.75rem 0;
  cursor: pointer;
  transition: color 0.2s;
}

.cancel-btn:hover {
  color: var(--dark-blue);
}

@media (max-width: 375px) {
  .order-card {
    max-width: 100vw;
    border-radius: 0;
  }
  .order-content {
    padding: 1.5rem 1rem 1rem 1rem;
  }
}
