/* ==========================================================================
   ALTAF ZARI HOUSE - FULLY RESPONSIVE LUXURY COMING SOON BANNER
   Viewport-Fit & Aspect Ratio Optimized (Mobile Portrait, Landscape, Tablet, Desktop, Ultrawide)
   ========================================================================== */

/* --------------------------------------------------
   1. Design Variables
   -------------------------------------------------- */
:root {
  --bg-deep-emerald: #041411;
  --bg-dark-emerald: #07211d;
  --bg-core-teal: #0a2e28;
  --bg-darkest: #020a08;

  /* 24K Gold Metallurgy */
  --gold-highlight: #fff7c7;
  --gold-bright: #fae17b;
  --gold-primary: #d4af37;
  --gold-antique: #aa771c;
  --gold-bronze: #785310;
  --gold-metallic-grad: linear-gradient(135deg, #fff7c7 0%, #f9e27c 25%, #d4af37 50%, #aa771c 80%, #ffd966 100%);
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-glow-intense: rgba(250, 225, 123, 0.7);

  /* Typography */
  --font-display: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
  --font-cinzel: 'Cinzel', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-royal: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------
   2. Reset & Full-Viewport Container Setup
   -------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body.banner-body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-darkest);
  color: #ffffff;
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 40%, var(--bg-dark-emerald) 0%, var(--bg-deep-emerald) 50%, var(--bg-darkest) 90%);
}

::selection {
  background-color: var(--gold-primary);
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  min-height: 44px; /* Accessible minimum touch target rule */
}

/* --------------------------------------------------
   3. Canvas Background & Ambient Lighting FX
   -------------------------------------------------- */
#blast-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.light-beam {
  position: fixed;
  top: -20%;
  width: min(70vw, 70vh);
  height: 140vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: blur(50px);
}

.beam-left {
  left: -20%;
  background: conic-gradient(from 120deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.4) 60deg, transparent 120deg);
  animation: rotateBeam 24s linear infinite;
}

.beam-right {
  right: -20%;
  background: conic-gradient(from 280deg at 50% 50%, transparent 0deg, rgba(38, 208, 178, 0.3) 60deg, transparent 120deg);
  animation: rotateBeamRev 28s linear infinite;
}

.radial-vortex {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(85vw, 85vh);
  height: min(85vw, 85vh);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(10, 46, 40, 0.12) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: pulseVortex 6s ease-in-out infinite alternate;
}

/* --------------------------------------------------
   4. Fluid Stage Layout & Top Controls
   -------------------------------------------------- */
