/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
}

header .logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #6A0DAD, #1DA1F2, #00FFD0, #6A0DAD 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 2px 2px 12px rgba(26, 13, 173, 0.2), 0 2px 8px #0002;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 8px;
    display: inline-block;
    text-transform: uppercase;
    transition: text-shadow 0.3s;
}
header .logo:hover {
    text-shadow: 0 0 20px #1DA1F2, 0 2px 8px #0002;
    cursor: pointer;
}
nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    margin: 0 10px;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

nav a.active, nav a:hover {
    background: gold;
    color: #000;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0,0,0,0.7);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero .tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    background: linear-gradient(45deg, gold, purple);
    color: #fff;
    padding: 12px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px gold;
}

.carousel {
    text-align: center;
    padding: 40px 20px;
}

.carousel h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-container img {
    width: 100%;
    display: none;
    transition: opacity 0.5s ease-in-out;
}

.carousel-container img.active {
    display: block;
}

.membership-tiers {
    text-align: center;
    padding: 40px 20px;
}

.membership-tiers h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tiers .card {
    padding: 20px;
    width: 150px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.tiers .card:hover {
    transform: scale(1.05);
}

.tiers .basic { background: #555; }
.tiers .silver { background: silver; color: #000; }
.tiers .gold { background: gold; color: #000; }
.tiers .platinum { background: #e5e4e2; color: #000; }
.tiers .vip { background: linear-gradient(45deg, gold, purple); }

.live-stats {
    text-align: center;
    padding: 40px 20px;
}

.live-stats h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.live-stats ul {
    list-style: none;
    padding: 0;
}

.live-stats ul li {
    margin: 5px 0;
    font-style: italic;
}
.prince-video {
  max-width: 300px; /* Control video width */
  margin: 20px auto;
  border: 3px solid gold;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px gold;
}

.prince-video video {
  width: 100%; /* Makes video responsive */
  height: auto;
}
.special-border {
  border: 3px solid gold;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px gold;
  background: url('images/flower-frame.png') center center no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.special-border::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('images/flower-frame.png') center center no-repeat;
  background-size: contain;
  opacity: 0.1;
  z-index: 0;
}

.special-border h2, .special-border ul {
  position: relative;
  z-index: 1;
}



footer {
    background: #000;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    color: #aaa;
}
.membership-form {
  max-width: 500px;
  margin: 40px auto;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.membership-form h1 {
  text-align: center;
  margin-bottom: 15px;
}

.membership-form p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1rem;
}

.membership-form input, .membership-form select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.membership-form .file-upload {
  display: block;
  margin: 15px 0;
  cursor: pointer;
}

.membership-form .file-upload input {
  display: none;
}

.membership-form button {
  width: 100%;
  margin-top: 15px;
}
/* Glow Animation */
@keyframes glowForm {
  0% { box-shadow: 0 0 5px gold; }
  50% { box-shadow: 0 0 20px gold; }
  100% { box-shadow: 0 0 5px gold; }
}

.membership-form.glow {
  animation: glowForm 2s ease-in-out;
}

.testimonials {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.testimonials h1 {
  margin-bottom: 30px;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  text-align: center;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.4;
}
.about {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.about h1 {
  margin-bottom: 20px;
}

.about p {
  margin: 15px 0;
  font-size: 1.1rem;
}
.contact {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.contact h1 {
  margin-bottom: 15px;
}

.contact a.cta-btn {
  display: inline-block;
  margin: 15px 0;
}
/* Ticker Effect */
.ticker {
  background: #6A0DAD;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 8px 0;
  position: relative;
}

.scrolling-name {
  display: inline-block;
  padding-left: 100%;
  animation: slide 15s linear infinite;
}

@keyframes slide {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.badge {
  color: gold;
  margin: 0 10px;
  font-size: 1.5rem;
}
/* Mobile Responsive Styles */
@media (max-width: 600px) {
  body {
    font-size: 1rem;
    padding: 0 5px;
  }

  header .logo {
    font-size: 1.3rem;
  }

  nav a {
    display: block;
    margin: 8px 0;
    padding: 10px;
    font-size: 1rem;
  }

  .hero {
    padding: 30px 5px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .carousel-container {
    max-width: 100%;
    border-radius: 8px;
  }

  .membership-tiers, .live-stats, .testimonials, .about, .contact, .membership-form {
    padding: 20px 5px;
    margin: 20px 0;
    max-width: 100%;
  }

  .tiers {
    flex-direction: column;
    gap: 10px;
  }

  .tiers .card {
    width: 100%;
    font-size: 1rem;
    padding: 15px;
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
  }

  .badge {
    font-size: 1.2rem;
  }

  .ticker {
    font-size: 1rem;
    padding: 6px 0;
  }
}
html {
  scroll-behavior: smooth;
}
/* --- Light/Dark Mode Toggle Styles --- */
.theme-toggle {
  position: fixed;
  top: 60px;
  right: 20px;
  background: #222;
  color: gold;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s, color 0.3s;
}
.theme-toggle.light {
  background: #fff;
  color: #6A0DAD;
}

/* Light Theme */
body.light-mode {
  background: linear-gradient(120deg, #f8fafc, #e0e7ef, #f3f4f6);
  color: #222;
}
body.light-mode header,
body.light-mode footer {
  background: #fff;
  color: #222;
}
body.light-mode .logo {
  color: #6A0DAD;
}
body.light-mode nav a {
  color: #222;
}
body.light-mode nav a.active,
body.light-mode nav a:hover {
  background: #6A0DAD;
  color: #fff;
}
body.light-mode .testimonial-card,
body.light-mode .about,
body.light-mode .contact,
body.light-mode .membership-form {
  background: rgba(0,0,0,0.04);
  color: #222;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}
body.light-mode .special-border {
  border-color: #6A0DAD;
  box-shadow: 0 0 20px #6A0DAD;
}
body.light-mode .cta-btn {
  background: linear-gradient(45deg, #6A0DAD, gold);
  color: #fff;
}
body.light-mode .ticker {
  background: #f3f4f6;
  color: #6A0DAD;
}
body.light-mode .badge {
  color: #6A0DAD;
}
/* Prevent text selection for logo and ticker */
.logo,
.ticker,
.verified-badge {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  pointer-events: auto;
}