/* ========================================
   HERO BANNER SECTION - MOBILE FONT FIX
======================================== */
.hero-banner {
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../images/bannerincu.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(224, 210, 240, 0.3) 0%, rgba(200, 167, 241, 0.2) 50%, rgba(192, 215, 241, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-container {
  margin-bottom: 40px;
  position: relative;
}

.logo {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(180, 152, 221, 0.4));
  animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%, 100% { 
      transform: translateY(0px) scale(1); 
  }
  50% { 
      transform: translateY(-10px) scale(1.02); 
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: var(--font-weight-extra-bold);
  font-family: var(--font-primary);
  line-height: 1.2; /* Increased line height for mobile */
  margin-bottom: 25px;
  color: var(--primary-bg);
  /* text-shadow: 3px 3px 15px rgba(20, 11, 40, 0.8); */
  letter-spacing: -2px;
  position: relative;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--primary-bg);
  /* text-shadow: 2px 2px 10px rgba(20, 11, 40, 0.6); */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hero-btn {
  font-size: 1.3rem;
  padding: 22px 55px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.85) 50%, 
    rgba(255, 255, 255, 0.9) 100%);
  color: var(--primary-text);
  border: none;
  backdrop-filter: blur(20px);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 
    0 8px 32px rgba(255, 255, 255, 0.3),
    0 0 0 1px rgba(200, 167, 241, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: dreamy-float 4s ease-in-out infinite;
}

/* Dreamy floating animation */
@keyframes dreamy-float {
  0%, 100% {
    transform: translateY(0px);
    box-shadow: 
      0 8px 32px rgba(255, 255, 255, 0.3),
      0 0 0 1px rgba(200, 167, 241, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 
      0 12px 40px rgba(255, 255, 255, 0.4),
      0 0 0 1px rgba(200, 167, 241, 0.3),
      0 0 30px rgba(200, 167, 241, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

/* Magical sparkle effect */
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 167, 241, 0.4),
    rgba(248, 165, 218, 0.3),
    rgba(192, 215, 241, 0.4),
    transparent
  );
  animation: gentle-sparkle 3s ease-in-out infinite;
  border: none;
}

@keyframes gentle-sparkle {
  0% { left: -100%; opacity: 0; }
  50% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* Magnificent hover state */
.hero-btn:hover {
  background: linear-gradient(135deg, 
    #8f70e7 0%, 
    #e0b4f8 50%, 
    #5e76f4 100%);
  color: white;
  transform: translateY(-6px) scale(1.05);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 20px 60px rgba(200, 167, 241, 0.6),
    0 0 80px rgba(248, 165, 218, 0.4),
    0 0 120px rgba(192, 215, 241, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: hover-magic 0.6s ease-out forwards;
  border: none;
}

@keyframes hover-magic {
  0% {
    filter: brightness(1) saturate(1);
  }
  100% {
    filter: brightness(1.1) saturate(1.3);
  }
}

/* Explosive sparkle on hover */
.hero-btn:hover::before {
  animation: explosive-rainbow 0.8s ease-out;
  border: none;
}

@keyframes explosive-rainbow {
  0% { 
    left: -100%; 
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  }
  100% { 
    left: 100%; 
    background: linear-gradient(90deg, 
      transparent, 
      rgba(255, 255, 255, 0.9), 
      rgba(248, 165, 218, 0.7), 
      rgba(255, 255, 255, 0.9), 
      transparent);
  }
}

@keyframes magic-dust {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px) scale(0.8);
  }
}

/* Active state */
.hero-btn:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(200, 167, 241, 0.5),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  color: white;
}

@keyframes pulse-glow {
  0%, 100% {
      box-shadow: 0 0 30px rgba(168, 237, 234, 0.4);
  }
  50% {
      box-shadow: 0 0 50px rgba(168, 237, 234, 0.8);
  }
}

/* Floating elements in hero */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  animation: fun-float 6s ease-in-out infinite;
  filter: drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.5));
}

.floating-element:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
}

.floating-element:nth-child(4) {
  bottom: 20%;
  right: 15%;
  animation-delay: 1s;
}

.floating-element:nth-child(5) {
  top: 60%;
  left: 60%;
  animation-delay: 3s;
}

/* Hero Responsive - FIXED FONT OVERLAPPING */
@media (max-width: 768px) {
  .hero-banner {
      background-attachment: scroll;
      padding: 80px 0;
  }
  
  .hero-title {
      font-size: 2.2rem; /* Reduced font size */
      line-height: 1.4; /* Increased line height */
      letter-spacing: -1px; /* Reduced letter spacing */
      margin-bottom: 30px; /* More margin */
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
      line-height: 1.7; /* Better line height */
      margin-bottom: 35px;
  }
  
  .logo {
      width: 140px;
  }
  
  .floating-element {
      font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 1.8rem; /* Even smaller for very small screens */
      line-height: 1.5;
      letter-spacing: -0.5px;
      margin-bottom: 25px;
  }
  
  .hero-subtitle {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 30px;
  }
  
  .hero-btn {
      font-size: 1.1rem;
      padding: 16px 35px;
  }
}

