/* ================================
   💫 SUPREME STYLESHEET – A3sWorld
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: rgba(0, 0, 0, 0.85) url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  min-height: 100vh;
  position: relative;
}

/* ✨ Glowing Spinning Logo */
.glow-spin-logo {
  width: 120px;
  animation: spin 25s linear infinite, pulseLogo 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 6px #00f0ff) drop-shadow(0 0 14px #ff00f7);
}

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

@keyframes pulseLogo {
  0%, 100% { filter: drop-shadow(0 0 8px #ff00f7); }
  50% { filter: drop-shadow(0 0 20px #00f0ff); }
}

/* 🌌 Navigation Bar */
.site-header {
  padding: 25px 0 10px;
  text-align: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.glow-btn {
  background: transparent;
  color: #fff;
  padding: 12px 22px;
  border: 2px solid #00f0ff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
}

.glow-btn:hover {
  background: #00f0ff;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 18px #ff00f7, 0 0 26px #00f0ff;
}

/* ✅ Main Navigation – Desktop */
.main-nav {
  display: flex;
  gap: 18px;
}

.hamburger {
  display: none;
}

/* === 🍔 Supreme Hamburger Navigation – Mobile Only === */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #00f0ff;
    border-radius: 3px;
    box-shadow: 0 0 10px #ff00f7, 0 0 15px #00f0ff;
    transition: 0.4s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .main-nav {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0, 0, 0, 0.98);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 0 25px #00f0ff, 0 0 35px #ff00f7;
    z-index: 1000;
    animation: fadeInMenu 0.3s ease-in-out;
  }

  .main-nav.active {
    display: flex !important;
  }

  .main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px 0;
    transition: 0.3s ease;
    text-align: right;
  }

  .main-nav a:hover {
    color: #00f0ff;
    text-shadow: 0 0 8px #ff00f7, 0 0 12px #00f0ff;
  }

  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

/* 💥 Hero Section */
.hero-intro {
  text-align: center;
  padding: 50px 20px 30px;
  animation: pulseBoxGlow 6s infinite ease-in-out;
}

.supreme-hero-title {
  font-size: 2.8rem;
  color: #00f0ff;
  text-shadow: 0 0 12px #ff00f7;
}

.supreme-hero-sub {
  font-size: 1.2rem;
  color: #ffffff;
  text-shadow: 0 0 6px #00f0ff;
  margin-top: 10px;
}

/* 🔧 Mobile Refinement */
@media (max-width: 768px) {
  .hero-intro {
    padding: 40px 16px 24px;
  }

  .supreme-hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    word-break: break-word;
  }

  .supreme-hero-sub {
    font-size: 1rem;
    line-height: 1.4;
  }

  .glow-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .site-header {
    padding: 20px 0 8px;
  }

  .glow-spin-logo {
    width: 90px;
  }
}
/* 🌟 NEW SUPREME PULSE BOX STYLES */
.new-pulse-box {
  margin: 50px auto;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 900px;
  box-shadow: inset 0 0 18px #00f0ff, inset 0 0 28px #ff00f7;
  animation: pulseBoxGlow 6s infinite ease-in-out;
  text-align: center;
  backdrop-filter: blur(10px);
}

/* 💫 NEW GLOWING SECTION TITLE */
.new-section-title {
  font-size: 2.5rem;
  color: #00f0ff;
  text-shadow: 0 0 12px #ff00f7, 0 0 20px #00f0ff;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* ✨ NEW SECTION BODY TEXT */
.new-section-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f2f2f2;
  text-align: center;
  padding: 0 10px;
  word-break: break-word;
}

/* 🌈 GLOWING PULSE ANIMATION */
@keyframes pulseBoxGlow {
  0% {
    box-shadow: inset 0 0 10px #00f0ff, inset 0 0 16px #ff00f7;
  }
  50% {
    box-shadow: inset 0 0 30px #00f0ff, inset 0 0 40px #ff00f7;
  }
  100% {
    box-shadow: inset 0 0 10px #00f0ff, inset 0 0 16px #ff00f7;
  }
}

/* 📱 MOBILE-ONLY SUPREME REFINEMENTS */
@media (max-width: 768px) {
  .new-pulse-box {
    padding: 25px 16px;
    margin: 30px 12px;
    border-radius: 13px;
    max-width: 95%;
    width: 85%;
    box-shadow: inset 0 0 12px #00f0ff, inset 0 0 24px #ff00f7;
  }

  .new-section-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .new-section-text {
    font-size: 1.02rem;
    line-height: 1.65;
    padding: 0 4px;
  }
}

/* 🔮 Glowing Pulse Box Container */
.pulse-box {
  max-width: 600px;
  margin: 50px auto;
  padding: 35px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 16px #00f0ff, inset 0 0 25px #ff00f7;
  animation: pulseBoxGlow 5s infinite ease-in-out;
  text-align: center;
}

@keyframes pulseBoxGlow {
  0% { box-shadow: inset 0 0 8px #00f0ff, inset 0 0 12px #ff00f7; }
  50% { box-shadow: inset 0 0 24px #00f0ff, inset 0 0 30px #ff00f7; }
  100% { box-shadow: inset 0 0 8px #00f0ff, inset 0 0 12px #ff00f7; }
}

.section-title {
  font-size: 2rem;
  color: #00f0ff;
  text-shadow: 0 0 10px #ff00f7;
  margin-bottom: 12px;
}

.section-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #f1f1f1;
}
@media (max-width: 768px) {
  .pulse-box {
    padding: 24px 16px;
    margin: 24px 12px;
    border-radius: 18px;
    max-width: 95%;
    text-align: center;
    box-shadow: inset 0 0 14px #00f0ff, inset 0 0 20px #ff00f7;
    animation: pulseBoxGlow 6s infinite ease-in-out;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #ff00f7, 0 0 12px #00f0ff;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 6px;
    word-break: break-word;
    text-align: center;
    color: #eaeaea;
  }
}

/* 📩 Glowing Form Fields - Refined & Centered */
.glow-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ✏️ Input, Textarea, Select Fields */
.glow-form input,
.glow-form textarea,
.glow-form select {
  width: 80%;
  max-width: 320px;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  box-shadow: inset 0 0 10px #00f0ff, inset 0 0 14px #ff00f7;
  transition: 0.3s ease;
}

.glow-form input::placeholder,
.glow-form textarea::placeholder {
  color: #cccccc;
}

/* 📝 Textarea Specific */
.glow-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* 🚀 Glowing Button */
.glow-form button {
  width: 80%;
  max-width: 320px;
  padding: 12px 0;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 14px #00f0ff, 0 0 26px #ff00f7;
  transition: 0.3s ease-in-out;
}

.glow-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px #ff00f7, 0 0 35px #00f0ff;
}


@media (max-width: 768px) {
  /* 🔥 Hero Section – Supreme Mobile Only */
  .hero-intro {
    padding: 30px 12px 20px;
    text-align: center;
  }

  .supreme-hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 0 0 10px #00f0ff, 0 0 12px #ff00f7;
  }

  .supreme-hero-sub {
    font-size: 1rem;
    line-height: 1.5;
    margin: 8px 0 0;
    text-shadow: 0 0 6px #00f0ff;
  }

  /* 💫 Pulse Box – Mobile Only */
  .pulse-box {
    width: 92%;
    max-width: none;
    padding: 24px 18px;
    margin: 24px auto;
    border-radius: 14px;
    box-shadow: inset 0 0 16px #00f0ff, inset 0 0 25px #ff00f7;
  }

  .section-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .section-text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    padding: 0 4px;
  }

  /* 📱 Form Layout */
  .glow-form {
    width: 100%;
    gap: 12px;
  }

  .glow-form input,
  .glow-form textarea,
  .glow-form select {
    width: 92%;
    max-width: none;
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .glow-form textarea {
    min-height: 100px;
  }

  .glow-form button {
    width: 92%;
    max-width: none;
    font-size: 1rem;
    padding: 12px;
    margin-top: 10px;
  }

  /* 🎬 Video Grid – Full Fluid */
  .video-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 20px;
  }

  iframe {
    width: 92vw;
    height: 200px;
    border-radius: 12px;
    border: 2px solid #00f0ff;
    box-shadow: 0 0 12px #ff00f7;
  }
}

/* 🧾 Cart List */
.cart-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.cart-list li {
  margin: 8px 0;
  padding: 8px 12px;
  border-left: 4px solid #ff00f7;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.checkout-btn {
  padding: 12px 24px;
  background: #00f0ff;
  border: none;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 0 12px #ff00f7, 0 0 18px #00f0ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: #ff00f7;
  color: #fff;
  transform: scale(1.05);
}
/* === SUPREME MEMORY GAME === */
.memory-game-section {
  text-align: center;
  padding: 40px 15px;
  margin: 20px auto;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 0 30px #00f0ff, 0 0 45px #ff00f7;
  border-radius: 16px;
  animation: pulseHero 10s infinite;
}

.game-title-block {
  text-align: center;
  margin-bottom: 20px;
}

.game-title-top {
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 0 0 10px #00f0ff, 0 0 30px #ff00f7;
  animation: titlePulse 5s infinite ease-in-out;
}

.game-title-sub {
  font-size: 1.5rem;
  color: #ccc;
  margin-top: 5px;
  text-shadow: 0 0 8px #ff00f7, 0 0 15px #00f0ff;
  animation: titlePulse 6s infinite alternate ease-in-out;
}

@keyframes titlePulse {
  0%, 100% { text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7; }
  50% { text-shadow: 0 0 20px #ff00f7, 0 0 35px #00f0ff; }
}

.restart-btn {
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  border: none;
  padding: 12px 25px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 0 15px #00f0ff, 0 0 25px #ff00f7;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.restart-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px #ff00f7, 0 0 45px #00f0ff;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}

.memory-card {
  width: 100px;
  height: 130px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.memory-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backface-visibility: hidden;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #ff00f7;
}

.card-front {
  background: rgba(0, 0, 0, 0.4);
}

.card-front-img {
  width: 60px;
  height: 60px;
  animation: spinPulse 20s infinite linear;
}

.card-back {
  background: linear-gradient(145deg, #ff00f7, #00f0ff);
  color: #fff;
  transform: rotateY(180deg);
  font-weight: bold;
  text-shadow: 0 0 5px #000;
}

.win-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.win-box {
  background: #111;
  padding: 40px;
  border: 2px solid #00f0ff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
  color: #fff;
}

@keyframes spinPulse {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulseHero {
  0%, 100% { box-shadow: 0 0 40px #00f0ff, 0 0 60px #ff00f7; }
  50% { box-shadow: 0 0 60px #ff00f7, 0 0 90px #00f0ff; }
}

@media (max-width: 768px) {
  .memory-game-section {
    max-width: 100%;
    padding: 20px 10px;
    margin: 20px auto;
    box-shadow: 0 0 20px #00f0ff, 0 0 35px #ff00f7;
    border-radius: 14px;
  }

  .game-title-top {
    font-size: 1.8rem;
  }

  .game-title-sub {
    font-size: 1.1rem;
  }

  .memory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 Enforce 3 per row */
    gap: 12px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 95vw; /* ✅ Flexible for smaller screens */
    margin: 0 auto;
  }

  .memory-card {
    width: 80px;
    height: 110px;
  }

  .card-front-img {
    width: 45px;
    height: 45px;
  }

  .restart-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .win-box {
    padding: 30px;
    font-size: 0.95rem;
    border-radius: 16px;
  }
}

.subscribe-box {
  text-align: center;
  margin: 1rem 0 2rem;
}

.subscribe-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff0000, #cc0000);
  color: #fff;
  padding: 0.8rem 1.8rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 0 15px #ff0000, 0 0 30px #cc0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseSubBtn 2s infinite;
}

.subscribe-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff0000, 0 0 40px #cc0000;
}

@keyframes pulseSubBtn {
  0%, 100% {
    box-shadow: 0 0 15px #ff0000, 0 0 30px #cc0000;
  }
  50% {
    box-shadow: 0 0 25px #ff3333, 0 0 45px #ff6666;
  }
}

/* 🎷 A3s World Supreme Footer Style */
.site-footer {
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 20px;
  color: #ffffff;
  text-align: center;
  border-top: 2px solid #00f0ff;
  box-shadow: 0 0 25px #ff00f7;
  z-index: 10;
  position: relative;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔗 Footer Links */
.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #00f0ff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff00f7;
}

/* 🔗 Social Icons Container */
.social-icons {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* 🌟 Glowing Circular Social Icons */
.social-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 8px;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  font-size: 20px;
  color: #ae4dab;
  background: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  box-shadow: 0 0 10px #00f0ff, 0 0 18px #ff00f7;
  transition: all 0.3s ease-in-out;
  animation: glowPulse 3s infinite ease-in-out;
}

.social-glow:hover {
  background: #00f0ff;
  color: #000;
  transform: scale(1.15) rotate(4deg);
  box-shadow: 0 0 25px #ff00f7, 0 0 35px #00f0ff;
}

/* 💫 Glowing Pulse Animation */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 8px #00f0ff, 0 0 15px #ff00f7;
  }
  50% {
    box-shadow: 0 0 16px #ff00f7, 0 0 30px #00f0ff;
  }
  100% {
    box-shadow: 0 0 8px #00f0ff, 0 0 15px #ff00f7;
  }
}

/* 👣 Footer Credit Text */
.footer-credit {
  margin-top: 20px;
  font-size: 13px;
  color: #cccccc;
  text-shadow: 0 0 5px #00f0ff;
  font-style: italic;
}

/* 📱 Responsive Enhancements */
@media (max-width: 768px) {
  .footer-links a {
    display: block;
    margin: 6px 0;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-credit {
    font-size: 12px;
    margin-top: 15px;
  }
}
/* 🛸 A3Fly Supreme Animation */
.a3fly-container {
  position: fixed;
  top: 20px;
  left: 100vw; /* Start fully off-screen right */
  width: 275px;
  height: 80px;
  pointer-events: none;
  z-index: 9999;
  animation: flyOneWay 12s linear infinite;
  opacity: 0;
}

/* 🚀 Glowing Fly Image */
.a3fly {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 6px #00f0ff) drop-shadow(0 0 14px #ff00f7);
  animation: flyTrail 2s infinite ease-in-out;
}

/* ✨ Trail Pulse Animation */
@keyframes flyTrail {
  0% {
    filter: drop-shadow(0 0 6px #00f0ff) drop-shadow(0 0 14px #ff00f7);
    transform: scale(1) rotate(0deg);
  }
  50% {
    filter: drop-shadow(0 0 12px #ff00f7) drop-shadow(0 0 24px #00f0ff);
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    filter: drop-shadow(0 0 6px #00f0ff) drop-shadow(0 0 14px #ff00f7);
    transform: scale(1) rotate(0deg);
  }
}

/* 🛸 One-Way Right to Left */
@keyframes flyOneWay {
  0% {
    left: 100vw;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    left: -300px;
    opacity: 1;
  }
  100% {
    left: -300px;
    opacity: 0;
  }
}
/* 🤖 Alfred Floating Sidebar */
.alfred-container {
  position: fixed;
  bottom: 50px; /* ⬆️ moved up slightly */
  right: 25px;
  width: 200px;
  text-align: center;
  z-index: 9999;
  animation: floatAlfred 6s ease-in-out infinite;
  pointer-events: none;
}

.alfred-title {
  color: #00f0ff;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: 0 0 10px #ff00f7, 0 0 15px #00f0ff;
  animation: glowPulse 4s infinite ease-in-out;
}

.alfred-image {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 0 10px #00f0ff) drop-shadow(0 0 20px #ff00f7);
  animation: glowPulse 3s infinite ease-in-out;
}

.alfred-quote {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
  animation: quoteFade 6s ease-in-out infinite;
}

/* ✨ Pulse & Float Effects */
@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px #00f0ff) drop-shadow(0 0 20px #ff00f7);
  }
  50% {
    filter: drop-shadow(0 0 20px #ff00f7) drop-shadow(0 0 40px #00f0ff);
  }
}

@keyframes floatAlfred {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes quoteFade {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
/* ⚽ SUPREME FLOATING SPORTS BALLS */
.floating-ball {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  pointer-events: none;
  animation: floatBall linear infinite;
  box-shadow: 0 0 12px #00f0ff, 0 0 22px #ff00f7;
  background: radial-gradient(circle, #fff, #00f0ff, #ff00f7);
  color: white;
}

/* 🎯 Animated float path */
@keyframes floatBall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-60vh) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.2;
  }
}
@media (max-height: 700px) {
  .alfred-container {
    bottom: 100px;
  }
}

@media (min-height: 701px) {
  .alfred-container {
    bottom: 140px;
  }
}

/* 🐭 SUPREME GLOWING MOUSE TRAIL */
.mouse-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #00f0ff, #ff00f7);
  box-shadow: 0 0 12px #00f0ff, 0 0 25px #ff00f7;
  opacity: 0.85;
  z-index: 99999;
  animation: trailPulse 1.5s ease-out forwards;
}

@keyframes trailPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}
/* 🎉 Signup Popup */
.signup-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.5s ease-out;
}

.signup-message {
  background: #111;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 25px #00f0ff, 0 0 50px #ff00f7;
  animation: popUp 0.8s ease-out;
}

.signup-message h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #ff00f7, 0 0 12px #00f0ff;
}

.signup-message p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
}

