@import url('https://fonts.googleapis.com/css2?family=Koulen&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg-dark: #030306;
  --bg-card: rgba(14, 14, 20, 0.7);
  --gold-primary: #f5d547;
  --gold-dark: #c9a227;
  --gold-glow: rgba(245, 213, 71, 0.25);
  --gold-border: rgba(245, 213, 71, 0.3);
  --text-white: #f4f0e6;
  --text-muted: rgba(244, 240, 230, 0.6);
  --text-dim: rgba(244, 240, 230, 0.4);
  --font-display: 'Koulen', sans-serif, system-ui;
  --font-sans: 'Outfit', sans-serif, system-ui;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  position: relative;
}

/* Background Animated Effects */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.glow-orb-1 {
  top: -10%;
  left: -10%;
  width: 45vh;
  height: 45vh;
  background: rgba(245, 213, 71, 0.07);
}

.glow-orb-2 {
  top: 30%;
  right: -15%;
  width: 40vh;
  height: 40vh;
  background: rgba(201, 162, 39, 0.06);
  animation-delay: -6s;
}

.glow-orb-3 {
  bottom: -5%;
  left: 20%;
  width: 35vh;
  height: 35vh;
  background: rgba(245, 213, 71, 0.05);
  animation-delay: -12s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-size: 60px 60px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  opacity: 0.8;
}

.gold-dust span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  opacity: 0;
  animation: dust 8s infinite ease-in-out;
}

.gold-dust span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.gold-dust span:nth-child(2) { left: 25%; top: 75%; animation-delay: 1.5s; }
.gold-dust span:nth-child(3) { left: 45%; top: 40%; animation-delay: 3s; }
.gold-dust span:nth-child(4) { left: 65%; top: 85%; animation-delay: 4.5s; }
.gold-dust span:nth-child(5) { left: 80%; top: 15%; animation-delay: 6s; }
.gold-dust span:nth-child(6) { left: 90%; top: 60%; animation-delay: 2.2s; }

@keyframes dust {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  50% { opacity: 0.8; transform: translateY(-30px) scale(1.2); }
  100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(3, 3, 6, 0.85) 100%);
}

/* Glassmorphic Header */
.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(3, 3, 6, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 3.2rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .logo-img {
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(245, 213, 71, 0.4));
  transform: scale(1.02);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  transition: all 0.25s ease;
  opacity: 0.85;
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold-primary);
  background: rgba(245, 213, 71, 0.08);
}

.nav-badge-btn {
  margin-left: 0.5rem;
  border: 1px solid var(--gold-border);
  background: rgba(245, 213, 71, 0.1);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(245, 213, 71, 0.14);
  transition: all 0.3s ease;
}