/* ========================================
 STORY SECTION - REDUCED MOBILE GAP
======================================== */
.story-section {
  background: linear-gradient(135deg, rgba(224, 210, 240, 0.1) 0%, rgba(192, 215, 241, 0.1) 100%);
  padding: 120px 0;
  position: relative;
  margin-top: -50px; /* Overlap with hero on desktop */
  padding-top: 170px; /* Compensate for overlap */
}

.story-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: var(--gradient-candy);
  border-radius: 50% 40% 60% 30%;
  opacity: 0.1;
  animation: blob-morph 10s ease-in-out infinite;
}

.story-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: var(--gradient-rainbow);
  border-radius: 40% 60% 30% 50%;
  opacity: 0.1;
  animation: blob-morph 12s ease-in-out infinite reverse;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-title {
  font-size: 2.8rem;
  font-weight: var(--font-weight-extra-bold);
  font-family: var(--font-primary);
  margin-bottom: 25px;
  background: var(--gradient-button);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.story-description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--primary-text);
  opacity: 0.8;
  margin-bottom: 40px;
  font-weight: var(--font-weight-medium);
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.story-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(168, 237, 234, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(200, 167, 241, 0.2);
  transition: all 0.3s ease;
}

.story-feature:hover {
  background: rgba(168, 237, 234, 0.2);
  border: 2px solid var(--pastel-aqua);
  transform: translateX(10px);
}

.feature-emoji {
  font-size: 2.5rem;
  background: var(--gradient-candy);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 70px;
}

.story-feature h4 {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-primary);
  margin-bottom: 5px;
  color: var(--primary-text);
}

.story-feature p {
  font-size: 1rem;
  color: var(--primary-text);
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
}

.story-btn {
  font-size: 1.2rem;
  padding: 18px 45px;
}

.story-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid rgba(200, 167, 241, 0.3);
  transition: all 0.3s ease;
}

.story-image:hover {
  transform: scale(1.02) rotate(1deg);
  border: 4px solid var(--bubblegum-pink);
  box-shadow: var(--shadow-neon);
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Story Responsive - REDUCED GAP */
@media (max-width: 768px) {
  .story-section {
      margin-top: -20px; /* Less overlap on mobile */
      padding-top: 80px; /* Reduced gap */
      padding-bottom: 80px;
  }
  
  .story-content {
      grid-template-columns: 1fr;
      gap: 40px; /* Reduced gap */
      text-align: center;
  }
  
  .story-title {
      font-size: 2.2rem;
  }
  
  .story-description {
      font-size: 1.1rem;
  }
  
  .story-feature {
      justify-content: center;
      text-align: left;
  }
  
  .story-feature:hover {
      transform: translateY(-5px);
  }
}

/* ========================================
   FUNZ SHOWCASE SECTION - GEN Z STYLE
======================================== */
.funz-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.funz-card {
  background: var(--primary-bg);
  border-radius: 24px; /* Rounded square */
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(var(--primary-bg), var(--primary-bg)) padding-box,
              var(--gradient-button) border-box;
}

.funz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-candy);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 22px;
  z-index: -1;
}

.funz-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 40px rgba(200, 167, 241, 0.4);
  border: 2px solid transparent;
  background: linear-gradient(var(--primary-bg), var(--primary-bg)) padding-box,
              var(--gradient-primary) border-box;
}

.funz-card:hover::before {
  opacity: 0.1;
}

.funz-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.funz-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(180, 152, 221, 0.2));
}

.funz-card:hover .funz-image img {
  transform: scale(1.15);
  filter: drop-shadow(0 8px 20px rgba(248, 165, 218, 0.4));
}

/* Remove all text elements */
.funz-info {
  display: none;
}

.funz-overlay {
  display: none;
}

