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

:root {
  --p1: #c05f83;
  --p2: #f29ca2;
  --g1: #479255;
  --w: #fff;
  --bg: #07090e;
}

html {
  scroll-behavior: smooth;
  cursor: default;
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--w);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  cursor: default;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--w);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.9);
}

.c-scrollbar {
  width: 6px;
}

.c-scrollbar_thumb {
  background-color: var(--w) !important;
  opacity: 0.55;
  border-radius: 3px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.nav-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #101113 !important;
  background-color: #101113 !important;
  color: white !important;
  border-radius: 6px;
  font-weight: 300;
  font-size: 0.9rem;
  border: 1px solid #252525;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.nav-btn:hover {
  border-color: #c05f83;
  box-shadow: 0 0 10px rgba(192, 95, 131, 0.3), 0 6px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.nav-btn svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .nav-btn {
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

.btn {
  padding: 8px 20px;
  font-weight: 300;
  font-size: 0.9rem;
  background: #101113 !important;
  background-color: #101113 !important;
  color: white !important;
  text-decoration: none;
  border: 1px solid #252525;
  border-radius: 6px;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  border-color: #e6a0a2;
  box-shadow: 0 0 10px rgba(230, 160, 162, 0.3);
}

/* SellAuth Embed Button Styles */
.sellauth-button .icon {
  display: inline-block;
  vertical-align: middle;
}

.sellauth-button .icon.spinner {
  animation: spin 1s linear infinite;
}

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

.sellauth-button[disabled] .icon.cart {
  display: none;
}

.sellauth-button[disabled] .icon.spinner {
  display: inline-block !important;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: #101113 !important;
  color: white !important;
  border: 1px solid #252525;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  border-color: #e6a0a2;
  box-shadow: 0 0 10px rgba(230, 160, 162, 0.3);
}

.qty-display {
  min-width: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--w);
}

.h {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: visible;
  background: var(--bg);
}

.h-c {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
}

.h h1 {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--w);
}

.h p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto 32px;
}

.h-ui {
  position: relative;
  max-width: 140%;
  margin: 0 auto;
  z-index: 1;
}

.h-ui::before {
  content: '';
  position: absolute;
  top: -210px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 560px;
  background: url('assets/backg.png') repeat;
  background-size: 280px 280px;
  opacity: 0.7;
  pointer-events: none;
  z-index: -2;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.15) 50%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.15) 50%, transparent 65%);
}

.h-ui::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to top, rgba(7,9,14,1) 0%, rgba(7,9,14,0.98) 10%, rgba(7,9,14,0.94) 15%, rgba(7,9,14,0.92) 20%, rgba(7,9,14,0.85) 25%, rgba(7,9,14,0.82) 30%, rgba(7,9,14,0.75) 35%, rgba(7,9,14,0.68) 40%, rgba(7,9,14,0.5) 50%, rgba(7,9,14,0.25) 60%, transparent 85%);
}

.h-ui-i {
  position: relative;
  display: block;
  border-radius: 39px;
}

.h-ui-i::before {
  content: '';
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  height: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(242,156,162,0.65) 0%, rgba(192,95,131,0.45) 35%, transparent 70%),
              radial-gradient(ellipse 90% 80% at 20% 40%, rgba(242,156,162,0.8) 0%, rgba(192,95,131,0.7) 35%, transparent 70%),
              radial-gradient(ellipse 90% 80% at 80% 40%, rgba(242,156,162,0.8) 0%, rgba(192,95,131,0.7) 35%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.h-ui-i img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  position: relative;
}

.h-ui-i::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 25px;
  border: 3px solid rgba(192,95,131,0.8);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), inset 0 0 11px rgba(255,255,255,0.4), 
              0 0 21px rgba(242,156,162,0.5), 0 0 35px rgba(192,95,131,0.3);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.6) 35%, transparent 45%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 25%, rgba(0,0,0,0.6) 35%, transparent 45%);
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.rv {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.rv.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.f {
  padding: 120px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.f::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 700px;
  height: 550px;
  background: url('assets/backg.png') repeat;
  background-size: 180px 180px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, transparent 70%),
              linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 10%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.2) 90%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, transparent 70%),
                      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 10%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.2) 90%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.f-w {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.f-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--w);
}

