/* ==========================================================================
   Yadi Yakında — Design System & Styles
   ========================================================================== */

:root {
  /* Color Palette — Dreamy Pastel Theme */
  --bg-gradient-start: #FBF7FD;
  --bg-gradient-mid: #F1EAFA;
  --bg-gradient-end: #FFEBF0;
  
  --primary-pink: #FF6B8B;
  --primary-coral: #FF8E72;
  --primary-purple: #845EC2;
  --primary-indigo: #6C5CE7;
  --primary-mint: #00C9A7;
  --primary-yellow: #FFC75F;

  --text-main: #2D253A;
  --text-muted: #6B6278;
  --text-light: #9B93A8;

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-hover: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-shadow: 0 16px 40px rgba(132, 94, 194, 0.12);
  --glass-glow: 0 0 30px rgba(255, 107, 139, 0.25);

  --card-bg: rgba(255, 255, 255, 0.65);
  --card-border: rgba(255, 255, 255, 0.8);

  --font-heading: 'Fredoka', cursive, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-smooth: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.2s ease;
}

/* Dark / Midnight Theme */
body.theme-midnight {
  --bg-gradient-start: #110B1E;
  --bg-gradient-mid: #1A122E;
  --bg-gradient-end: #221438;

  --text-main: #FAF5FF;
  --text-muted: #C0B7D2;
  --text-light: #8E84A6;

  --glass-bg: rgba(35, 24, 58, 0.65);
  --glass-bg-hover: rgba(45, 32, 74, 0.8);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  --glass-glow: 0 0 35px rgba(132, 94, 194, 0.4);

  --card-bg: rgba(30, 20, 50, 0.6);
  --card-border: rgba(255, 255, 255, 0.12);
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.5s ease, color 0.5s ease;
}

/* Canvases for Bubbles & Confetti */
#bubble-canvas, #confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

#confetti-canvas {
  z-index: 9999;
}

/* Ambient Floating Glow Blobs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: blob-float 16s ease-in-out infinite alternate;
}

.glow-1 {
  top: -10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.4) 0%, rgba(255, 142, 114, 0) 70%);
}

.glow-2 {
  bottom: 10%;
  left: -8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(132, 94, 194, 0.35) 0%, rgba(108, 92, 231, 0) 70%);
  animation-delay: -5s;
}

.glow-3 {
  top: 40%;
  right: 25%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.25) 0%, rgba(255, 199, 95, 0) 70%);
  animation-delay: -9s;
}

@keyframes blob-float {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(35px) scale(1.08) rotate(45deg); }
  100% { transform: translateY(-25px) scale(0.95) rotate(-30deg); }
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */

.top-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  transform: scale(1.06) rotate(-2deg);
}

.logo-emoji {
  font-size: 2rem;
  display: inline-block;
  animation: gentle-tilt 3s ease-in-out infinite;
}

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

/* Glass Buttons */
.glass-btn {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.glass-btn:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(132, 94, 194, 0.2);
}

.glass-btn:active {
  transform: translateY(0) scale(0.97);
}

.icon-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  position: relative;
}

.btn-tooltip {
  display: none;
}

.highlight-btn {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(255, 107, 139, 0.35);
}

.highlight-btn:hover {
  background: linear-gradient(135deg, #ff5277, #7445c7);
  box-shadow: 0 12px 30px rgba(255, 107, 139, 0.5);
  color: #fff;
}

/* ==========================================================================
   Main Container & Hero Layout
   ========================================================================== */

.main-container {
  position: relative;
  z-index: 5;
  max-width: 1250px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 3.5rem;
  min-height: 75vh;
  padding: 2rem 0;
}

/* Mascot Column */
.mascot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mascot-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  user-select: none;
  perspective: 1000px;
}

.mascot-backdrop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.35) 0%, rgba(132, 94, 194, 0.25) 50%, transparent 75%);
  filter: blur(25px);
  z-index: 1;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.95; }
}

.floating-orbit-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.orbit-star {
  position: absolute;
  font-size: 1.6rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.star-1 {
  top: 10%;
  left: 8%;
  animation: orbit-float 3.5s ease-in-out infinite;
}

.star-2 {
  top: 18%;
  right: 10%;
  font-size: 1.8rem;
  animation: orbit-float 4.2s ease-in-out infinite 0.8s;
}

.star-3 {
  bottom: 25%;
  left: 5%;
  animation: orbit-float 3.8s ease-in-out infinite 1.5s;
}

.star-4 {
  bottom: 22%;
  right: 6%;
  animation: orbit-float 4.5s ease-in-out infinite 0.5s;
}

@keyframes orbit-float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-15px) rotate(15deg) scale(1.15); }
}

.mascot-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.yadi-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(132, 94, 194, 0.25));
  animation: float-mascot 4.5s ease-in-out infinite;
  transform-origin: center bottom;
  transition: filter 0.3s ease;
}

.mascot-card:hover .yadi-img {
  filter: drop-shadow(0 25px 35px rgba(255, 107, 139, 0.35)) brightness(1.03);
}

@keyframes float-mascot {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-14px) rotate(-1.5deg);
  }
  75% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

