/*! Final Complete Tailwind-Style Utility CSS */

/* === Reset === */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: currentColor; }
html { line-height: 1.5; font-family: system-ui, sans-serif; }
body { margin: 0; line-height: inherit; background-color: #fff; color: #000; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: inherit; }
summary { cursor: pointer; }

/* === Display === */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* === Position === */
.top-0 { top: 0; }
.top-16 { top: 4rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }

/* === Sizing === */
.w-full { width: 100%; }
.w-36 { width: 9rem; }
.max-w-md { max-width: 28rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }

/* === Spacing === */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }

/* === Colors === */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-[#ff5c54] { background-color: #ff5c54; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-gray-300 { color: #d1d5db; }
.text-[#ff5c54] { color: #ff5c54; }
.text-[#ff5c54]\/80 { color: rgba(255, 92, 84, 0.8); }
.text-[#ff5c54]\/90 { color: rgba(255, 92, 84, 0.9); }

/* === Typography === */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.underline { text-decoration: underline; }
.hover\:underline:hover { text-decoration: underline; }

/* === Borders === */
.border { border-width: 1px; }
.border-white { border-color: #ffffff; }
.border-[#ff5c54] { border-color: #ff5c54; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* === Effects === */
.shadow { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.transition { transition: all 0.2s ease-in-out; }
.duration-300 { transition-duration: 300ms; }
.hover\:opacity-80:hover { opacity: 0.8; }

/* === Utility Fixes === */
.cursor-pointer { cursor: pointer; }
.focus\:outline-none:focus { outline: none; }

/* === Accordion / Dropdown === */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }
details[open] .group-open\:block { display: block; }
details[open] .group-open\:flex { display: flex; }
details[open] .group-open\:text-black { color: #000000; }

/* === Mobile Menu Toggle === */



/* === Click to Reveal Gift Code === */
#gift-code { transition: all 0.3s ease; user-select: none; }
#gift-code.revealed { color: #000; background-color: #fef08a; }

/* === Dark Mode === */
html[data-theme="dark"] body { background-color: #1a1a1a; color: #e5e7eb; }
html[data-theme="dark"] .bg-white { background-color: #2d2d2d; }
html[data-theme="dark"] .text-black { color: #e5e7eb; }

/* === Keyframes === */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.pulse-animation { animation: pulse 2s infinite; }



/* === Only Missing Required CSS for Proper Functionality === */

/* Accordion / Dropdown */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }
details[open] .group-open\:block { display: block; }
details[open] .group-open\:flex { display: flex; }
details[open] .group-open\:text-black { color: #000000; }

/* Click to Reveal Gift Code */
#gift-code {
  transition: all 0.3s ease;
  user-select: none;
}
#gift-code.revealed {
  color: #000;
  background-color: #fef08a;
}

/* Mobile Menu Toggle */


/* Optional Dark Mode Enhancements */
html[data-theme="dark"] body {
  background-color: #1a1a1a;
  color: #e5e7eb;
}
html[data-theme="dark"] .bg-white {
  background-color: #2d2d2d;
}
html[data-theme="dark"] .text-black {
  color: #e5e7eb;
}

/* Pulse Animation (if used) */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.pulse-animation {
  animation: pulse 2s infinite;
}

/* === Missing Utility Fixes === */

/* Flex Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

/* Flex Wrap */
.flex-wrap { flex-wrap: wrap; }

/* Text Sizes (already partially included, adding missing one) */
.text-4xl { font-size: 2.25rem; }

/* Aspect Ratio */
.aspect-\[16\/9\] {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.aspect-\[16\/9\] > * {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* === Fix missing aspect-[16/9] === */
.aspect-\[16\/9\] {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.aspect-\[16\/9\] > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* === PATCHED MISSING UTILITIES === */

/* Border + Colors */
.border-gray-300 { border-color: #d1d5db; }
.border-yellow-500 { border-color: #eab308; }
.border-l-4 { border-left-width: 4px; }
.border-\[#ff5c54\] { border-color: #ff5c54; }

/* Typography & Layout */
.break-all { word-break: break-word; }
.leading-relaxed { line-height: 1.625; }
.text-blue-600 { color: #2563eb; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-yellow-800 { color: #92400e; }
.text-\[#ff5c54\]\/80 { color: rgba(255, 92, 84, 0.8); }
.text-\[#ff5c54\]\/90 { color: rgba(255, 92, 84, 0.9); }

/* Dark Mode Background Classes */
.card-bg {
  background-color: var(--card-bg);
}
.btn-custom { background-color: #ff5c54; color: #fff; }

/* Spacing */
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-6 { margin-bottom: 1.5rem; }
.pb-0 { padding-bottom: 0; }
.pt-2 { padding-top: 0.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

/* Sizing & Positioning */
.h-auto { height: auto; }
.w-full { width: 100%; }
.max-w-full { max-width: 100%; }
.max-w-3xl { max-width: 48rem; }
.max-w-\[1200px\] { max-width: 1200px; }

/* Utility */
.inline-block { display: inline-block; }
.flex-wrap { flex-wrap: wrap; }
.overflow-hidden { overflow: hidden; }
.whitespace-nowrap { white-space: nowrap; }
.focus\:outline-none:focus { outline: none; }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

/* Responsive */
.sm\:w-auto { width: auto; }
.sm\:text-left { text-align: left; }
.sm\:flex-row { flex-direction: row; }
.md\:text-lg { font-size: 1.125rem; }
.md\:text-3xl { font-size: 1.875rem; }

/* List & Screenreader */
.list-decimal { list-style-type: decimal; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Object Fit */
.object-cover { object-fit: cover; }

/* Accordion Support */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }

/* Hover Styles */
.hover\:underline:hover { text-decoration: underline; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:bg-\[#ff5c54\]:hover { background-color: #ff5c54; }
.hover\:bg-yellow-100:hover { background-color: #fef9c3; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-black:hover { color: #000000; }



/* === FINAL PATCH: Fix remaining missing classes === */

/* Margin */
.ml-2 { margin-left: 0.5rem; }

/* Space Between Items */
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }

/* Responsive Utilities */
.sm\:w-auto { width: auto; }
.sm\:text-left { text-align: left; }
.sm\:flex-row { flex-direction: row; }
.md\:text-lg { font-size: 1.125rem; }
.md\:text-3xl { font-size: 1.875rem; }

/* Hover States */
.hover\:bg-\[#ff5c54\]:hover { background-color: #ff5c54; }
.hover\:bg-yellow-100:hover { background-color: #fef9c3; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-black:hover { color: #000000; }
.hover\:underline:hover { text-decoration: underline; }

/* Focus Styles */
.focus\:outline-none:focus { outline: none; }

/* Accordion Dropdown Behavior */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }

/* WordPress Utility (optional for table layout) */
.wp-block-table { width: 100%; border-collapse: collapse; }
.has-fixed-layout { table-layout: fixed; width: 100%; }



/* === FINAL FIX PATCH: dropdown + table === */

/* Accordion Dropdown Behavior */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }

/* Table Styling Fixes */
table { width: 100%; border-collapse: collapse; table-layout: auto; }
th, td {
  border: 1px solid #d1d5db;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}
th {
  background-color: #f9fafb;
  font-weight: 600;
}



/* ✅ Real fix for dropdown underline (no Tailwind dependency) */
details[open] > summary {
  text-decoration: underline;
}



/* === FINAL FULL PATCH === */

/* Hover Styles */
.hover\:bg-yellow-100:hover { background-color: #fef9c3; }
.hover\:bg-\[#ff5c54\]:hover { background-color: #ff5c54; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-black:hover { color: #000000; }

/* Focus */
.focus\:outline-none:focus { outline: none; }

/* Group Open (dropdown underline fix) */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }

/* Responsive Utilities */
.sm\:flex-row { flex-direction: row; }
.sm\:w-auto { width: auto; }
.sm\:text-left { text-align: left; }
.md\:text-lg { font-size: 1.125rem; }
.md\:text-3xl { font-size: 1.875rem; }



/* ✅ Final dropdown behavior fix */
details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "▼";
  float: right;
  transition: transform 0.2s ease-in-out;
  font-size: 0.875rem;
  margin-left: 0.5rem;
  color: #ff5c54;
}

details[open] summary::after {
  transform: rotate(180deg);
}



/* === FINAL Dropdown System Fix === */
details {
  display: block;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

details[open] > summary {
  border-bottom: 1px solid #ff5c54;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

summary {
  display: list-item;
  cursor: pointer;
  font-weight: 600;
  padding-right: 1.25rem;
  position: relative;
  list-style: none;
}

summary::marker,
summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "▼";
  position: absolute;
  right: 0;
  top: 0.25rem;
  font-size: 0.875rem;
  color: #ff5c54;
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details > p {
  margin: 0;
  padding-top: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}



/* === Final Tailwind Utility Fixes === */

/* Hover Styles */
.hover\:bg-\[#ff5c54\]:hover { background-color: #ff5c54; }
.hover\:bg-yellow-100:hover { background-color: #fef9c3; }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:text-black:hover { color: #000000; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:underline:hover { text-decoration: underline; }

/* Focus Style */
.focus\:outline-none:focus { outline: none; }

/* Responsive Text Sizes */
.md\:text-lg { font-size: 1.125rem; }
.md\:text-3xl { font-size: 1.875rem; }

/* Responsive Layout Helpers */
.sm\:flex-row { flex-direction: row; }
.sm\:text-left { text-align: left; }
.sm\:w-auto { width: auto; }

/* Dropdown underline trigger */
.group-open\:underline { text-decoration: underline; }
details[open] .group-open\:underline { text-decoration: underline; }



/* ✅ Show dropdown content properly inside open <details> */
details[open] p {
  display: block;
  margin-top: 0.5rem;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}


#menuToggle {
  background-color: transparent;
  border: none;
  outline: none;
}

table {
  table-layout: fixed;
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

th {
  background-color: inherit !important;
  color: inherit !important;
  font-weight: bold !important;
  padding: 16px !important;
  text-align: left !important;
  vertical-align: top !important;
  word-break: break-word !important;
  border: 1px solid #d1d5db !important; /* match td border */
}

html[data-theme="dark"] #gift-code {
  background-color: #333333;  /* dark background */
  color: #fef08a;             /* light yellow text */
}

html[data-theme="dark"] #gift-code.revealed {
  background-color: #facc15; /* bright yellow background */
  color: #1a1a1a;             /* dark readable text */
}

html[data-theme="dark"] #copyBtn {
  background-color: #ff5c54;
  color: white;
}

/* Footer layout support */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.sm\:flex-row {
  @media (min-width: 640px) {
    flex-direction: row;
  }
}
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.text-center { text-align: center; }
.sm\:text-left {
  @media (min-width: 640px) {
    text-align: left;
  }
}
.hover\:opacity-80:hover { opacity: 0.8; }
.whitespace-nowrap { white-space: nowrap; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }



.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.sm\:w-auto {
  @media (min-width: 640px) {
    width: auto;
  }
}
.pt-2 { padding-top: 0.5rem; }
.sm\:pt-0 {
  @media (min-width: 640px) {
    padding-top: 0;
  }
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:w-auto {
    width: auto;
  }
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:text-left {
    text-align: left;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:w-auto {
    width: auto;
  }
}

/* === FINAL FOOTER DESKTOP FIX === */
@media (min-width: 640px) {
  footer .flex {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  footer .flex > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }

  footer .flex > div:nth-child(1) {
    justify-self: start;
  }

  footer .flex > div:nth-child(2) {
    justify-self: center;
    text-align: center;
  }

  footer .flex > div:nth-child(3) {
    justify-self: end;
  }
}

:root {
  --brand: #ff5c54;
  --card-bg: #ffffff;
  --text-color: #1f2937;
}

[data-theme="dark"] {
  --card-bg: #2d2d2d;
  --text-color: #e5e7eb;
}

.btn-custom {
  background-color: white;
  color: black;
  border: 2px solid var(--brand);
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background-color: var(--brand);
  color: black;
}
[data-theme="dark"] .btn-custom {
  background-color: var(--card-bg);
  color: var(--text-color);
}
[data-theme="dark"] .btn-custom:hover {
  background-color: var(--brand);
  color: black;
}

/* FAQ / Accordion */
details summary {
  cursor: pointer;
  padding: 0.75rem 1rem;
  background-color: #fff0ef;
  color: var(--brand);
  font-weight: 600;
  border: 1px solid var(--brand);
  border-radius: 0.5rem;
}
details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
details > div {
  padding: 1rem;
  background-color: var(--card-bg);
  color: var(--text-color);
  border: 1px solid var(--brand);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
}
[data-theme="dark"] details summary {
  background-color: #2d2d2d;
  color: var(--text-color);
}

@keyframes pulseOnce {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.btn-custom:hover {
  animation: pulseOnce 0.3s ease-in-out;
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 0px #ff5c54);
  }
  50% {
    filter: drop-shadow(0 0 10px #ff5c54);
  }
  100% {
    filter: drop-shadow(0 0 0px #ff5c54);
  }
}

.animate-glow {
  animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowStar {
  0%, 100% {
    filter: drop-shadow(0 0 0px #facc15);
  }
  50% {
    filter: drop-shadow(0 0 4px #facc15);
  }
}

.animate-glow-star {
  animation: glowStar 2s ease-in-out infinite;
}

/* === ✨ Optimizations for Mobile UX by ChatGPT === */
@media (max-width: 640px) {
  html {
    font-size: 15px;
  }
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .py-10 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .space-y-10 > * + * {
    margin-top: 1.5rem !important;
  }
}

html {
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.75;
}

#hero-static {
  min-height: 220px;
}

.btn-custom:active {
  transform: scale(0.96);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { transform: translateX(-10px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  20% { transform: scale3d(1.1, 1.1, 1.1); }
  40% { transform: scale3d(0.9, 0.9, 0.9); }
  60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
  80% { transform: scale3d(0.97, 0.97, 0.97); }
  100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

.animate-fade-in     { animation: fadeIn 0.6s ease-out; }
.animate-fade-in-up  { animation: fadeInUp 0.6s ease-out; }
.animate-slide-in    { animation: slideIn 0.6s ease-out; }
.animate-bounce-in   { animation: bounceIn 0.6s ease-out; }

/* Fade-in effect */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out both;
}

/* Slide-in animation */
@keyframes slide-in {
  from { opacity: 0; transform: translateX(-15px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-slide-in {
  animation: slide-in 0.6s ease-out both;
}

/* Bounce-in effect */
@keyframes bounce-in {
  0% { opacity: 0; transform: scale(0.9); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-bounce-in {
  animation: bounce-in 0.5s ease-out both;
}