.f-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 500px;
}

.f-right {
  position: relative;
}

.f-img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: filter 0.3s;
}

.f-img:hover {
  filter: drop-shadow(0 0 40px rgba(192,95,131,0.8));
}

.pr {
  padding: 100px 24px;
  position: relative;
  background: var(--bg);
}

.pr::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: url('assets/backg.png') repeat;
  background-size: 170px 170px;
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.3) 55%, transparent 75%),
              linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0.4) 16%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 84%, rgba(0,0,0,0.15) 92%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 40%, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.3) 55%, transparent 75%),
                      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0.4) 16%, rgba(0,0,0,0.7) 25%, rgba(0,0,0,0.7) 75%, rgba(0,0,0,0.4) 84%, rgba(0,0,0,0.15) 92%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.pr-w {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pr-h {
  text-align: center;
  margin-bottom: 48px;
}

.pr-h h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pr-h p {
  color: rgba(255, 255, 255, 0.5);
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pr-c {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pr-c::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/backg.png') repeat;
  background-size: 140px 140px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  border-radius: 20px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 60%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 60%, transparent 80%);
}

.pr-c::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,95,131,0.5), transparent);
  z-index: 1;
}

.pr-t {
  font-size: 14px;
  color: var(--p2);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.pr-t::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('assets/logo.png') center/cover no-repeat;
  border-radius: 4px;
}

.pr-p {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pr-p span {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.pr-d {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 12px;
}

.pr-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.pr-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.pr-icons .cashapp-icon {
  width: 60px;
  height: 60px;
}

.pr-l {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pr-l li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.pr-l li:last-child {
  border-bottom: none;
}

.pr-l svg {
  width: 18px;
  height: 18px;
  stroke: var(--g1);
  flex-shrink: 0;
}

.pr-b {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--w);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: #07090e;
  transition: box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: inset 0 -4px 20px rgba(192,95,131,0.85);
}

.pr-b:hover {
  box-shadow: inset 0 -4px 24px rgba(192,95,131,1);
}

.ft {
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg);
}

.ft-w {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.ft-l {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ft-l img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.ft-r {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7,9,14,0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  box-shadow: none;
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,95,131,0.6), transparent);
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--w);
  text-align: center;
}

.modal-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-btn {
  padding: 11px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.1s;
}

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

.modal-btn-yes {
  background: var(--w);
  color: #07090e;
  box-shadow: inset 0 -4px 20px rgba(192,95,131,0.85);
}

.modal-btn-yes:hover {
  box-shadow: inset 0 -4px 24px rgba(192,95,131,1);
}

.modal-btn-no {
  background: rgba(255, 255, 255, 0.08);
  color: var(--w);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-btn-no:hover {
  background: rgba(255, 255, 255, 0.12);
}

.modal-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.modal-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 20px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  min-height: 120px;
  width: 100%;
}

.modal-payment-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(192,95,131,0.5);
  transform: none;
}

.modal-payment-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.modal-payment-item.cashapp img {
  width: 50px;
  height: 50px;
}

.modal-payment-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-align: center;
}

.modal-warning {
  font-size: 13px;
  color: rgba(255, 200, 100, 0.9);
  background: rgba(255, 200, 100, 0.1);
  border: 1px solid rgba(255, 200, 100, 0.3);
  border-radius: 0px;
  padding: 12px;
  margin: 16px 0;
  line-height: 1.5;
}

.image-modal-box {
  max-width: 90%;
  width: auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.image-modal-box::before {
  display: none;
}

.image-modal-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(192,95,131,0.6);
}

.h-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 100;
}

