/* @VOIC SOCIETY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #ad1eca;
    --primary-dark: #7520a4;
    --primary-darker: #5e226d;
    --background: #0f0c0f;
    --background-light: #321d37;
    --background-lighter: #3f1050;
    --text: #ccc2d4;
    --text-light: #ffffff;
    --accent: #65b4c8;
    --border-radius: 8px;
    --card-border-radius: 12px;
    --transition: all 0.3s ease;
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('https://ext.same-assets.com/3981931922/250754485.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
      Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Button Styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
  }
  
  .btn span {
    margin-left: 6px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
  }
  
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(173, 30, 202, 0.4);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
  }
  
  .btn-purchase {
    width: 100%;
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 15px;
  }
  
  .btn-purchase:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    transform: translateY(-2px);
  }
  
  .btn-discord {
    background: #5865F2;
    color: var(--text-light);
  }
  
  .btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
  }
  
  .btn-chat {
    background: var(--background-lighter);
    color: var(--text-light);
  }
  
  .btn-chat:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
  
  /* Announcement Bar */
  .announcement-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--text-light);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.875rem;
  }
  
  /* Header/Nav */
  .header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 12, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
  }
  
  .logo img {
    height: 32px;
    margin-right: 10px;
  }
  
  .main-nav ul {
    display: flex;
    gap: 30px;
  }
  
  .main-nav a {
    font-weight: 500;
    transition: var(--transition);
  }
  
  .main-nav a:hover {
    color: var(--primary);
  }
  
  .mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: var(--transition);
  }
  
  /* Mobile menu styles */
  @media (max-width: 768px) {
    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: var(--background);
      border-left: 1px solid rgba(255, 255, 255, 0.05);
      padding: 80px 30px 30px;
      z-index: 900;
      transition: right 0.3s ease;
    }
  
    .main-nav.active {
      right: 0;
    }
  
    .main-nav ul {
      flex-direction: column;
      gap: 20px;
    }
  
    .mobile-menu-btn {
      z-index: 1000;
    }
  
    .mobile-menu-btn.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
  
    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
    }
  
    .mobile-menu-btn.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, rgba(126, 32, 168, 0.2), transparent);
    margin-bottom: 20px;
  }
  
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text);
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Ticker */
  .ticker {
    width: 100%;
    background-color: var(--background-light);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
  }
  
  .ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
  }
  
  .ticker span {
    display: inline-block;
    padding: 0 40px;
    color: var(--text);
    font-weight: 500;
  }
  
  @keyframes ticker {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(173, 30, 202, 0.2);
    border-radius: 30px;
    font-size: 0.875rem;
    margin-bottom: 15px;
    color: var(--primary);
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
  }
  
  .section-header .asterisk {
    color: var(--primary);
    font-size: 2.5rem;
  }
  
  /* About Section */
  .about {
    padding: 100px 0;
  }
  
  .about-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }
  
  .about-image {
    flex: 1;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    position: relative;
  }
  
  .about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(173, 30, 202, 0.3), rgba(101, 180, 200, 0.1));
    z-index: 1;
    border-radius: var(--card-border-radius);
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
  }
  
  .about-text {
    flex: 1.2;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .features-list {
    margin-top: 30px;
  }
  
  .features-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }
  
  .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
  }
  
  /* Products Section */
  .products {
    padding: 80px 0;
    background-color: rgba(15, 12, 15, 0.8);
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .product-card {
    background: linear-gradient(145deg, rgba(50, 29, 55, 0.8), rgba(63, 16, 80, 0.8));
    border-radius: var(--card-border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(173, 30, 202, 0.2), transparent);
    z-index: 0;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(173, 30, 202, 0.3);
  }
  
  .product-icon {
    height: 100px;
    width: 100px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
  }
  
  .product-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  
  .product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
  }
  
  .product-card p {
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
  }
  
  /* Features Section */
  .features {
    padding: 100px 0;
    background-color: var(--background);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px;
    border-radius: var(--card-border-radius);
    background-color: rgba(50, 29, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(63, 16, 80, 0.4);
    border-color: rgba(173, 30, 202, 0.2);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
  }
  
  /* Support Section */
  .support {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(126, 32, 168, 0.2), rgba(101, 180, 200, 0.1));
    text-align: center;
  }
  
  .support-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--text-light);
  }
  
  .support h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .support p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  .support-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  /* Footer */
  .footer {
    background-color: var(--background);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  
  .footer-logo img {
    height: 40px;
    margin-bottom: 20px;
  }
  
  .footer-logo p {
    opacity: 0.7;
  }
  
  .footer-links h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    opacity: 0.7;
  }
  
  .footer-links a:hover {
    opacity: 1;
    color: var(--primary);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    opacity: 0.7;
  }
  
  /* Show animation */
  .product-card, .feature-card, .about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .product-card.show, .feature-card.show, .about-image.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .about-content {
      flex-direction: column;
    }
  
    .about-image {
      margin-bottom: 40px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .main-nav {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .support h2 {
      font-size: 1.8rem;
    }
  
    .support-buttons {
      flex-direction: column;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 50px 0;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Animations */
  @keyframes glow {
    0% {
      box-shadow: 0 0 5px rgba(173, 30, 202, 0.3);
    }
    50% {
      box-shadow: 0 0 20px rgba(173, 30, 202, 0.6);
    }
    100% {
      box-shadow: 0 0 5px rgba(173, 30, 202, 0.3);
    }
  }
  
  .product-card:hover .product-icon {
    animation: glow 2s infinite;
  }
  
  /* About US*/

  #about-us .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  #about-us .section-badge {
    background-color: #321d37;
    color: #ad1eca;
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 1px;
    font-size: 1rem;
  }
  
  #about-us h2 {
    font-size: 2.5rem;
    color: var(--text-light);
  }
  
.section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-badge-container {
    display: block;
    text-align: center;
    margin-bottom: 0.1rem;
  }
  
  .section-badge {
    font-size: 1.25rem;
    color: #ad1eca;
    background-color: #321d37; 
    padding: 8px 16px;
    border-radius: 20px;
  }
  
.container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }


