/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: url("img/background.jpg") no-repeat center/cover fixed;
  color: white;
}

/* GLASS EFFECT */
.glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

/* LOGO */
.navbar .logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Slight glow to match your theme */
.navbar .logo img {
  filter: drop-shadow(0 0 12px rgba(0, 246, 255, 0.45));
}

@media (max-width: 600px) {
  .navbar .logo img {
    height: 40px;
  }
}



.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00f6ff;
}

.mobile-menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.hero h1 {
  font-size: 45px;
  line-height: 58px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg,#00c8ff,#0062ff);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* SECTIONS */
section {
  padding: 100px 60px;
  text-align: center;
}

h2 {
  font-size: 35px;
}

/* FEATURES */
.feature-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

/* HOW IT WORKS */
.steps {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.step {
  width: 150px;
}

.step span {
  font-size: 40px;
  font-weight: 700;
  color: #00f6ff;
}

/* TICKETS */
.ticket-container,
.winner-grid,
.board {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ticket-container img,
.winner-grid img,
.board img {
  width: 230px;
  border-radius: 10px;
}


/* POPUP FORM */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup {
  width: 90%;
  max-width: 420px;
  padding: 25px;
  text-align: center;
  position: relative;
}

.popup h2 {
  margin-bottom: 20px;
}

.popup input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
}

.popup input::placeholder {
  color: #eee;
}

.full-btn {
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}



/* FOOTER */
footer {
  text-align: center;
  padding: 25px;
  background: rgba(0,0,0,0.5);
}

/* RESPONSIVE */
@media(max-width:900px){
  /* Default: Desktop */
.nav-links {
  display: flex;
  gap: 25px;
}

/* Mobile */
@media(max-width:900px){
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgb(0 0 0 / 89%);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 180px;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
  }

  /* SHOW MENU CLASS */
  .nav-links.show {
    display: flex;
  }
}


  .mobile-menu-btn {
    display: block;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .ticket-container {
    flex-direction: column;
    align-items: center;
  }
}

/* FLOATING NUMBER BALLS BACKGROUND */
.bubble-area {
  position: fixed;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffffcc;
  font-weight: 600;
  font-size: 20px;
  backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 12px rgba(0,255,255,0.5);
  animation: floatUp linear infinite;
  opacity: 0.85;
}

@keyframes floatUp {
  0% {
    transform: translateY(120vh) scale(0.9);
    opacity: 0;
  }
  20% { opacity: 0.85; }
  100% {
    transform: translateY(-20vh) scale(1.2);
    opacity: 0;
  }
}
/* MOUSE BURST EFFECT */
#mouseBurstArea {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.mouse-burst {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(0, 247, 255, 0.6);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7);
  transform: translate(-50%, -50%);
  animation: burstAnimation 0.6s ease-out forwards;
}

@keyframes burstAnimation {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
}

/* PRICING MODAL */
.pricing-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.pricing-modal {
  background: #0f172a;
  color: #ffffff;
  padding: 40px 20px;
  border-radius: 22px;
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.pricing-modal .close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
}

.pricing-modal h1 {
  text-align: center;
  font-size: 2.7rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-modal p {
  text-align: center;
  opacity: 0.85;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.plan-card {
  position: relative;
  padding: 30px;
  border-radius: 22px;
  background: #1e293b;
  border: 1px solid #334155;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: float 6s ease-in-out infinite;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: 0.4s;
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 25px 70px rgba(79, 172, 254, 0.35);
}

.plan-card.best {
  border: 2px solid #00f2fe;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.45);
}

.badge {
  position: absolute;
  top: 16px;
  right: -45px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: #001;
  padding: 8px 55px;
  font-size: 0.85rem;
  font-weight: 700;
  transform: rotate(45deg);
}

.plan-title {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.duration {
  opacity: 0.8;
  font-size: 0.95rem;
}

.price {
  margin: 22px 0;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.6;
}

.new-price {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.save {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #9ff;
}

.plan-card button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  color: #001;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.plan-card button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.plan-card button:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 35px rgba(0, 242, 254, 0.45);
}

.plan-card button:active::before {
  width: 300px;
  height: 300px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.plan-card:nth-child(2) { animation-delay: 1s; }
.plan-card:nth-child(3) { animation-delay: 2s; }
.plan-card:nth-child(4) { animation-delay: 3s; }

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 600px) {
  .pricing-modal h1 {
    font-size: 2.1rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    padding: 20px;
  }
}

/* FLOATING ACTION BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.whatsapp-btn, .call-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-btn {
  background: #25d366;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.call-btn {
  background: #00bcd4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn:hover, .call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
  }
  .floating-buttons {
    bottom: 30px;
    right: 20px;
  }
}