.signup-message button {
  padding: 12px 24px;
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 15px #ff00f7, 0 0 25px #00f0ff;
  transition: 0.3s;
}

.signup-message button:hover {
  transform: scale(1.1);
}

/* ✨ Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* 💌 Centered Contact Form Styling */
.pulse-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  max-width: 400px;
  width: 45%;
  box-shadow: inset 0 0 12px #00f0ff, inset 0 0 20px #ff00f7;
  animation: pulseBoxGlow 6s infinite ease-in-out;
}

/* 💬 Glowing Form */
.glow-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.glow-form input,
.glow-form textarea {
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: inset 0 0 6px #00f0ff, inset 0 0 10px #ff00f7;
  outline: none;
  transition: 0.3s ease;
  width: 100%;
}

.glow-form input::placeholder,
.glow-form textarea::placeholder {
  color: #cccccc;
}

.glow-form input:focus,
.glow-form textarea:focus {
  box-shadow: 0 0 15px #ff00f7, 0 0 25px #00f0ff;
  background: rgba(255, 255, 255, 0.12);
}

.glow-form textarea {
  min-height: 140px;
  resize: vertical;
}

.glow-form button {
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  color: #000;
  font-weight: bold;
  font-size: 1.15rem;
  padding: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 25px #ff00f7, 0 0 35px #00f0ff;
  transition: 0.3s ease;
}