@keyframes pulseEffect {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(173, 30, 202, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(173, 30, 202, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(173, 30, 202, 0.3);
  }
}

@keyframes neonGlow {
  0% {
    border-color: transparent;
    box-shadow: 0 0 10px rgba(173, 30, 202, 0.5);
  }
  50% {
    border-color: #ad1eca;
    box-shadow: 0 0 25px rgba(173, 30, 202, 0.8), 0 0 50px rgba(173, 30, 202, 0.6);
  }
  100% {
    border-color: transparent;
    box-shadow: 0 0 10px rgba(173, 30, 202, 0.5);
  }
}

@keyframes hoverPulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0px #ad1eca;
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 15px #ad1eca;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0px #ad1eca;
  }
}

.product-categories {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: transparent;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 2px solid transparent;
  animation: neonGlow 4s ease-in-out infinite, pulseEffect 5s ease-in-out infinite;
}

.category-btn {
  padding: 14px 30px;
  background-color: rgb(37, 34, 34);
  border: 2px solid #ad1eca;
  border-radius: 14px;
  cursor: pointer;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(173, 30, 202, 0.3);
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  letter-spacing: 0.8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 1;
}


.category-btn::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, #ad1eca 10%, transparent 10.01%);
  background-size: 10px 10px;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 0;
}

.category-btn:hover::after {
  opacity: 0.2;
  transform: translate(-50%, -50%) scale(1.5);
}

.category-btn:hover {
  animation: hoverPulseGlow 0.6s ease-in-out;
  color: white;
  background-color: #2a272a;
  box-shadow: 0 0 12px #ad1eca, 0 0 20px rgba(173, 30, 202, 0.4);
  transform: translateY(-2px);
}