@media (max-width: 768px) {
  .h {
    padding: 100px 24px 80px !important;
  }
  
  .h-ui {
    max-width: 100%;
  }
  
  .h-ui::before {
    width: 100%;
  }
  
  .h h1 {
    font-size: 36px;
  }
  
  .modal-payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .h p {
    font-size: 16px;
  }
  
  .h-buttons {
    width: 100%;
    margin-top: -20px;
  }
  
  .btn {
    flex: 1;
    min-width: 112px;
    min-height: 44.8px;
    height: 44.8px;
    font-size: 0.85rem;
    padding: 6.4px 16px;
  }
  
  .pr-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .f {
    padding: 80px 24px;
  }
  
  .f-w {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  
  .f-left h2 {
    font-size: 32px;
  }
  
  .pr-h h2 {
    font-size: 28px;
  }
  
  .pr-p {
    font-size: 40px;
  }
  
  .ft-w {
    flex-direction: column;
    text-align: center;
  }
  
  .modal-box {
    padding: 32px 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-btn {
    width: 100%;
  }
}

/* Loading Animation */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
}

.loading-text {
  display: flex;
  gap: 4px;
  margin-bottom: 30px;
}

.loading-text .letter {
  font-size: 48px;
  font-weight: 700;
  color: var(--w);
  opacity: 0;
  transform: translateY(30px);
  animation: letterFadeIn 0.6s ease forwards, letterColorShift 0.6s ease forwards;
  text-shadow: 0 0 20px rgba(192, 95, 131, 0.4);
}

.loading-text .letter:nth-child(1) { animation-delay: 0s; }
.loading-text .letter:nth-child(2) { animation-delay: 0.05s; }
.loading-text .letter:nth-child(3) { animation-delay: 0.1s; }
.loading-text .letter:nth-child(4) { animation-delay: 0.15s; }
.loading-text .letter:nth-child(5) { animation-delay: 0.2s; }
.loading-text .letter:nth-child(6) { animation-delay: 0.25s; }
.loading-text .letter:nth-child(7) { animation-delay: 0.3s; }
.loading-text .letter:nth-child(8) { animation-delay: 0.35s; }
.loading-text .letter:nth-child(9) { animation-delay: 0.4s; }
.loading-text .letter:nth-child(10) { animation-delay: 0.45s; }
.loading-text .letter:nth-child(11) { animation-delay: 0.5s; }
.loading-text .letter:nth-child(12) { animation-delay: 0.55s; }

@keyframes letterFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes letterColorShift {
  0% {
    color: #968acf;
    text-shadow: 0 0 20px rgba(150, 138, 207, 0.6);
  }
  33% {
    color: #e25d4c;
    text-shadow: 0 0 20px rgba(226, 93, 76, 0.6);
  }
  66% {
    color: #75c84f;
    text-shadow: 0 0 20px rgba(117, 200, 79, 0.6);
  }
  100% {
    color: #c05f83;
    text-shadow: 0 0 15px rgba(192, 95, 131, 0.3);
  }
}

.loading-dots {
  display: flex;
  gap: 10px;
  opacity: 0;
  animation: dotsAppear 0.3s ease forwards 0.6s;
}

.dot-flashing {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #c05f83;
  color: #c05f83;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #c05f83;
  color: #c05f83;
  animation: dot-flashing 1s infinite ease-in-out alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #c05f83;
  color: #c05f83;
  animation: dot-flashing 1s infinite ease-in-out alternate;
  animation-delay: 1s;
}

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

* {
  box-sizing: border-box;
}

@keyframes dotsAppear {
  to {
    opacity: 1;
  }
}

@keyframes dot-flashing {
  0% {
    background-color: #c05f83;
    opacity: 1;
  }
  50% {
    background-color: rgba(192, 95, 131, 0.2);
    opacity: 0.2;
  }
  100% {
    background-color: #c05f83;
    opacity: 1;
  }
}