.glow-form button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff00f7, #00f0ff);
}

/* 🎉 Popup Message Styling */
.popup-message {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease-out;
}

.popup-box {
  background: #111;
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  color: #ffffff;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 28px #00f0ff, 0 0 55px #ff00f7;
  animation: popUp 0.6s ease-out;
}

.popup-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 12px #ff00f7, 0 0 25px #00f0ff;
}

.popup-box p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 25px;
}

.popup-box button {
  padding: 14px 28px;
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  border: none;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 22px #ff00f7, 0 0 35px #00f0ff;
  transition: 0.3s ease;
}

.popup-box button:hover {
  transform: scale(1.1);
}

/* ✨ Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseBoxGlow {
  0%, 100% {
    box-shadow: inset 0 0 12px #00f0ff, inset 0 0 20px #ff00f7;
  }
  50% {
    box-shadow: inset 0 0 22px #ff00f7, inset 0 0 30px #00f0ff;
  }
}
/* 🎞️ Watch Section Wrapper */
.pulse-box {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  margin: 60px auto;
  max-width: 950px;
  box-shadow: inset 0 0 20px #00f0ff, inset 0 0 40px #ff00f7;
  animation: pulseBoxGlow 6s infinite ease-in-out;
  text-align: center;
}

/* ✨ Title Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
  margin-bottom: 20px;
}

.section-text {
  font-size: 1.15rem;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-shadow: 0 0 4px #00f0ff;
}
/* 🎬 Supreme New Video Grid */
.new-video-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10px;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 20px;
  box-shadow: 0 0 30px #00f0ff55, 0 0 60px #ff00f755;
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
}

