/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@keyframes bgScroll {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}
@keyframes vaporGradient {
  0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}
}
@keyframes scanline {
  0%{top:-100%}100%{top:100%}
}
@keyframes glitch {
  0%{clip-path:inset(40% 0 61% 0)}20%{clip-path:inset(92% 0 1% 0)}40%{clip-path:inset(43% 0 1% 0)}60%{clip-path:inset(25% 0 58% 0)}80%{clip-path:inset(54% 0 7% 0)}100%{clip-path:inset(58% 0 43% 0)}
}
@keyframes gridScroll {
  0%{transform:perspective(400px) rotateX(60deg) translateY(0)}
  100%{transform:perspective(400px) rotateX(60deg) translateY(50px)}
}
@keyframes chromaShift {
  0%,100%{text-shadow:2px 0 #ff00ff,-2px 0 #00ffff}
  25%{text-shadow:-2px 0 #ff00ff,2px 0 #00ffff}
  50%{text-shadow:2px 2px #ff00ff,-2px -2px #00ffff}
  75%{text-shadow:-2px 2px #ff00ff,2px -2px #00ffff}
}
@keyframes blink { 0%,49%{opacity:1}50%,100%{opacity:0} }
@keyframes rainbow {
  0%{color:#ff71ce}20%{color:#b967ff}40%{color:#01cdfe}60%{color:#05ffa1}80%{color:#fffb96}100%{color:#ff71ce}
}
@keyframes pulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.15)} }
@keyframes spin { 0%{transform:rotate(0deg)}100%{transform:rotate(360deg)} }
@keyframes shake { 0%,100%{transform:translateX(0)}25%{transform:translateX(-5px)}75%{transform:translateX(5px)} }
@keyframes slideIn { 0%{transform:translateX(100vw)}100%{transform:translateX(0)} }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }
@keyframes constructionSlide { 0%{background-position:0 0}100%{background-position:40px 0} }
@keyframes marqueeScroll { 0%{transform:translateX(100%)}100%{transform:translateX(-100%)} }
@keyframes glow {
  0%,100%{text-shadow:0 0 5px #ff71ce,0 0 10px #ff71ce,0 0 20px #01cdfe,0 0 40px #01cdfe}
  50%{text-shadow:0 0 10px #b967ff,0 0 20px #b967ff,0 0 40px #ff71ce,0 0 80px #05ffa1}
}
@keyframes flagWave {
  0%{transform:skewY(0deg) scaleX(1)}25%{transform:skewY(2deg) scaleX(1.02)}50%{transform:skewY(0deg) scaleX(1)}75%{transform:skewY(-2deg) scaleX(0.98)}100%{transform:skewY(0deg) scaleX(1)}
}
@keyframes hotBadge {
  0%{transform:rotate(-15deg) scale(1)}50%{transform:rotate(-15deg) scale(1.3)}100%{transform:rotate(-15deg) scale(1)}
}
@keyframes newBadge {
  0%{transform:rotate(12deg) scale(1);background:#f00}50%{transform:rotate(12deg) scale(1.2);background:#ff0}100%{transform:rotate(12deg) scale(1);background:#f00}
}
@keyframes starTrail { 0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0) translateY(-20px)} }

body {
  font-family: 'Rajdhani', 'Comic Sans MS', cursive, sans-serif;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ctext x='50%25' y='55' text-anchor='middle' font-size='40' fill='%23b967ff' opacity='0.07'%3E✡%3C/text%3E%3C/svg%3E") repeat,
    linear-gradient(180deg, #0d0221 0%, #150535 20%, #1a0a3e 40%, #261447 60%, #2d1b69 80%, #0d0221 100%);
  background-attachment: fixed;
  color: #ff71ce;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ctext y='24' font-size='20'%3E🍗%3C/text%3E%3C/svg%3E") 0 0, auto;
  min-height: 100vh;
  position: relative;
}
/* Vaporwave grid floor */
body::after {
  content: '';
  position: fixed;
  bottom: 0; left: -50%; width: 200%; height: 40vh;
  background:
    linear-gradient(90deg, transparent 49.5%, #b967ff33 49.5%, #b967ff33 50.5%, transparent 50.5%) 0 0 / 50px 50px,
    linear-gradient(0deg, transparent 49.5%, #b967ff33 49.5%, #b967ff33 50.5%, transparent 50.5%) 0 0 / 50px 50px;
  transform: perspective(400px) rotateX(60deg);
  transform-origin: bottom center;
  pointer-events: none;
  z-index: 0;
  animation: gridScroll 2s linear infinite;
  mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* ===== MARQUEE TICKER ===== */
.ticker-bar {
  background: linear-gradient(90deg, #120029, #2d004d, #120029);
  color: #01cdfe;
  font-family: 'Rajdhani', Impact, sans-serif;
  font-size: 18px;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid #b967ff;
  border-top: 2px solid #ff71ce;
  position: sticky;
  top: 0;
  z-index: 100;
  text-shadow: 0 0 10px #01cdfe;
}
.ticker-bar .scroll {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}
.ticker-bar .scroll span { padding: 0 40px; }
.ticker-bar .scroll span::before { content: "⚡ "; }
.ticker-bar .scroll span::after { content: " ⚡"; }

/* ===== CONSTRUCTION BARS ===== */
.construction-bar {
  height: 6px;
  background: linear-gradient(90deg, #ff71ce, #b967ff, #01cdfe, #05ffa1, #ff71ce);
  background-size: 200% 100%;
  animation: vaporGradient 3s linear infinite;
}

/* ===== HEADER / HERO ===== */
.hero {
  text-align: center;
  padding: 40px 20px 30px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ctext x='50%25' y='55' text-anchor='middle' font-size='40' fill='%23b967ff' opacity='0.07'%3E✡%3C/text%3E%3C/svg%3E") repeat,
    linear-gradient(180deg, #0d0221 0%, #1a0533 30%, #2d1b69 60%, #150535 100%);
  border-bottom: 3px solid #b967ff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 120%, #ff71ce22 0%, transparent 60%);
  pointer-events: none;
}
/* Vaporwave sun */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: linear-gradient(180deg, #ff6b9d, #c44dff, #6e00ff);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(30px);
  pointer-events: none;
}
.hero-flags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.flag {
  font-size: 60px;
  display: inline-block;
}
.hero-logo {
  font-family: Impact, sans-serif;
  font-size: clamp(28px, 6vw, 72px);
  color: #ff71ce;
  text-shadow: 3px 3px 0 #b967ff, 6px 6px 0 #0d0221;
  letter-spacing: 5px;
  text-shadow: 3px 3px 0 #b967ff, 6px 6px 0 #0d0221;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.hero-logo .logo-img {
  width: clamp(250px, 55vw, 550px);
  display: block;
  margin: -10% auto -12%;
  clip-path: inset(25% 0 25% 0);
  filter: drop-shadow(0 0 20px rgba(185,103,255,0.4));
}
.hero-logo .logo-subtitle {
  font-size: clamp(20px, 4vw, 48px);
  margin-top: 20px;
  letter-spacing: 10px;
  display: block;
}
.hero-logo .tm { font-size: 0.4em; vertical-align: super; color: #01cdfe; }
.hero-subtitle {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(10px, 2vw, 16px);
  color: #01cdfe;
  margin: 20px 0;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #01cdfe;
  position: relative; z-index: 1;
}
.hero-slogan {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(16px, 3vw, 28px);
  color: #05ffa1;
  margin: 15px 0;
  font-style: italic;
  text-shadow: 0 0 15px #05ffa1;
  position: relative; z-index: 1;
}
.hero-stars { font-size: 24px; color: #b967ff; text-shadow: 0 0 10px #b967ff; position: relative; z-index: 1; }
.hero .menorah-row {
  font-size: 30px;
  letter-spacing: 15px;
  margin-top: 10px;
  position: relative; z-index: 1;
}

/* ===== SECOND TICKER ===== */
.ticker-bar-2 {
  background: linear-gradient(90deg, #2d004d, #0d0221, #2d004d);
  color: #ff71ce;
  font-family: 'Rajdhani', 'Times New Roman', sans-serif;
  font-size: 15px;
  padding: 4px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #b967ff44;
  border-bottom: 1px solid #b967ff44;
}
.ticker-bar-2 .scroll {
  display: inline-block;
  animation: marqueeScroll 45s linear infinite;
}
.ticker-bar-2 .scroll span { padding: 0 30px; color: #b967ff; text-shadow: 0 0 8px #b967ff88; }

/* ===== SECTION STYLES ===== */
.section {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
  position: relative;
}
.section-title {
  font-family: Impact, sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, #0038b8 0%, #0038b8 35%, #fff 35%, #fff 65%, #0038b8 65%, #0038b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.section-title .star { display: inline-block; color: #01cdfe; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.product-card {
  background: linear-gradient(135deg, #0d021199, #1a0a3ecc, #2d1b69aa);
  border: 2px solid #b967ff;
  border-radius: 2px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 15px rgba(185,103,255,0.2), inset 0 0 30px rgba(185,103,255,0.05);
  backdrop-filter: blur(5px);
}
.product-card:hover { transform: scale(1.03) rotate(1deg); box-shadow: 0 0 30px rgba(255,113,206,0.4), 0 0 60px rgba(1,205,254,0.2); }
.product-card .badge-hot {
  position: absolute; top: -10px; right: -10px;
  background: #ff0000; color: #fff; font-family: Impact; font-size: 14px;
  padding: 5px 10px; border-radius: 50%;
  z-index: 2; box-shadow: 0 0 10px #f00;
}
.product-card .badge-new {
  position: absolute; top: -10px; left: -10px;
  background: #00ff00; color: #000; font-family: 'Press Start 2P', monospace; font-size: 9px;
  padding: 6px 8px;
  z-index: 2;
}
.product-emoji { font-size: 60px; display: block; margin-bottom: 10px; margin-left: auto; margin-right: auto; }
img.product-emoji { width: 220px; height: 220px; object-fit: contain; font-size: inherit; }
.product-name {
  font-family: Impact, sans-serif;
  font-size: 22px;
  background: linear-gradient(180deg, #0038b8 0%, #0038b8 35%, #fff 35%, #fff 65%, #0038b8 65%, #0038b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.product-desc {
  font-family: 'Comic Sans MS', cursive;
  font-size: 14px;
  color: #ffe4f9cc;
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-stars { color: #01cdfe; font-size: 18px; text-shadow: 0 0 8px #01cdfe; }
.product-reviews { font-size: 11px; color: #b967ffcc; }
.product-price {
  font-family: Impact; font-size: 28px; color: #05ffa1;
  text-shadow: 0 0 10px #05ffa1;
  margin: 10px 0;
}
.product-price .original {
  text-decoration: line-through; color: #ff6666; font-size: 18px;
}
.btn-buy {
  display: inline-block;
  background: linear-gradient(90deg, #ff71ce, #b967ff, #01cdfe);
  background-size: 200% 100%;
  color: #fff;
  font-family: Impact, sans-serif;
  font-size: 20px;
  padding: 10px 30px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
  box-shadow: 0 0 15px #b967ff88;
}
.btn-buy:hover { box-shadow: 0 0 25px #ff71ce, 0 0 50px #b967ff66; }
.product-fine {
  font-size: 8px;
  color: #b967ff88;
  margin-top: 8px;
  font-family: 'Times New Roman', serif;
  line-height: 1.2;
}

/* ===== CORPORATE MISSION ===== */
.mission-box {
  background: linear-gradient(135deg, #0d0221dd, #1a0a3ecc);
  border: 2px solid #b967ff;
  padding: 30px;
  font-family: 'Rajdhani', 'Times New Roman', sans-serif;
  color: #ffe4f9;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  position: relative;
  box-shadow: 0 0 20px rgba(185,103,255,0.15), inset 0 0 40px rgba(1,205,254,0.05);
}
.mission-box::before {
  content: "✡";
  position: absolute;
  top: 10px; right: 15px;
  font-size: 40px;
  opacity: 0.15;
  color: #01cdfe;
}
.exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.exec-card {
  background: #0d022199;
  border: 1px solid #b967ff88;
  padding: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(185,103,255,0.1);
}
.exec-card .emoji { font-size: 50px; }
.exec-card .name { font-family: Impact; color: #ff71ce; font-size: 16px; margin: 5px 0; text-shadow: 0 0 8px #ff71ce88; }
.exec-card .title-text { font-size: 12px; color: #01cdfe; font-style: italic; }

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: linear-gradient(135deg, #1a0a3ecc, #0d0221dd);
  color: #ffe4f9;
  border: 1px solid #b967ff66;
  border-left: 4px solid #ff71ce;
  padding: 15px;
  margin: 15px 0;
  font-family: 'Comic Sans MS', cursive;
  font-size: 15px;
  position: relative;
  box-shadow: 0 0 10px rgba(255,113,206,0.1);
}
.testimonial::before {
  content: "★★★★★";
  display: block;
  color: #01cdfe;
  font-size: 20px;
  margin-bottom: 5px;
  text-shadow: 0 0 8px #01cdfe;
}
.testimonial .author {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: #b967ff;
  font-size: 13px;
}
.testimonial .author::before { content: "— "; }

/* ===== NUTRITION LABEL ===== */
.nutrition-label {
  background: #fff;
  color: #000;
  border: 2px solid #000;
  max-width: 400px;
  margin: 0 auto;
  padding: 8px 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.nutrition-label h3 {
  font-size: 36px;
  font-weight: 900;
  font-family: 'Arial Black', Impact, sans-serif;
  border-bottom: 12px solid #000;
  padding-bottom: 2px;
  margin-bottom: 4px;
  color: #000;
  text-shadow: none;
  line-height: 1;
}
.nutrition-label .serving {
  font-size: 13px;
  border-bottom: 6px solid #000;
  padding-bottom: 4px;
  margin-bottom: 4px;
  color: #000;
}
.nutrition-label .row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  padding: 2px 0;
  font-size: 13px;
  color: #000;
}
.nutrition-label .row.thick { border-bottom-width: 6px; }
.nutrition-label .row .bold { font-weight: 900; color: #000; }
.nutrition-label .ingredients {
  font-size: 10px;
  margin-top: 8px;
  line-height: 1.4;
  color: #000;
  border-top: 6px solid #000;
  padding-top: 6px;
}
.nutrition-label .approved {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #cc0000;
  text-shadow: none;
  border-top: 1px solid #000;
  padding-top: 8px;
}

/* ===== FAQ ===== */
.faq-item {
  background: rgba(13,2,33,0.7);
  border: 1px solid #b967ff44;
  border-left: 3px solid #01cdfe;
  padding: 15px;
  margin: 10px 0;
}
.faq-item .q {
  font-family: Impact, sans-serif;
  font-size: 18px;
  color: #01cdfe;
  text-shadow: 0 0 8px #01cdfe88;
}
.faq-item .a {
  font-family: 'Comic Sans MS', cursive;
  color: #ffe4f9;
  margin-top: 5px;
  font-size: 14px;
}

/* ===== GUESTBOOK ===== */
.guestbook-entry {
  background: rgba(13,2,33,0.6);
  color: #ffe4f9;
  border: 1px solid #b967ff33;
  padding: 10px;
  margin: 8px 0;
  font-family: 'Rajdhani', 'Times New Roman', sans-serif;
  font-size: 14px;
}
.guestbook-entry .gb-name { font-weight: bold; color: #ff71ce; text-shadow: 0 0 5px #ff71ce88; }
.guestbook-entry .gb-date { font-size: 11px; color: #b967ff; }
.guestbook-entry .gb-msg { margin-top: 5px; }

/* ===== MIDI PLAYER ===== */
.midi-player {
  background: rgba(13,2,33,0.8);
  border: 1px solid #b967ff;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', Tahoma, sans-serif;
  font-size: 12px;
  color: #01cdfe;
  margin: 15px auto;
  box-shadow: 0 0 10px rgba(185,103,255,0.2);
  position: relative; z-index: 1;
}
.midi-player .btn-midi {
  background: transparent;
  border: 1px solid #ff71ce;
  color: #ff71ce;
  padding: 2px 8px;
  cursor: pointer;
  font-size: 14px;
}
.midi-player .btn-midi:active { background: #ff71ce33; }
.midi-player .progress-bar {
  width: 150px; height: 12px;
  background: #0d0221;
  border: 1px solid #b967ff44;
  position: relative;
  overflow: hidden;
}
.midi-player .progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff71ce, #01cdfe);
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.3s linear;
}

/* ===== HERO ACTIONS (CONTRACT + X BUTTON) ===== */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}
.contract-holder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 2, 33, 0.85);
  border: 1px solid #b967ff;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 500px;
}
.contract-holder:hover {
  border-color: #01cdfe;
  box-shadow: 0 0 12px rgba(1, 205, 254, 0.3);
}
.contract-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.contract-address {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: #ffe4f9;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
  user-select: all;
}
.contract-copy-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #01cdfe;
  border: 1px solid #01cdfe44;
  padding: 3px 8px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.contract-holder:hover .contract-copy-btn {
  background: #01cdfe22;
}
.x-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(13, 2, 33, 0.85);
  border: 1px solid #b967ff;
  color: #ffe4f9;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.x-button:hover {
  border-color: #01cdfe;
  color: #01cdfe;
  box-shadow: 0 0 12px rgba(1, 205, 254, 0.3);
}

/* ===== CUSTOM SLOP MODAL ===== */
.slop-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 2, 33, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slop-modal-overlay.active { opacity: 1; }
.slop-modal {
  background: linear-gradient(135deg, #1a0a3ef0, #0d0221f0);
  border: 1px solid #b967ff;
  box-shadow: 0 0 30px rgba(185,103,255,0.4), 0 0 80px rgba(255,113,206,0.15), inset 0 0 40px rgba(185,103,255,0.05);
  min-width: 320px;
  max-width: 480px;
  font-family: 'Rajdhani', Tahoma, Arial, sans-serif;
  color: #ffe4f9;
  backdrop-filter: blur(10px);
  animation: modalSlideIn 0.3s ease-out;
  position: relative;
}
@keyframes modalSlideIn {
  0% { transform: scale(0.8) translateY(-20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.slop-modal-titlebar {
  background: linear-gradient(90deg, #2d004d, #4a0080);
  color: #01cdfe;
  font-weight: bold;
  font-size: 13px;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  user-select: none;
  border-bottom: 1px solid #b967ff88;
  text-shadow: 0 0 8px #01cdfe88;
}
.slop-modal-body {
  padding: 20px 25px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}
.slop-modal-body strong {
  color: #ff71ce;
  text-shadow: 0 0 8px #ff71ce66;
}
.slop-modal-buttons {
  padding: 10px 25px 18px;
  text-align: center;
}
.slop-modal-buttons .popup-btn.primary {
  padding: 6px 35px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ===== POPUP WINDOWS ===== */
.popup {
  position: fixed;
  background: linear-gradient(135deg, #1a0a3e, #0d0221);
  border: 1px solid #b967ff;
  box-shadow: 0 0 20px rgba(185,103,255,0.3), 0 0 60px rgba(255,113,206,0.1);
  z-index: 999;
  min-width: 300px;
  max-width: 420px;
  font-family: 'Rajdhani', Tahoma, Arial, sans-serif;
  font-size: 13px;
  color: #ffe4f9;
  display: none;
  backdrop-filter: blur(10px);
}
.popup.active { display: block; }
.popup .popup-titlebar {
  background: linear-gradient(90deg, #2d004d, #4a0080);
  color: #01cdfe;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  user-select: none;
  border-bottom: 1px solid #b967ff88;
}
.popup .popup-close {
  background: transparent;
  border: 1px solid #ff71ce;
  width: 18px; height: 18px;
  text-align: center;
  line-height: 16px;
  cursor: pointer;
  font-weight: bold;
  font-size: 11px;
  color: #ff71ce;
}
.popup .popup-close:hover { background: #ff71ce33; }
.popup .popup-body {
  padding: 15px;
  text-align: center;
}
.popup .popup-body img.popup-icon {
  width: 40px; margin-bottom: 10px;
}
.popup .popup-btn {
  background: rgba(185,103,255,0.15);
  border: 1px solid #b967ff;
  padding: 4px 20px;
  margin: 5px;
  cursor: pointer;
  font-family: 'Rajdhani', Tahoma, sans-serif;
  font-size: 12px;
  color: #ffe4f9;
}
.popup .popup-btn:hover { background: rgba(185,103,255,0.3); }
.popup .popup-btn.primary {
  background: linear-gradient(90deg, #ff71ce44, #b967ff44);
  border-color: #ff71ce;
  color: #fff;
  font-weight: bold;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0d0221, #050010);
  border-top: 3px solid #b967ff;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #b967ff;
  position: relative;
  z-index: 1;
}
.footer a { color: #01cdfe; text-decoration: underline; }
.visitor-counter {
  background: #050010;
  border: 1px solid #05ffa1;
  display: inline-block;
  padding: 5px 15px;
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: #05ffa1;
  margin: 10px 0;
  text-shadow: 0 0 10px #05ffa1;
  box-shadow: 0 0 10px rgba(5,255,161,0.2);
}
.webring {
  margin: 15px 0;
  font-family: 'Rajdhani', 'Comic Sans MS', sans-serif;
  font-size: 14px;
}
.webring a { color: #ff71ce; margin: 0 10px; }
.ie-badge {
  background: rgba(13,2,33,0.8);
  border: 1px solid #b967ff44;
  display: inline-block;
  padding: 5px 10px;
  font-size: 11px;
  color: #01cdfe;
  margin: 10px 0;
}
.footer .disclaimer {
  font-size: 9px;
  color: #b967ff66;
  max-width: 600px;
  margin: 15px auto 0;
  line-height: 1.4;
}

/* ===== CURSOR TRAIL ===== */
.trail {
  position: fixed;
  pointer-events: none;
  font-size: 20px;
  z-index: 9999;
  animation: starTrail 0.8s ease-out forwards;
}

/* ===== RAINBOW TEXT ===== */
.rainbow { color: #ff71ce; }
.blink { }
.pulse { }

/* ===== PROMO IMAGES ===== */
.promo-banner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 25px 0;
}
.promo-banner img {
  width: 100%;
  max-width: 480px;
  border: 2px solid #b967ff;
  box-shadow: 0 0 20px rgba(185,103,255,0.25);
  object-fit: cover;
}
.promo-banner.single { justify-content: center; }
.promo-banner.single img { max-width: 600px; }

/* ===== MISC ===== */
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }

/* Star of David watermark */
.watermark {
  position: fixed;
  font-size: 200px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  color: #b967ff;
}
.watermark.tl { top: -50px; left: -50px; }
.watermark.br { bottom: -50px; right: -50px; animation-direction: reverse; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0d0221; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ff71ce, #b967ff, #01cdfe); border-radius: 5px; }

/* ===== ORG CHART ===== */
.org-chart {
  text-align: center;
  margin: 20px 0;
  font-family: 'Times New Roman', serif;
  color: #ffd700;
}
.org-chart .ceo-box {
  display: inline-block;
  border: 2px solid #ff71ce;
  padding: 10px 20px;
  background: rgba(13,2,33,0.8);
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(255,113,206,0.2);
}
.org-chart .line { width: 2px; height: 20px; background: #b967ff; margin: 0 auto; }
.org-chart .branch { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.org-chart .branch-box {
  border: 1px solid #b967ff66;
  padding: 8px 12px;
  background: rgba(13,2,33,0.6);
  font-size: 12px;
  color: #ffe4f9;
}

/* ===== FAKE CAPTCHA POPUP ===== */
.captcha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 10px auto;
  max-width: 270px;
  background: #0d0221;
  border: 2px solid #b967ff44;
  padding: 3px;
}
.captcha-cell {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #ffe4f9;
  cursor: pointer;
  background: rgba(13, 2, 33, 0.6);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.captcha-cell span {
  position: relative;
  z-index: 1;
  background: rgba(13, 2, 33, 0.75);
  width: 100%;
  padding: 2px 0;
  line-height: 1.2;
}
.captcha-cell:hover { border-color: #01cdfe88; }
.captcha-cell.selected {
  border-color: #01cdfe;
  box-shadow: inset 0 0 20px rgba(1, 205, 254, 0.15);
}
.captcha-cell.selected::after {
  content: '✡';
  position: absolute;
  top: 3px; right: 4px;
  font-size: 14px;
  color: #01cdfe;
  text-shadow: 0 0 8px #01cdfe;
  z-index: 2;
}
.captcha-cell .cell-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.captcha-checkbox {
  font-size: 9px;
  color: #b967ff99;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.captcha-checkbox input { accent-color: #01cdfe; cursor: pointer; }
.captcha-verify-btn {
  background: linear-gradient(90deg, #ff71ce44, #b967ff44);
  border: 1px solid #ff71ce;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
  font-size: 13px;
  padding: 6px 30px;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 1px;
}
.captcha-verify-btn:hover { background: linear-gradient(90deg, #ff71ce66, #b967ff66); }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-height: 50vh;
  background: linear-gradient(135deg, #0d0221f5, #1a0a3ef5);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #0038b8, #fff, #0038b8) 1;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.6s ease-out;
  box-shadow: 0 -10px 40px rgba(185, 103, 255, 0.3);
  backdrop-filter: blur(10px);
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: #01cdfe;
  text-align: center;
  padding: 12px 20px 8px;
  text-shadow: 0 0 10px #01cdfe88;
  flex-shrink: 0;
}
.cookie-banner-scroll {
  overflow-y: auto;
  padding: 0 25px 10px;
  flex: 1;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #ffe4f9aa;
  line-height: 1.5;
}
.cookie-banner-scroll::-webkit-scrollbar { width: 6px; }
.cookie-banner-scroll::-webkit-scrollbar-thumb { background: #b967ff66; }
.cookie-banner-scroll p { margin-bottom: 8px; }
.cookie-banner-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 20px 15px;
  flex-shrink: 0;
  border-top: 1px solid #b967ff44;
}
.cookie-accept-btn {
  background: linear-gradient(90deg, #ff71ce, #b967ff, #01cdfe);
  background-size: 200% 100%;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
  box-shadow: 0 0 15px #b967ff88;
}
.cookie-accept-btn:hover { box-shadow: 0 0 25px #ff71ce, 0 0 50px #b967ff66; }
.cookie-reject-btn {
  background: transparent;
  border: none;
  color: #666;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  cursor: pointer;
  padding: 2px 5px;
  opacity: 0.5;
}
.cookie-reject-btn:hover { opacity: 0.7; }
.cookie-guilt {
  color: #ff71ce;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  text-align: center;
  padding: 15px;
  text-shadow: 0 0 10px #ff71ce88;
  line-height: 1.8;
}
.cookie-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 2, 33, 0.5);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.cookie-overlay.active { opacity: 1; pointer-events: all; }
.cookie-rebel-badge {
  position: fixed;
  bottom: 10px; right: 10px;
  background: rgba(13, 2, 33, 0.9);
  border: 1px solid #ff71ce;
  color: #ff71ce;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  padding: 5px 10px;
  z-index: 999;
  text-shadow: 0 0 6px #ff71ce88;
  box-shadow: 0 0 10px rgba(255, 113, 206, 0.3);
}

/* ===== HIDDEN DISCLAIMERS ===== */
.hidden-disclaimer {
  font-family: 'Rajdhani', sans-serif;
  font-size: 7px;
  opacity: 0.25;
  color: #b967ff88;
  display: inline;
  letter-spacing: 0.5px;
  user-select: text;
  pointer-events: auto;
}