/* Funz Responsive - HORIZONTAL SCROLL ON MOBILE */
@media (max-width: 768px) {
  .funz-showcase {
      display: flex;
      grid-template-columns: none;
      gap: 15px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 10px 0 20px 0;
      margin: 40px 0;
  }
  
  .funz-showcase::-webkit-scrollbar {
      display: none;
  }
  
  .funz-card {
      min-width: 90px;
      max-width: 90px;
      height: 90px;
      flex-shrink: 0;
      padding: 15px;
      border-radius: 20px;
  }
  
  .funz-image img {
      max-width: 100%;
      max-height: 100%;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .funz-showcase {
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
  }
}

/* ========================================
   QUOTE SECTION - NO FLOATING EMOJIS
======================================== */
.quote-section {
  background: linear-gradient(rgba(180, 152, 221, 0.3), rgba(248, 165, 218, 0.3)), url('../images/quotebgnew3.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.quote-container {
  text-align: center;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.magical-quote {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--primary-bg);
  position: relative;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  font-style: italic;
  /* text-shadow: 3px 3px 15px rgba(20, 11, 40, 0.8); */
}

.quote-author {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: var(--font-weight-medium);
  color: var(--primary-bg);
  /* text-shadow: 2px 2px 10px rgba(20, 11, 40, 0.6); */
}

/* Remove quote-effects and floating-star completely */

/* Quote Responsive */
@media (max-width: 768px) {
  .quote-section {
      background-attachment: scroll;
      padding: 80px 0;
  }
  
  .magical-quote {
      font-size: 2rem;
  }
  
  .quote-author {
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .magical-quote {
      font-size: 1.6rem;
  }
  
  .quote-author {
      font-size: 1rem;
  }
}

/* ========================================
 CTA SECTION - REMOVED UNCLICKABLE ELEMENTS
======================================== */
.cta-section {
  background: var(--gradient-sunset);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
  animation: rotate-background 20s linear infinite;
  z-index: 1;
}

@keyframes rotate-background {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: var(--font-weight-extra-bold);
  font-family: var(--font-primary);
  margin-bottom: 25px;
  color: var(--primary-bg);
  text-shadow: 3px 3px 15px rgba(20, 11, 40, 0.5);
  letter-spacing: -1px;
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: var(--primary-bg);
  opacity: 0.9;
  font-weight: var(--font-weight-medium);
  text-shadow: 1px 1px 5px rgba(20, 11, 40, 0.3);
}

.cta-highlight {
  margin-bottom: 50px;
}

.price-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 40px 50px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.price-badge:hover {
  background: rgba(255, 255, 255, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.price {
  display: block;
  font-size: 4rem;
  font-weight: var(--font-weight-extra-bold);
  font-family: var(--font-primary);
  color: var(--primary-bg);
  text-shadow: 2px 2px 8px rgba(20, 11, 40, 0.5);
  line-height: 1;
  margin-bottom: 15px;
}

.includes {
  font-size: 1.6rem;
  color: var(--primary-bg);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-primary);
  text-shadow: 1px 1px 3px rgba(20, 11, 40, 0.3);
}

/* REMOVED fun-details section completely */

.cta-btn {
  font-size: 1.4rem;
  padding: 22px 55px;
  background: var(--primary-bg);
  color: var(--primary-text);
  border: 4px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: var(--gradient-candy);
  border: 4px solid var(--primary-bg);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 255, 255, 0.3);
}

/* CTA Responsive */
@media (max-width: 768px) {
  .cta-title {
      font-size: 2.2rem;
  }
  
  .price {
      font-size: 3rem;
  }
  
  .includes {
      font-size: 1.3rem;
  }
  
  .price-badge {
      padding: 30px 40px;
  }
}

@media (max-width: 480px) {
  .cta-title {
      font-size: 1.8rem;
  }
  
  .cta-subtitle {
      font-size: 1.1rem;
  }
  
  .price {
      font-size: 2.5rem;
  }
  
  .includes {
      font-size: 1.2rem;
  }
  
  .cta-btn {
      font-size: 1.2rem;
      padding: 18px 40px;
  }
  
  .price-badge {
      padding: 25px 35px;
  }
}

/* ========================================
 GALLERY SECTION - BETTER TEXT CONTRAST
======================================== */
.gallery-section {
  padding-top: 60px;
  padding-bottom: 0px;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: var(--gradient-candy);
  border: 3px solid rgba(200, 167, 241, 0.3);
  text-decoration: none;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg, var(--bubblegum-pink), var(--lavender-pink), var(--muted-cyan), var(--bubblegum-pink));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: rotate-rainbow 6s linear infinite;
}

.gallery-item:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow-neon);
  border: 3px solid var(--bubblegum-pink);
  text-decoration: none;
}

.gallery-item:hover::before {
  opacity: 0.2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      max-width: 350px;
  }
}

/* ========================================
 ADDITIONAL ANIMATIONS & EFFECTS
======================================== */
@keyframes float {
  0%, 100% { 
      transform: translateY(0px) rotate(0deg); 
      opacity: 0.7;
  }
  50% { 
      transform: translateY(-20px) rotate(10deg); 
      opacity: 1;
  }
}

@keyframes fun-float {
  0%, 100% { 
      transform: translateY(0px) rotate(0deg); 
      opacity: 0.7;
  }
  50% { 
      transform: translateY(-15px) rotate(10deg); 
      opacity: 1;
   }
}

@keyframes rotate-rainbow {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}

@keyframes blob-morph {
   0%, 100% {
       border-radius: 50% 40% 60% 30%;
       transform: rotate(0deg) scale(1);
   }
   25% {
       border-radius: 30% 60% 40% 50%;
       transform: rotate(90deg) scale(1.1);
   }
   50% {
       border-radius: 60% 30% 50% 40%;
       transform: rotate(180deg) scale(0.9);
   }
   75% {
       border-radius: 40% 50% 30% 60%;
       transform: rotate(270deg) scale(1.05);
   }
}

/* Fancybox customization */
.fancybox__container {
   --fancybox-bg: rgba(20, 11, 40, 0.95);
}

.fancybox__toolbar {
   background: var(--gradient-rainbow);
}

.fancybox__button {
   background: rgba(255, 255, 255, 0.1);
   color: var(--primary-bg);
   border: 2px solid rgba(255, 255, 255, 0.2);
   border-radius: 10px;
}

.fancybox__button:hover {
   background: rgba(255, 255, 255, 0.2);
   border: 2px solid rgba(255, 255, 255, 0.4);
}