/* Happy Bounce Animation on Click */
.mascot-card.happy-jump .yadi-img {
  animation: mascot-jump 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

@keyframes mascot-jump {
  0% { transform: scale(1, 1) translateY(0); }
  25% { transform: scale(1.15, 0.85) translateY(10px); }
  50% { transform: scale(0.9, 1.2) translateY(-40px) rotate(-5deg); }
  75% { transform: scale(1.05, 0.95) translateY(-5px) rotate(3deg); }
  100% { transform: scale(1, 1) translateY(0) rotate(0deg); }
}

.mascot-shadow {
  width: 240px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(100, 70, 140, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  margin-top: -15px;
  z-index: 1;
  animation: shadow-scale 4.5s ease-in-out infinite;
}

@keyframes shadow-scale {
  0%, 100% { transform: scale(1); opacity: 0.22; }
  25% { transform: scale(0.85); opacity: 0.12; }
  75% { transform: scale(0.92); opacity: 0.16; }
}

/* Speech Bubble */
.speech-bubble {
  position: absolute;
  top: 5%;
  right: -5%;
  background: var(--glass-bg-hover);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.65rem 1.1rem;
  border-radius: 20px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--glass-border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-purple);
  white-space: nowrap;
  pointer-events: none;
  animation: speech-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 4;
}

@keyframes speech-pop {
  0% { transform: scale(0) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.click-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hint-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-pink);
  animation: blink-dot 1.5s infinite;
}

@keyframes blink-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ==========================================================================
   Content Column (Headline, Timer, Subscribe)
   ========================================================================== */

.content-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-purple);
  box-shadow: var(--glass-shadow);
}

.pulsing-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-mint);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-mint);
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--primary-mint); }
  50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 18px var(--primary-mint); }
}

/* Main Title */
.main-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: baseline;
}

.title-highlight {
  color: var(--text-main);
  position: relative;
}

.title-gradient {
  background: linear-gradient(135deg, #FF5376 0%, #845EC2 50%, #00C9A7 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-description strong {
  color: var(--primary-pink);
  font-weight: 700;
}

/* ==========================================================================
   Countdown Timer
   ========================================================================== */

.countdown-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

.countdown-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  min-width: 76px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.countdown-card:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--primary-pink);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1;
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-top: 0.35rem;
}

.countdown-separator {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-pink);
  animation: blink-dot 1s infinite;
}

/* ==========================================================================
   Notify Form Card (Glassmorphic)
   ========================================================================== */

.notify-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 2rem 2.2rem;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
}

.notify-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple), var(--primary-mint));
}

.notify-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-main);
}

.notify-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  position: relative;
}

.input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 1.1rem;
  font-size: 1.2rem;
  pointer-events: none;
  opacity: 0.8;
}

.subscribe-form input {
  width: 100%;
  padding: 1rem 1rem 1rem 3.1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

body.theme-midnight .subscribe-form input {
  background: rgba(20, 12, 34, 0.8);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.subscribe-form input:focus {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(255, 107, 139, 0.2);
  background: #ffffff;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 107, 139, 0.35);
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 107, 139, 0.5);
}

.submit-btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Feedback Message */
.form-feedback {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(0, 201, 167, 0.15);
  border: 1px solid rgba(0, 201, 167, 0.4);
  color: var(--text-main);
  animation: speech-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-feedback.hidden {
  display: none;
}

.feedback-icon {
  font-size: 2rem;
}

.feedback-content {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
}

.feedback-content strong {
  color: #008f75;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

body.theme-midnight .feedback-content strong {
  color: var(--primary-mint);
}

/* Feature Pills Row */
.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

body.theme-midnight .mini-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.mini-pill:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
  color: var(--primary-purple);
}

/* ==========================================================================
   Features Preview Section (3 Glass Cards)
   ========================================================================== */

.features-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 4rem;
}

.preview-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.preview-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-hover);
  box-shadow: 0 20px 40px rgba(132, 94, 194, 0.2);
  border-color: var(--primary-pink);
}

.card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 107, 139, 0.2), rgba(132, 94, 194, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.preview-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.preview-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-main);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.toast.hidden {
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}

body.theme-midnight .footer {
  background: rgba(17, 11, 30, 0.6);
}

.footer-content {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bunny {
  font-size: 1.3rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-chip {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.social-chip:hover {
  background: var(--primary-pink);
  color: #fff;
  transform: translateY(-2px);
}

.footer-sep {
  opacity: 0.4;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    min-height: auto;
  }

  .mascot-col {
    order: -1;
  }

  .content-col {
    align-items: center;
  }

  .status-badge {
    align-self: center;
  }

  .main-title {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .countdown-container {
    justify-content: center;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .pills-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding: 1.2rem 1.5rem;
  }

  .main-container {
    padding: 0.5rem 1.2rem 3rem;
  }

  .mascot-card {
    max-width: 320px;
  }

  .yadi-img {
    max-width: 280px;
  }

  .countdown-card {
    min-width: 62px;
    padding: 0.7rem 0.6rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .countdown-separator {
    font-size: 1.3rem;
  }

  .notify-card {
    padding: 1.5rem 1.2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