/* 📺 Glowing Video Frame */
.new-video-grid iframe {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border: 4px solid #111;
  border-radius: 16px;
  background: #000;
  box-shadow: 0 0 20px #00f0ff88, 0 0 40px #ff00f7aa;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.new-video-grid iframe:hover {
  transform: scale(1.01);
  box-shadow: 0 0 30px #ff00f7cc, 0 0 50px #00f0ffcc;
}

/* 🌐 Responsive Styling */
@media (max-width: 768px) {
  .new-video-grid {
    padding: 20px 10px;
  }

  .new-video-grid iframe {
    max-width: 100%;
  }
}

/* 🛍️ Shop Section Layout */
.shop-section {
  padding: 60px 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 30px #00f0ff, 0 0 50px #ff00f7;
  max-width: 1000px;
  margin: 60px auto 80px; /* Increased top margin to 60px */
}


/* 📘 Full Width Centered Book */
.shop-single {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* 👕🧥 T-Shirt & Hoodie Side by Side */
.shop-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* 🎁 Individual Item Container */
.shop-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 0 15px #00f0ff77, 0 0 30px #ff00f766;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 320px;
  max-width: 400px;
}

.shop-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px #ff00f7aa, 0 0 45px #00f0ffaa;
}

.shop-item img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 20px;
  background: #111;
  padding: 10px;
  box-shadow: 0 0 10px #00f0ff99;
}