.nav-badge-btn:hover {
  background: rgba(245, 213, 71, 0.2);
  border-color: rgba(245, 213, 71, 0.6);
  box-shadow: 0 0 28px rgba(245, 213, 71, 0.3);
  transform: translateY(-1px);
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  border-color: var(--gold-border);
  background: rgba(245, 213, 71, 0.15);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Typography Utility Classes */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #fff2a1 0%, #f5d547 50%, #c9a227 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5d547 0%, #d4ac1d 100%);
  color: #030306;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(245, 213, 71, 0.25);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(245, 213, 71, 0.45);
  filter: brightness(1.1);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 213, 71, 0.05);
  color: var(--gold-primary);
  border: 1px solid var(--gold-border);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: rgba(245, 213, 71, 0.18);
  border-color: rgba(245, 213, 71, 0.6);
  box-shadow: 0 0 24px rgba(245, 213, 71, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

/* Sections */
main {
  position: relative;
  z-index: 10;
  flex: 1;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 4.25rem);
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  z-index: -1;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #030306 0%, rgba(3, 3, 6, 0.88) 50%, rgba(3, 3, 6, 0.4) 100%);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold-border);
  background: rgba(245, 213, 71, 0.08);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  box-shadow: 0 0 24px rgba(245, 213, 71, 0.12);
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

/* CA Banner Bar */
.ca-bar {
  position: relative;
  z-index: 20;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(18, 16, 10, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%);
  backdrop-filter: blur(12px);
  padding: 0.9rem 1.5rem;
}

.ca-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ca-badge-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ca-tag {
  border: 1px solid rgba(245, 213, 71, 0.35);
  background: rgba(245, 213, 71, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.ca-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.ca-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ca-copy-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--gold-border);
  background: rgba(0, 0, 0, 0.6);
  padding: 0.4rem 0.6rem 0.4rem 1rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ca-copy-box:hover {
  border-color: rgba(245, 213, 71, 0.6);
  background: rgba(245, 213, 71, 0.08);
}

.ca-code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.ca-copy-btn {
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.ca-copy-box:hover .ca-copy-btn {
  filter: brightness(1.15);
  transform: scale(1.03);
}

.buy-pons-btn {
  border: 1px solid var(--gold-border);
  background: rgba(245, 213, 71, 0.1);
  padding: 0.55rem 1.1rem;
  border-radius: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.buy-pons-btn:hover {
  background: rgba(245, 213, 71, 0.25);
}

/* Sections Styling */
.section-wrapper {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5rem 1.5rem;
}

.section-container {
  max-width: 1150px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-transform: uppercase;
  line-height: 0.96;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Philosophy Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.quote-box {
  border-left: 2px solid var(--gold-border);
  padding-left: 1.25rem;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.quote-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
}

.mascot-frame {
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #08080c;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.mascot-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
}

.mascot-frame:hover img {
  transform: scale(1.04);
}

/* Principles List */
.principles-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.principle-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(20, 18, 12, 0.8) 0%, transparent 100%);
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.principle-item:hover {
  border-color: var(--gold-border);
  background: rgba(26, 22, 12, 0.9);
  transform: translateX(6px);
}

.principle-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: rgba(245, 213, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.principle-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* Interactive Mascot Talk Chat Section */
.talk-card {
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(16, 14, 10, 0.9) 0%, rgba(8, 8, 12, 0.95) 100%);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 0 50px rgba(245, 213, 71, 0.08);
  max-width: 800px;
  margin: 2rem auto 0;
}

.chat-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-bottom: 1.5rem;
}

.chat-bubble {
  max-width: 80%;
  padding: 0.9rem 1.25rem;
  border-radius: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-bubble-mascot {
  align-self: flex-start;
  background: rgba(245, 213, 71, 0.12);
  border: 1px solid var(--gold-border);
  color: #fff;
  border-bottom-left-radius: 0.25rem;
}

.chat-bubble-user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border-bottom-right-radius: 0.25rem;
}

.chat-input-row {
  display: flex;
  gap: 0.75rem;
}

.chat-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(245, 213, 71, 0.2);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.premium-card {
  display: block;
  text-decoration: none;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b10;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.premium-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(245, 213, 71, 0.12);
}

.card-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  background: #08080e;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.5s ease;
}

.premium-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: 1px solid var(--gold-border);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.premium-card:hover .card-title {
  color: var(--gold-primary);
}

.card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.card-action {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 213, 71, 0.7);
  margin-top: 1.25rem;
  transition: color 0.3s ease;
}

.premium-card:hover .card-action {
  color: var(--gold-primary);
}

/* How to Buy Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #141418 0%, #0c0c10 100%);
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
}

.step-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245, 213, 71, 0.1);
}

.step-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.step-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--gold-border);
  background: rgba(245, 213, 71, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  box-shadow: 0 0 20px rgba(245, 213, 71, 0.12);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(245, 213, 71, 0.7);
}

.step-info {
  flex: 1;
}

.step-title {
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
}

.step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Footer */
footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 1.5rem;
  background: #020204;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    text-align: left;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--gold-primary);
}

.footer-disclaimer {
  max-width: 650px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  background: var(--gold-primary);
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 0 30px rgba(245, 213, 71, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-msg.show {
  transform: translateY(0);
  opacity: 1;
}