.coming-soon-stage {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: min(92vw, 1080px);
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(0.75rem, 2vh, 1.8rem) clamp(0.75rem, 2.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.stage-controls {
  position: absolute;
  top: clamp(0.5rem, 2vh, 1.2rem);
  right: clamp(0.5rem, 2vw, 1.2rem);
  display: flex;
  gap: 0.5rem;
  z-index: 30;
}

.ctrl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  min-height: 38px;
  background: rgba(7, 33, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: var(--gold-bright);
  font-size: clamp(0.7rem, 1.2vw, 0.78rem);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.ctrl-btn:hover, .ctrl-btn:focus-visible {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 15px var(--gold-glow);
}

.ctrl-btn strong {
  color: #ffffff;
}

.pulse-border {
  animation: pulseBorderGlow 2s infinite alternate;
}

/* --------------------------------------------------
   5. BANNER CORE & ROYAL TAG
   -------------------------------------------------- */
.banner-core {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto 0;
}

.royal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.25rem, 0.8vh, 0.4rem) clamp(0.8rem, 2vw, 1.2rem);
  background: rgba(10, 46, 40, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 100px;
  font-size: clamp(0.65rem, 1.2vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-bright);
  margin-bottom: clamp(0.6rem, 1.8vh, 1.4rem);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  animation: fadeInDown 0.8s ease;
  white-space: nowrap;
}

.tag-diamond {
  font-size: 0.55rem;
  color: var(--gold-highlight);
}

/* --------------------------------------------------
   6. DYNAMIC ASPECT-RATIO 3D LOGO & SHOCKWAVES
   -------------------------------------------------- */
.logo-blast-container {
  position: relative;
  /* Fluid sizing based on both viewport width and height to fit any aspect ratio */
  width: clamp(130px, min(30vw, 25vh), 230px);
  height: clamp(130px, min(30vw, 25vh), 230px);
  margin: 0 auto clamp(0.6rem, 2vh, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  perspective: 1000px;
  transition: transform 0.3s ease;
}

.logo-blast-container:hover {
  transform: scale(1.04);
}

/* Continuously Blasting Shockwaves Radiating from Logo */
.shockwave-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--gold-bright);
  pointer-events: none;
  opacity: 0;
}

.ring-1 {
  animation: shockwavePulse 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.ring-2 {
  animation: shockwavePulse 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite 1s;
}

.ring-3 {
  animation: shockwavePulse 3s cubic-bezier(0.1, 0.8, 0.3, 1) infinite 2s;
}

/* Rotating Filigree & Orbiting Sparks */
.filigree-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.outer-orbit {
  width: 118%;
  height: 118%;
  border: 1.5px dashed rgba(250, 225, 123, 0.55);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  animation: rotateOrbit 16s linear infinite;
}

.inner-orbit {
  width: 108%;
  height: 108%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: rotateOrbitRev 12s linear infinite;
}

.orbit-spark {
  position: absolute;
  width: clamp(5px, 1vw, 8px);
  height: clamp(5px, 1vw, 8px);
  border-radius: 50%;
  background: var(--gold-highlight);
  box-shadow: 0 0 12px var(--gold-bright), 0 0 20px #ffffff;
}

.s1 { top: -4px; left: 50%; }
.s2 { bottom: 15%; left: 10%; }
.s3 { top: 20%; right: 10%; }

/* Intense Gold Glow behind logo */
.logo-aura-glow {
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 225, 123, 0.5) 0%, rgba(212, 175, 55, 0.3) 40%, transparent 75%);
  filter: blur(20px);
  animation: pulseLogoGlow 3s ease-in-out infinite alternate;
}

/* The Logo Frame Bezel */
.logo-bezel {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  padding: clamp(3px, 0.6vw, 5px);
  background: var(--gold-metallic-grad);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.55);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-elastic);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #041411;
}

.logo-shimmer-sweep {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: rotate(35deg);
  animation: logoSheenSweep 5s infinite ease-in-out;
  pointer-events: none;
}

/* Floating Pills */
.floating-pill {
  position: absolute;
  padding: 0.35rem 0.75rem;
  background: rgba(4, 20, 17, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;
  font-size: clamp(0.65rem, 1.1vw, 0.72rem);
  font-weight: 600;
  color: var(--gold-highlight);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7), 0 0 15px var(--gold-glow);
  white-space: nowrap;
  animation: floatPill 3.5s ease-in-out infinite alternate;
  z-index: 12;
}

.pill-left {
  top: 15%;
  left: -20px;
}

.pill-right {
  bottom: 15%;
  right: -20px;
  animation-delay: -1.8s;
}

/* --------------------------------------------------
   7. GRAND TYPOGRAPHY & COMING SOON BLAST TEXT
   -------------------------------------------------- */
.typography-cluster {
  max-width: min(90vw, 840px);
  margin-bottom: clamp(0.6rem, 2vh, 1.6rem);
}

.coming-soon-wrapper {
  position: relative;
  margin-bottom: clamp(0.2rem, 0.8vh, 0.5rem);
}

.coming-soon-title {
  font-family: var(--font-display);
  /* Uses both vw and vh clamp so text is never cut off on any aspect ratio */
  font-size: clamp(2.4rem, min(9vw, 8.5vh), 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.2rem);
  flex-wrap: wrap;
}