/* 📦 Item Titles & Prices */
.shop-item h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #00f0ff;
}

.shop-item p {
  color: #00f0ff;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

/* 🎯 Select & Input Fields */
.shop-item label {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 0 4px #ff00f7;
}

.shop-item select,
.shop-item .qty-input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 6px #00f0ff, inset 0 0 10px #ff00f7;
  transition: 0.3s ease;
}

.shop-item select:focus,
.shop-item .qty-input:focus {
  box-shadow: 0 0 12px #00f0ff, 0 0 22px #ff00f7;
  outline: none;
}

/* 💎 Add to Cart Button */
.add-cart-btn {
  margin-top: 16px;
  padding: 12px 20px;
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  font-size: 1rem;
  box-shadow: 0 0 15px #ff00f7, 0 0 25px #00f0ff;
  cursor: pointer;
  transition: 0.3s ease;
}

.add-cart-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff00f7, #00f0ff);
}

/* 🧾 Cart Section */
.cart-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: center;
}

.cart-list li {
  color: #fff;
  margin: 10px 0;
  text-shadow: 0 0 5px #00f0ff;
}

/* 💳 Checkout Button */
.checkout-btn {
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(45deg, #00f0ff, #ff00f7);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 0 25px #ff00f7, 0 0 40px #00f0ff;
  transition: all 0.3s ease-in-out;
}

.checkout-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(45deg, #ff00f7, #00f0ff);
}
.delete-btn {
  background: transparent;
  color: red;
  border: none;
  font-size: 1rem;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

.delete-btn:hover {
  transform: scale(1.2);
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .shop-row {
    flex-direction: column;
    align-items: center;
  }

  .shop-item {
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .alfred-container {
    display: none !important;
  }
}
/* 🌟 Standard Glowing Contact Form */
.contact-form-box {
  max-width: 480px;
  margin: 60px auto;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 20px #00f0ff, 0 0 35px #ff00f7;
  animation: pulseBoxGlow 6s infinite ease-in-out;
  text-align: center;
}

/* ✍️ Input Fields */
.glow-form input,
.glow-form textarea {
  width: 100%;
  padding: 12px 1px;
  margin-bottom: 18px;
  background: #000;
  border: 1px solid #00f0ff;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #ff00f7;
  transition: all 0.3s ease-in-out;
}

.glow-form input:focus,
.glow-form textarea:focus {
  outline: none;
  box-shadow: 0 0 16px #00f0ff, 0 0 26px #ff00f7;
}

/* 📝 Textarea */
.glow-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* 🚀 Submit Button */
.glow-form button {
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(90deg, #00f0ff, #ff00f7);
  border: none;
  border-radius: 12px;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 12px #00f0ff, 0 0 25px #ff00f7;
  transition: all 0.3s ease-in-out;
}

.glow-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #ff00f7, 0 0 35px #00f0ff;
}
@keyframes pulseBoxGlow {
  0%, 100% {
    box-shadow: 0 0 20px #00f0ff, 0 0 35px #ff00f7;
  }
  50% {
    box-shadow: 0 0 30px #ff00f7, 0 0 45px #00f0ff;
  }
}
/* 🎬 A3sWorld Video Box Styling */
.video-box {
  max-width: 660px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 18px;
  box-shadow: 0 0 25px #00f0ff, 0 0 45px #ff00f7;
  text-align: center;
}

/* 📺 Video Element Styling */
.a3s-video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 3px solid #00f0ff;
  box-shadow: 0 0 15px #00f0ff88, 0 0 30px #ff00f788;
  background-color: #000;
}
.coming-soon {
  background-color: #555;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.6;
  box-shadow: none;
}

/* 💥 Supreme Glowing Promo Side Container */
.promo-side-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px;
  margin: 60px auto;
  max-width: 960px;
  box-shadow: 0 0 25px #00f0ff, 0 0 35px #ff00f7;
  position: relative;
  animation: floatGlowIn 1.2s ease-in-out;
}

/* 🔥 Badge */
.promo-side-container .promo-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  color: #000;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  box-shadow: 0 0 14px #FFD700, 0 0 24px #BA55D3;
  animation: supremePulse 3s infinite alternate;
  z-index: 9;
}

