/* Basic reset & fonts */
:root{
  --bg:#000;
  --neon-green: #00ff6a7c;
  --neon-green-2: rgba(0,255,106,0.14);
  --accent-gold: #ebc553ff;
  --muted:#bdbdbd;
  --glass: rgba(36, 80, 34, 0.84);
}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;color:#eee;background:var(--bg);-webkit-font-smoothing:antialiased}
.container{max-width:1100px;margin:0 auto;padding:48px 20px}
.center{text-align:center}
.dark{background:#000}
.light{background:#0b0b0b}

/* Topbar */
.topbar{width:100%;padding:16px 0;border-bottom:1px solid rgba(255,255,255,0.03);}
.topbar-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:8px 20px;border-radius:6px;background:linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6));box-shadow:0 0 40px rgba(0,255,106,0.06), inset 0 -2px 8px rgba(0,0,0,0.6)}
.brand{font-style:italic;font-weight:700;color:#fff}
.brand-main{font-size:20px;letter-spacing:2px}
.brand-sub{font-size:16px;opacity:0.9;margin-left:8px;text-transform:lowercase}

.topbar-inner::before{
  content:'';position:absolute;left:8px;right:8px;top:0;bottom:0;border-radius:6px;pointer-events:none;z-index:0;
  box-shadow:0 0 36px var(--neon-green);outline:2px solid rgba(0,255,106,0.06);
}
.top-actions{display:flex;gap:12px;align-items:center;z-index:2}
.btn{display:inline-block;padding:10px 16px;border-radius:10px;text-decoration:none;color:#000;font-weight:600;font-size:14px;border:0;cursor:pointer}
.btn.small{background:#111;color:var(--neon-green);padding:8px 12px;border-radius:8px}
.btn.neon{background:#000;color:var(--neon-green);border:2px solid rgba(0,255,106,0.15);box-shadow:0 6px 30px var(--neon-green-2);}
.btn.gold{background:linear-gradient(90deg,#b98f1f,#f1d97a);color:#111;padding:10px 18px;border-radius:12px;box-shadow:0 6px 30px rgba(230,196,90,0.25);}
.btn.green{background:linear-gradient(180deg,var(--neon-green),#00c86b);color:#001;padding:10px 18px;border-radius:12px;}
.btn.big{padding:16px 28px;font-size:18px}

/* Hero */
.hero{position:relative;height:72vh;min-height:540px;display:flex;align-items:center}
.bg-video{position:absolute;inset:0;width:100%;height:110%;object-fit:cover;z-index:0}
.hero-overlay{position:relative;z-index:2;display:flex;gap:40px;align-items:flex-start;width:100%;padding:60px 20px}
.hero-left{max-width:640px;padding:18px;background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));border-radius:12px;backdrop-filter:blur(4px);}
.hero-title{font-size:60px;letter-spacing:2px;margin-bottom:8px;text-transform:uppercase}
.hero-sub{font-size:16px;margin-bottom:12px;color:var(--muted)}
.hero-desc{color:var(--muted);margin-bottom:18px}
.hero-cta{display:flex;gap:12px}

/* Sections */
.section{padding:80px 0}

/* Updated About/Features section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.feature {
  background: linear-gradient(145deg, rgba(0, 255, 106, 0.08), rgba(0, 40, 20, 0.3));
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 106, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0.7;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 106, 0.3);
  box-shadow: 0 10px 30px rgba(0, 255, 106, 0.15);
}

.feature h3 {
  color: var(--neon-green);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.feature p strong {
  color: var(--accent-gold);
}

/* Compact list styling for feature points */
.feature ul {
  margin: 12px 0;
  padding-left: 0;
  list-style: none;
}

.feature li {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.feature li::before {
  content: '▸';
  color: var(--neon-green);
  position: absolute;
  left: 0;
  font-size: 12px;
}
/* Cute Attractive Buttons */
.cute-buttons-container {
  margin: 30px 0;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.cute-button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  width: 100%;
}

.cute-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cute-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cute-btn:active {
  transform: translateY(-2px);
}

/* Register Button */
.register-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.register-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(118, 75, 162, 0.4);
}

/* Home Button */
.home-btn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.home-btn:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(245, 87, 108, 0.4);
}

/* Button Elements */
.cute-btn-icon {
  font-size: 22px;
  margin-right: 12px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

.cute-btn-text {
  flex-grow: 1;
  text-align: center;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cute-btn-badge {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.cute-btn-arrow {
  font-size: 24px;
  margin-left: 12px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Sparkle effect */
.cute-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.cute-btn:hover::before {
  left: 150%;
}

/* Shine effect */
.cute-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cute-btn:hover::after {
  opacity: 1;
}
/* ================================
   NEON ROTATING WHEEL (FIXED)
   ================================ */

.neon-wheel-wrapper {
  display: flex;
  justify-content: center;
  margin: 80px 0;
}

.neon-wheel {
  position: relative;
  width: 440px;   /* BIGGER */
  height: 440px;
  border-radius: 50%;
  border: 4px solid #00ffc8a4;
  box-shadow:
    0 0 18px #00eeffc4,
    0 0 40px #00fff29c;
}

.neon-wheel .nw-text {
  position: absolute;
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1.5px;
  text-shadow:
    0 0 8px #0dc0c0,
    0 0 16px #1fc8df;
  white-space: nowrap;
  transform-origin: center;
  pointer-events: none;
}
/* ================================
   ORBITING IMAGES (ISOLATED)
   ================================ */

.orbit-section {
  display: flex;
  justify-content: center;
  margin: 150px 0;
}

.orbit-ring {
  position: relative;
  width: 420px;
  height: 420px;
}

.orbit-img {
  position: absolute;
  width: 480px;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(0,255,106,0.4);
  box-shadow:
    0 0 12px rgba(0,255,106,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Positions (starting points) */
.img1 { top: 0; left: 50%; transform: translateX(-50%); }
.img2 { right: 0; top: 50%; transform: translateY(-50%); }
.img3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.img4 { left: 0; top: 50%; transform: translateY(-50%); }

/* Hover effect */
.orbit-img:hover {
  box-shadow:
    0 0 18px #00ff66,
    0 0 40px #00ff66;
  transform: scale(1.08);
  z-index: 5;
}


/* Positions */
.neon-wheel .north {
  top: -28px;
  left: 45%;
  transform: translateX(-50%);
}

.neon-wheel .south {
  bottom: -32px;
  left: 42%;
  transform: translateX(-50%);
}

.neon-wheel .east {
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
}

.neon-wheel .west {
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive */
@media (max-width: 480px) {
  .cute-btn {
    padding: 15px 20px;
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
  }
  
  .cute-btn-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .cute-btn-text {
    order: 2;
  }
  
  .cute-btn-badge,
  .cute-btn-arrow {
    order: 3;
    margin: 5px 0 0 0;
  }
  
  .cute-btn:hover {
    transform: translateY(-3px);
  }
}
/* Pricing Images Grid */
.pricing-images-grid {
  max-width: 800px;
  margin: 40px auto;
}

.image-row {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
}

.image-square {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgba(0, 255, 106, 0.2);
  background: #0a0a0a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-square:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 8px 25px rgba(0, 255, 106, 0.3);
}

.image-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-single {
  width: 320px;
  height: 160px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgb(0, 255, 106);
  background: #0a0a0a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.image-single:hover {
  transform: translateY(-5px);
  border-color: var(--neon-green);
  box-shadow: 0 8px 25px rgba(0, 255, 106, 0.3);
}

.image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-claim {
  font-size: 28px;
  margin: 30px 0;
  color: var(--accent-gold);
}

.pricing-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .image-square {
    width: 120px;
    height: 120px;
  }
  
  .image-single {
    width: 260px;
    height: 130px;
  }
  
  .big-claim {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .image-row {
    flex-wrap: wrap;
  }
  
  .image-square {
    width: 45%;
    height: 140px;
  }
  
  .image-single {
    width: 90%;
    height: 150px;
  }
}

/* Attention section update */
.attention {
  background: linear-gradient(145deg, rgba(235, 197, 83, 0.08), rgba(40, 35, 0, 0.3));
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(235, 197, 83, 0.1);
  margin-top: 40px;
  position: relative;
}

.attention::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.attention h3 {
  color: var(--accent-gold);
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.attention ul {
  list-style: none;
  padding-left: 0;
}

.attention li {
  color: var(--muted);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

.attention li::before {
  content: '★';
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-size: 12px;
}

/* Carousel */
.carousel{width:100%;max-width:720px;margin:30px auto;overflow:hidden;border-radius:10px;background:#060606;padding:12px}
.slides{display:flex;gap:12px;transition:transform 0.8s ease-in-out}
.slides img{width:100%;max-width:220px;height:160px;object-fit:cover;border-radius:8px}
.big-claim{font-size:28px;margin:20px 0}

/* Contact & footer */
.footer{padding:24px 0;border-top:1px solid rgba(255,255,255,0.03)}
.made-by{margin-top:20px;display:flex;align-items:center;gap:12px}
.jedi-img {
  width: 180px;    /* change to any size */
  height: 300px;    /* natural ratio */
}

.muted{color:var(--muted)}

/* Login page */
.login-page{display:flex;align-items:center;justify-content:center;height:100vh}
.login-card{background:#050505;padding:28px;border-radius:12px;width:360px}
.login-card h1{margin-bottom:18px}
.login-form label{display:block;margin-bottom:12px}
.login-form input{width:100%;padding:10px;border-radius:8px;background:#0b0b0b;border:1px solid rgba(255,255,255,0.03);color:#fff}
.form-actions{display:flex;justify-content:space-between;align-items:center;margin-top:12px}
.small{font-size:12px}

/* Responsive tweaks */
@media (max-width:900px){
  .hero-title{font-size:36px}
  .hero{min-height:520px}
  .topbar-inner{flex-direction:column;gap:12px;align-items:flex-start}
}

/* Gold shine animation */
@keyframes shimmer{0%{transform:translateX(-120%)}100%{transform:translateX(120%)}}
.btn.gold::after{content:'';position:absolute;left:0;top:0;bottom:0;right:0;border-radius:12px;opacity:0.08}
.btn.gold{position:relative;overflow:hidden}
.btn.gold::before{content:'';position:absolute;left:-120%;top:0;bottom:0;width:40%;background:linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);transform:skewX(-20deg);animation:shimmer 3s infinite}

/* Neon outline for boxes */
.brand-main, .hero-left{box-shadow:0 0 24px rgba(0,255,106,0.05), inset 0 0 18px rgba(0,255,106,0.03)}

/* Fallback if video unsupported: show background image (player will show the fallback message). */
@supports not (object-fit:cover){
  .bg-video{display:none}
  .hero{background:url('fallback.png') center/cover no-repeat}
}

/* small utilities */
.hidden{display:none}