.word-coming, .word-soon {
  background: var(--gold-metallic-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(212, 175, 55, 0.55));
  animation: goldTextFlow 4s ease infinite;
}

.title-reflection-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 15px;
  background: radial-gradient(ellipse, rgba(250, 225, 123, 0.35) 0%, transparent 75%);
  filter: blur(8px);
}

.sub-headline {
  font-family: var(--font-cinzel);
  font-size: clamp(0.85rem, min(2.5vw, 2.5vh), 1.25rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
  margin-bottom: clamp(0.3rem, 1vh, 0.6rem);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.tagline-text {
  font-size: clamp(0.82rem, min(1.8vw, 1.8vh), 1rem);
  color: #b5ccc5;
  line-height: 1.6;
  max-width: min(90vw, 620px);
  margin: 0 auto;
}

/* --------------------------------------------------
   8. ACTION CLUSTER (BLAST BUTTON & NOTIFY PILL)
   -------------------------------------------------- */
.action-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 1.5vh, 1.1rem);
  width: 100%;
  max-width: min(90vw, 540px);
  margin-bottom: clamp(0.6rem, 1.8vh, 1.5rem);
}

/* Grand Blast Button */
.blast-action-btn {
  width: 100%;
  max-width: 420px;
  padding: clamp(0.75rem, 1.8vh, 1.1rem) clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(135deg, #124036 0%, #061e19 50%, #175246 100%);
  border: 2px solid var(--gold-bright);
  border-radius: 50px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, min(2vw, 2vh), 1.1rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.45), inset 0 0 18px rgba(250, 225, 123, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-elastic);
}

.blast-action-btn:hover, .blast-action-btn:focus-visible {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 0 45px rgba(250, 225, 123, 0.7), inset 0 0 25px rgba(212, 175, 55, 0.45);
  border-color: #ffffff;
}

.blast-action-btn:active {
  transform: scale(0.98);
}

.btn-sparkle-icon {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  animation: sparkleTwitch 1.5s infinite alternate;
}

.btn-text {
  background: var(--gold-metallic-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Single Line Notify Pill */
.notify-form {
  width: 100%;
}

.notify-pill {
  display: flex;
  align-items: center;
  background: rgba(3, 16, 13, 0.92);
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  border-radius: 50px;
  padding: 3px 5px 3px 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.notify-pill:focus-within {
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-glow);
}

.notify-icon {
  color: var(--gold-bright);
  font-size: 1rem;
  margin-right: 6px;
}

.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  padding: 0.4rem 0;
  min-width: 0; /* Prevents overflow in flex container */
}

.notify-input::placeholder {
  color: #7d9690;
}

.notify-submit-btn {
  background: var(--gold-metallic-grad);
  border: none;
  color: #041411;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.4vw, 0.85rem);
  letter-spacing: 0.04em;
  padding: 0.55rem 1.15rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.notify-submit-btn:hover, .notify-submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 15px var(--gold-bright);
}

.notify-feedback {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  min-height: 1.1rem;
  font-weight: 500;
}

.notify-feedback.success {
  color: #4ade80;
}

.notify-feedback.error {
  color: #f87171;
}

/* --------------------------------------------------
   9. BOTTOM HERITAGE SEAL
   -------------------------------------------------- */
.bottom-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: clamp(0.62rem, 1.1vw, 0.7rem);
  letter-spacing: 0.12em;
  color: #8faea6;
  font-weight: 600;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
}

.seal-dot {
  color: var(--gold-bright);
}

/* --------------------------------------------------
   10. TOAST NOTIFICATION
   -------------------------------------------------- */
.toast {
  position: fixed;
  bottom: clamp(1rem, 3vh, 2rem);
  z-index: 9999;
  background: rgba(7, 33, 29, 0.95);
  border: 1px solid var(--gold-bright);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: clamp(0.78rem, 1.3vw, 0.85rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-elastic);
  max-width: 90vw;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
   11. KEYFRAME ANIMATIONS
   -------------------------------------------------- */
@keyframes shockwavePulse {
  0% {
    width: 90%;
    height: 90%;
    opacity: 0.9;
    border-width: 3px;
  }
  100% {
    width: 250%;
    height: 250%;
    opacity: 0;
    border-width: 1px;
  }
}

@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateOrbitRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes rotateBeam {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateBeamRev {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulseLogoGlow {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.25); opacity: 0.8; }
}

@keyframes pulseVortex {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.15; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.35; }
}