/* Active Category Button */
.category-btn.active {
  background-color: #ad1eca;
  color: white;
  transform: scale(1.08);
  box-shadow: 0 0 16px #ad1eca, 0 0 30px rgba(173, 30, 202, 0.5);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  padding: 20px;
  border: 2px solid #ad1eca;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.btn-purchase {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #ad1eca;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-purchase:hover {
  background-color: #6a0dad;
  transform: translateY(-5px);
}

.btn-purchase:active {
  transform: translateY(2px);
}

.product-card {
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Glowing snake border animation */
.product-card::before,
.product-card::after,
.product-card span::before,
.product-card span::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #ff00cc, #ad1eca, #ff00cc);
  border-radius: 2px;
  filter: drop-shadow(0 0 6px #ad1eca);
}

/* Top border animation */
.product-card::before {
  height: 3px;
  width: 0%;
  top: 0;
  left: 0;
  animation: snakeTop 2s linear infinite;
}

/* Right border animation */
.product-card::after {
  width: 3px;
  height: 0%;
  top: 0;
  right: 0;
  animation: snakeRight 2s linear infinite 0.5s;
}

/* Bottom border animation */
.product-card span::before {
  height: 3px;
  width: 0%;
  bottom: 0;
  right: 0;
  animation: snakeBottom 2s linear infinite 1s;
}

/* Left border animation */
.product-card span::after {
  width: 3px;
  height: 0%;
  bottom: 0;
  left: 0;
  animation: snakeLeft 2s linear infinite 1.5s;
}

/* Internal span wrapper */
.product-card span {
  position: relative;
  z-index: 2;
}

/* Border travel animations */
@keyframes snakeTop {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; }
}

@keyframes snakeRight {
  0% { height: 0; }
  50% { height: 100%; }
  100% { height: 0; }
}

@keyframes snakeBottom {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; }
}

@keyframes snakeLeft {
  0% { height: 0; }
  50% { height: 100%; }
  100% { height: 0; }
}

/* METEOR */

.meteor-shower {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; /* ✅ Send it to the very back */
}


.meteor {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 2px;
  height: 80px;
  background: linear-gradient(135deg, #ff00cc, transparent);
  opacity: 0;
  animation: meteorDiagonalLeft 5s linear infinite;
  border-radius: 50%;
  transform: rotate(-45deg);
  filter: blur(1px) drop-shadow(0 0 6px #ad1eca);
  z-index: 0;
}



.meteor:nth-child(1) { top: -50px; right: -100px; animation-delay: 0s; }
.meteor:nth-child(2) { top: -80px; right: -200px; animation-delay: 1s; }
.meteor:nth-child(3) { top: -30px; right: -300px; animation-delay: 2s; }
.meteor:nth-child(4) { top: -100px; right: -400px; animation-delay: 3s; }
.meteor:nth-child(5) { top: -70px; right: -500px; animation-delay: 4s; }
.meteor:nth-child(6) { top: -90px; right: -150px; animation-delay: 0.5s; }
.meteor:nth-child(7) { top: -40px; right: -250px; animation-delay: 1.8s; }
.meteor:nth-child(8) { top: -60px; right: -350px; animation-delay: 2.5s; }
.meteor:nth-child(9) { top: -85px; right: -450px; animation-delay: 3.3s; }
.meteor:nth-child(10) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(11) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(12) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(13) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(14) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(15) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(16) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(17) { top: -95px; right: -50px; animation-delay: 4.1s; }
.meteor:nth-child(18) { top: -95px; right: -50px; animation-delay: 4.1s; }



/* Animate diagonally */
@keyframes meteorDiagonalLeft {
  0% {
    transform: translate(0, 0) rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(-100vw, 100vh) rotate(-45deg);
    opacity: 0;
  }
}


.meteor {
  filter: blur(1px) drop-shadow(0 0 6px #ff00cc);
}

.meteor-shower {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(#ffffff22 1px, transparent 1px);
  background-size: 3px 3px;
  animation: twinkle 2s infinite alternate;
  z-index: -2; /* behind the meteors */
  pointer-events: none;
}

@keyframes twinkle {
  0% { opacity: 0.2; }
  100% { opacity: 0.5; }
}
    