:root {
  --jellycat-teal: #29b8cc;
  --jellycat-teal-dark: #1a9aad;
  --page-bg: #eaf8fb;
  --text-primary: #2d2d2d;
  --text-muted: #666666;
  --white: #ffffff;
  --border-light: #c8edf3;
  --radius: 10px;
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--page-bg);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
}

/* Main container */
.main-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--page-bg);
}

/* Background decorations */
.background-decorations {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-icon {
  position: absolute;
  opacity: 0.12;
  color: var(--jellycat-teal);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes drift {
  0%, 100% { transform: translate(0px, 0px); }
  33% { transform: translate(4px, -6px); }
  66% { transform: translate(-3px, -4px); }
}

/* Countdown Banner */
.countdown-banner {
  width: 100%;
  background-color: var(--jellycat-teal);
  color: var(--white);
  text-align: center;
  padding: 12px 12px;
  position: relative;
  z-index: 1;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.clock-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}

.banner-text {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.4;
}

.time-display {
  font-weight: 900;
  color: var(--white);
}

.banner-subtitle {
  font-size: 10px;
  margin-top: 4px;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

/* Content wrapper */
.content-wrapper {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

/* Logo section */
.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background-color: var(--page-bg);
  width: 100%;
}

.logo-image {
  width: 85px;
  height: auto;
  display: block;
  background: transparent;
}

/* Gift card section */
.gift-card-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  width: 100%;
}

.gift-card-wrapper {
  position: relative;
  animation: swing 3s ease-in-out infinite;
  transform-origin: center top;
}

.gift-card-image {
  width: 200px;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

@keyframes swing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg) translateY(2px); }
}

/* Headline section */
.headline-section {
  text-align: center;
  padding: 8px 16px 8px 16px;
  width: 100%;
}

.headline-section h1 {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
  word-break: break-word;
}

.subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.teal-text {
  color: var(--jellycat-teal);
}

/* Steps container */
.steps-container {
  width: 100%;
  padding: 0 16px 8px 16px;
}

.steps-list {
  width: 100%;
  border: 1.5px solid var(--jellycat-teal);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--page-bg);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  background: none;
  font-size: 11px;
  color: var(--text-primary);
  text-align: left;
  cursor: default;
  line-height: 1.4;
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--jellycat-teal-dark);
  color: var(--white);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.step-icon {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--jellycat-teal-dark);
}

.step-text {
  flex: 1;
  font-weight: 400;
  color: var(--text-primary);
}

/* CTA section */
.cta-section {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cta-button {
  padding: 10px 32px;
  border-radius: 24px;
  background-color: var(--jellycat-teal);
  color: var(--white);
  font-weight: bold;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 3px 10px rgba(41, 184, 204, 0.4);
  transition: transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.95);
}

.cta-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
}

/* Footer */
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 32px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--jellycat-teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icon svg {
  width: 10px;
  height: 10px;
}

.social-icon:hover {
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

.copyright p {
  margin: 2px 0;
}

.disclaimer {
  width: 100%;
  max-width: 360px;
  background-color: #d7f3f8;
  border-radius: 8px;
  padding: 8px;
  margin-top: 4px;
}

.disclaimer p {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .content-wrapper {
    padding: 0 8px;
  }

  .headline-section {
    padding: 6px 12px;
  }

  .steps-container {
    padding: 0 12px 6px 12px;
  }

  .cta-section {
    padding: 12px;
  }

  .footer {
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .social-icons {
    gap: 16px;
  }

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

  .social-icon svg {
    width: 8px;
    height: 8px;
  }
}