@keyframes logoSheenSweep {
  0% { transform: translateX(-150%) rotate(35deg); }
  30%, 100% { transform: translateX(150%) rotate(35deg); }
}

@keyframes floatPill {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

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

@keyframes sparkleTwitch {
  0% { transform: scale(0.9) rotate(0deg); }
  100% { transform: scale(1.3) rotate(15deg); }
}

@keyframes pulseBorderGlow {
  0% { border-color: rgba(212, 175, 55, 0.3); }
  100% { border-color: var(--gold-bright); box-shadow: 0 0 15px var(--gold-glow); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------
   12. ASPECT-RATIO & ADAPTIVE BREAKPOINTS
   -------------------------------------------------- */

/* Landscape Orientation on Mobile / Short Screens (e.g. height < 580px) */
@media (max-height: 580px) {
  .coming-soon-stage {
    padding: 0.4rem 1rem;
  }
  .stage-controls {
    top: 0.4rem;
    right: 0.8rem;
  }
  .royal-tag {
    margin-bottom: 0.4rem;
    padding: 0.2rem 0.7rem;
  }
  .logo-blast-container {
    width: clamp(90px, 18vh, 130px);
    height: clamp(90px, 18vh, 130px);
    margin-bottom: 0.4rem;
  }
  .floating-pill {
    display: none;
  }
  .typography-cluster {
    margin-bottom: 0.4rem;
  }
  .coming-soon-title {
    font-size: clamp(1.8rem, 6vh, 2.6rem);
  }
  .sub-headline {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }
  .tagline-text {
    display: none; /* Hide secondary tagline in ultra-short landscape to avoid scroll */
  }
  .action-cluster {
    margin-bottom: 0.4rem;
    gap: 0.4rem;
  }
  .blast-action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .notify-pill {
    padding: 2px 4px 2px 10px;
  }
  .bottom-seal {
    font-size: 0.58rem;
    padding-bottom: 0;
  }
}

/* Tablet & Mobile Portrait Adjustments */
@media (max-width: 768px) {
  .stage-controls {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 0.8rem;
    justify-content: center;
  }
  .floating-pill {
    display: none;
  }
}

/* Mobile Screen Width (< 480px) */
@media (max-width: 480px) {
  .notify-pill {
    flex-direction: column;
    border-radius: 14px;
    padding: 6px;
    gap: 6px;
  }
  .notify-icon {
    display: none;
  }
  .notify-input {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }
  .notify-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem;
  }
}

/* Strict 320px Width Rule Compliance */
@media (max-width: 360px) {
  .coming-soon-stage {
    padding: 0.6rem 0.5rem;
  }
  .royal-tag {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.6rem;
  }
  .coming-soon-title {
    font-size: 2rem;
    gap: 0.4rem;
  }
  .sub-headline {
    font-size: 0.78rem;
  }
  .blast-action-btn {
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
  }
  .bottom-seal {
    font-size: 0.58rem;
    gap: 0.3rem;
  }
}

/* Ultra-wide & 4K Displays */
@media (min-width: 2000px) {
  .coming-soon-stage {
    max-width: 1400px;
  }
  .logo-blast-container {
    width: 300px;
    height: 300px;
  }
  .coming-soon-title {
    font-size: 6.5rem;
  }
  .sub-headline {
    font-size: 1.8rem;
  }
  .tagline-text {
    font-size: 1.3rem;
    max-width: 850px;
  }
  .blast-action-btn {
    max-width: 550px;
    padding: 1.4rem 2.8rem;
    font-size: 1.4rem;
  }
}