/* 📦 Left & Right Columns */
.promo-side-column {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 10px #00f0ff, inset 0 0 20px #ff00f7;
  transition: transform 0.4s ease;
}

.promo-side-column:hover {
  transform: scale(1.03);
}

/* 📚 Shared Elements */
.promo-book-img {
  width: 100%;
  max-width: 180px;
  border-radius: 12px;
  box-shadow: 0 0 14px #00f0ff, 0 0 22px #ff00f7;
  margin-bottom: 14px;
}

.promo-title {
  color: #00f0ff;
  font-size: 1.3rem;
  text-shadow: 0 0 6px #ff00f7;
  margin-bottom: 10px;
}

.promo-price {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.promo-music-player {
  margin-top: 10px;
}

.promo-music-player summary {
  cursor: pointer;
  list-style: none;
}

/* 🎧 Audio Styling */
.a3-audio {
  margin-top: 12px;
  width: 100%;
  outline: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 8px #00f0ff, 0 0 12px #ff00f7;
}

/* 📱 Responsive Mobile */
@media screen and (max-width: 768px) {
  .promo-side-container {
    flex-direction: column;
    padding: 25px;
  }
  .promo-side-column {
    padding: 10px;
  }
}
/* 💫 Supreme Glowing Button */
.glow-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  background: linear-gradient(90deg, #FFD700, #BA55D3);
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  transition: all 0.4s ease;
  animation: supremePulse 4s infinite alternate;
}

.glow-btn:hover {
  background: linear-gradient(90deg, #BA55D3, #FFD700);
  color: #fff;
  box-shadow: 0 0 25px #FFD700, 0 0 40px #BA55D3;
}

/* ✨ Glow Pulse Animation */
@keyframes supremePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px #FFD700, 0 0 30px #BA55D3;
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 25px #FFD700, 0 0 40px #BA55D3;
  }
}
.shop-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.bn-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: black;
  background: linear-gradient(90deg, #00ffcc, #0099ff);
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 0 15px #00ffcc, 0 0 30px #0099ff;
  transition: all 0.4s ease;
  animation: supremePulse 4s infinite alternate;
}

.bn-btn:hover {
  background: linear-gradient(90deg, #0099ff, #00ffcc);
  box-shadow: 0 0 25px #0099ff, 0 0 40px #00ffcc;
}
