:root{
  --bg:#000;
  --fg:#fff;
  --muted:rgba(255,255,255,0.65);
  --accent:rgba(255,255,255,0.06);
  --glass: rgba(255,255,255,0.04);
}

*{box-sizing:border-box}
html,body,#app{height:100%;margin:0;font-family:"Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
body{background:var(--bg);color:var(--fg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow:auto; -webkit-overflow-scrolling:touch;}

#bgVideo{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  /* increase brightness/contrast and remove dimming to make video pop */
  filter:brightness(1.15) contrast(1.08) saturate(1.05);
  transform:scale(1.02);
}

/* Skip button (visible while video plays) */
.skip-btn{
  position:fixed;
  right:20px;
  top:20px;
  z-index:3;
  appearance:none;
  border:0;
  padding:10px 14px;
  border-radius:12px;
  background:linear-gradient(90deg, rgba(0,220,255,0.09), rgba(0,160,255,0.06));
  color:#e6ffff;
  font-weight:700;
  box-shadow:0 10px 30px rgba(0,120,160,0.18);
  backdrop-filter:blur(6px);
  cursor:pointer;
  transition:transform .12s ease, opacity .12s ease;
}
.skip-btn:active{transform:translateY(1px)}
.skip-btn:hover{transform:translateY(-4px) scale(1.02); opacity:0.98}

/* Ensure good spacing on small screens */
@media (max-width:720px){
  .skip-btn{right:12px;top:12px;padding:8px 10px;font-size:14px}
}

/* overlay content */
.overlay{
  position:relative;
  z-index:2;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:28px;
  /* remove dark foreground layer so video remains fully visible */
  backdrop-filter: blur(6px) saturate(1.05);
  background: linear-gradient(180deg, rgba(2,6,10,0.65), rgba(4,8,14,0.55));
  /* hidden initially while video plays */
  opacity:0;
  transform:translateY(10px) scale(0.997);
  pointer-events:none;
  transition:opacity .6s ease, transform .6s ease;
}

/* reveal state */
.overlay.show{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

/* header */
.brand{
  display:flex;
  gap:14px;
  align-items:center;
  width:100%;
  max-width:1100px;
}
/* .logo{
  width:56px;height:56px;border-radius:10px;
  background:linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:var(--fg);font-family:"Calistoga", serif;
  letter-spacing:1px;font-size:18px;border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 6px 24px rgba(0,0,0,0.6), inset 0 -6px 18px rgba(255,255,255,0.02);
}
.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:8px;
  display:block;
} */
.title .name{font-size:18px;font-weight:700}
.title .tag{font-size:12px;color:var(--muted);margin-top:2px}

/* hero */
.hero{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center; /* center content horizontally */
  max-width:980px;
  margin:8vh 0;
}
.hero-title{
  margin:0;
  font-weight:700;
  text-shadow:0 6px 30px rgba(0,0,0,0.6);
  line-height:1;
  text-align:center;
  display:block;
}
.hero-top{
  display:block;
  font-size:clamp(20px,4.4vw,34px);
  letter-spacing:0.6px;
  margin-bottom:6px;
}
.hero-bottom{
  display:block;
  font-size:clamp(18px,5.2vw,42px);
  letter-spacing:0.4px;
  font-weight:900;
}
.lead{color:var(--muted);margin:0;font-size:16px}

/* buttons */
.actions{display:flex;gap:12px;margin-top:6px;flex-wrap:wrap}
.btn{
  appearance:none;border:0;padding:10px 16px;border-radius:12px;cursor:pointer;font-weight:700;
  color:#bff8ff;
  background:linear-gradient(90deg,#03202b 0%, #003747 100%);
  border:1px solid rgba(175,255,255,0.18);
  text-shadow:0 0 8px rgba(191,248,255,0.38), 0 0 20px rgba(0,200,255,0.14);
  box-shadow:0 6px 30px rgba(0,60,80,0.6), 0 0 28px rgba(0,200,255,0.08) inset;
  letter-spacing:0.8px;transition:transform .12s ease, box-shadow .18s ease, filter .12s ease;
}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:linear-gradient(90deg, rgba(0,220,255,0.12), rgba(0,160,255,0.06));
  color:#e6ffff;
  border:1px solid rgba(0,220,255,0.28);
  box-shadow:0 10px 40px rgba(0,160,220,0.28), 0 0 28px rgba(0,220,255,0.18);
  text-shadow:0 0 10px rgba(0,220,255,0.6), 0 0 28px rgba(0,140,255,0.18);
  backdrop-filter: blur(6px);
  transform:translateZ(0);
}
/* Prominent holiday promo button */
.btn.promo{
  background: linear-gradient(90deg,#ffefea 0%, #ffd9c8 100%);
  color:#111;
  border:2px solid rgba(255,200,140,0.85);
  box-shadow: 0 14px 48px rgba(255,130,60,0.18), 0 0 36px rgba(255,200,140,0.08);
  font-weight:800;
  letter-spacing:0.6px;
  padding:12px 18px;
}
.btn.promo:hover{ transform:translateY(-4px) scale(1.02); box-shadow:0 20px 64px rgba(255,120,60,0.22); }
.btn.ghost{
  opacity:0.9;
  font-weight:500;
  background:transparent;
  color:#9ff6ff;
  border:1px solid rgba(160,255,255,0.12);
  box-shadow:0 6px 20px rgba(0,110,140,0.18), 0 0 18px rgba(0,200,255,0.06);
  text-shadow:0 0 6px rgba(159,246,255,0.28);
}
.btn:hover{opacity:1;transform:translateY(-4px) scale(1.02);
  box-shadow:0 18px 60px rgba(0,180,220,0.26), 0 0 48px rgba(0,220,255,0.22);
  filter:brightness(1.06) saturate(1.08);
}

/* Prominent rental pulsing button */
.btn.rental{
  background: linear-gradient(90deg,#fff7e9 0%, #ffe4c6 100%);
  color:#111;
  border:2px solid rgba(255,160,60,0.95);
  box-shadow: 0 18px 50px rgba(255,120,40,0.12), 0 0 40px rgba(255,180,90,0.06);
  font-weight:900;
  padding:12px 20px;
  border-radius:14px;
  transform:translateZ(0);
  position:relative;
  overflow:visible;
  transition:transform .12s ease, box-shadow .18s ease;
  animation:rentPulse 2.2s ease-in-out infinite;
}
.btn.rental:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow: 0 26px 72px rgba(255,120,40,0.18), 0 0 56px rgba(255,180,90,0.09);
  animation-play-state:paused;
}
@keyframes rentPulse{
  0%{ box-shadow: 0 10px 34px rgba(255,120,40,0.10), 0 0 0 rgba(255,180,90,0); transform:scale(1);}
  50%{ box-shadow: 0 22px 64px rgba(255,120,40,0.18), 0 0 32px rgba(255,180,90,0.08); transform:scale(1.02); }
  100%{ box-shadow: 0 10px 34px rgba(255,120,40,0.10), 0 0 0 rgba(255,180,90,0); transform:scale(1);}
}
/* make sure it wraps nicely on small screens */
@media (max-width:720px){
  .btn.rental{width:100%;text-align:center;padding:12px;border-radius:12px}
}

/* footer / contact */
.footer{display:flex;justify-content:flex-start;align-items:flex-end;padding-bottom:20px;
  /* novo fundo futurista escuro */
  background:
    radial-gradient(ellipse at 10% 8%, rgba(6,20,30,0.65) 0%, transparent 18%),
    radial-gradient(ellipse at 90% 88%, rgba(24,10,40,0.44) 0%, transparent 20%),
    linear-gradient(180deg, #010205 0%, #021018 60%, #02060b 100%);
  color: #dff7fb;
  position:relative;
  overflow:hidden;
}
/* subtle grid/scanlines over footer */
.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.006) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,220,0.01) 1px, transparent 1px);
  background-size: 100% 48px, 48px 100%;
  pointer-events:none;
  mix-blend-mode:overlay;
  opacity:0.45;
  z-index:0;
}
.footer > * { position:relative; z-index:1; }

.footer-card{
  background:var(--glass);
  padding:14px;border-radius:12px;border:1px solid rgba(255,255,255,0.04);
  max-width:320px;color:var(--muted)
}
.footer-card h3{margin:0 0 8px 0;color:var(--fg)}
/* Typing animation heading */
.footer-card h3.typing {
  font-weight:700;
  font-size:15px;
  white-space:pre-wrap;
  overflow-wrap:break-word;
  display:inline-block;
  position:relative;
  color:var(--fg);
  max-width:100%;
}
.footer-card h3.typing::after{
  content: "";
  position: absolute;
  right: -2px;
  top: 4px;
  width: 2px;
  height: 1.1em;
  background: #e6ffff;
  animation: blinkCaret 1s step-end infinite;
}
@keyframes blinkCaret {
  50% { opacity: 0; }
}
.footer-card ul{margin:0 0 10px 0;padding-left:18px}
.footer-card ul.services-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 18px;
  list-style:none;
  padding:8px 0 10px 0;
  margin:0;
}
.footer-card ul.services-grid li{
  position:relative;
  padding:6px 8px;
  border-radius:8px;
  color:var(--fg);
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border:1px solid rgba(255,255,255,0.02);
  font-weight:600;
  font-size:14px;
  transform:translateZ(0);
  animation:floatGlow 4.5s ease-in-out infinite;
  will-change:transform, box-shadow, opacity;
  box-shadow:0 6px 18px rgba(0,120,160,0.03);
}
.footer-card ul.services-grid li .service-btn{ display:block; }
.footer-card ul.services-grid li{ padding:0; background:transparent; border:none; box-shadow:none; }
/* New service button style */
.service-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border:1px solid rgba(255,255,255,0.04);
  color:var(--fg);
  font-weight:700;
  text-decoration:none;
  transition:transform .12s ease, box-shadow .18s ease, background .12s ease;
}
.service-btn:hover{ transform:translateY(-4px) scale(1.02); box-shadow:0 14px 40px rgba(0,140,180,0.12); background:linear-gradient(180deg, rgba(0,220,255,0.03), rgba(255,255,255,0.01)); }
/* stagger effect */
.footer-card ul.services-grid li:nth-child(odd){ animation-delay:0s }
.footer-card ul.services-grid li:nth-child(even){ animation-delay:0.18s }

@keyframes floatGlow{
  0%{ transform:translateY(0) translateX(0) scale(1); opacity:0.95; box-shadow:0 6px 18px rgba(0,120,160,0.03) }
  50%{ transform:translateY(-6px) translateX(2px) scale(1.01); opacity:1; box-shadow:0 18px 40px rgba(0,160,220,0.10) }
  100%{ transform:translateY(0) translateX(0) scale(1); opacity:0.95; box-shadow:0 6px 18px rgba(0,120,160,0.03) }
}

.footer-card .cta{display:inline-block;color:var(--fg);text-decoration:none;margin-top:6px;padding:6px 10px;border-radius:8px;background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.04)}

/* small screen adjustments */
@media (max-width:720px){
  .overlay{padding:18px}
  .brand{gap:10px}
  .logo{width:48px;height:48px;font-size:16px}
  .footer{align-items:center}
  #bgVideo{transform:none}
}

/* Photo section placed after overlay */
.photo-section{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:28px;
  background:#000;
  color:var(--fg);
  border-top:1px solid rgba(255,255,255,0.03);
}
.photo-section figure{
  margin:0;
  max-width:980px;
  width:100%;
  text-align:center;
  position:relative;
  padding:22px;
}
.photo-section figure.modern{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 18px 50px rgba(0,0,0,0.6);
  overflow:hidden;
  padding:18px;
}
.photo-section figure.modern img{
  border-radius:10px;
  transition:transform .35s ease, box-shadow .35s ease;
  transform:scale(1);
  box-shadow:0 12px 36px rgba(0,0,0,0.55);
}
.photo-section figure.modern img:hover{
  transform:scale(1.02);
  box-shadow:0 24px 64px rgba(0,0,0,0.65);
}
.photo-section img{
  width:100%;
  height:auto;
  max-height:720px;
  object-fit:contain;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.04);
  box-shadow:0 12px 40px rgba(0,0,0,0.6);
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.photo-section figcaption{
  margin-top:12px;
  font-weight:600;
  color:var(--muted);
  font-size:15px;
  letter-spacing:0.2px;
}

/* finer mobile sizing */
@media (max-width:720px){
  .photo-section{padding:18px}
  .photo-section img{max-height:420px;border-radius:10px}
  .photo-section figcaption{font-size:14px}
}

/* Futuristic photo card placed under Serviços */
.futuristic-photo{
  margin-left:18px;
  max-width:360px;
  display:flex;
  align-items:flex-end;
}
.futuristic-photo .modern.futuristic{
  position:relative;
  padding:12px;
  border-radius:14px;
  background:#000;
  border:1px solid rgba(255,255,255,0.04);
   box-shadow:0 10px 40px rgba(0,140,180,0.12), inset 0 -8px 30px rgba(0,220,255,0.02);
   overflow:hidden;
   width:100%;
}
/* subtle animated glow frame for futurist effect */
.futuristic-photo .glow-frame{
  position:absolute;
  inset: -2px;
  border-radius:16px;
  pointer-events:none;
  background: linear-gradient(90deg, rgba(0,220,255,0.06), rgba(120,90,255,0.04));
  mix-blend-mode:screen;
  filter:blur(18px);
  opacity:0.9;
  transform:translateZ(0);
  transition:filter .4s ease, opacity .4s ease, transform .4s ease;
}
.futuristic-photo .modern.futuristic img{
  display:block;
  width:100%;
  height:auto;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.04);
  box-shadow:0 12px 36px rgba(0,0,0,0.6);
  transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
  transform:translateY(0);
}
.futuristic-photo .modern.futuristic:hover .glow-frame{
  filter:blur(28px);
  transform:scale(1.02);
  opacity:1;
}
.futuristic-photo .modern.futuristic:hover img{
  transform:translateY(-6px) scale(1.02);
  box-shadow:0 28px 72px rgba(0,120,160,0.32);
}
.futuristic-photo figcaption{
  margin-top:10px;
  font-weight:700;
  color:var(--muted);
  font-size:14px;
  text-align:left;
  letter-spacing:0.3px;
}

/* responsive adjustments */
@media (max-width:720px){
  .futuristic-photo{margin-left:0;max-width:100%;margin-top:12px;justify-content:center}
  .futuristic-photo .modern.futuristic{padding:10px}
  .futuristic-photo figcaption{text-align:center}
}

@media (max-width:720px){
  .overlay{padding:14px;min-height:auto;}
  .hero{margin:6vh 0 4vh 0;gap:12px}
  .hero h1{font-size:clamp(20px,6.8vw,30px)}
  .lead{font-size:14px}
  .actions{gap:8px}
  .btn{padding:8px 12px;font-size:14px;border-radius:10px}
  .footer{flex-direction:column;align-items:flex-start;gap:12px;padding-bottom:10px}
  .footer-card{max-width:100%;width:100%}
  .photo-section{padding:14px}
  .photo-section figure{padding:14px}
  .photo-section img{max-height:360px}
  .futuristic-photo{margin-left:0;max-width:100%;justify-content:center;margin-top:12px}
  /* ensure video does not block scrolling on small screens */
  #bgVideo{position:fixed;pointer-events:none}
}

.music-controls{
  display:flex;
  gap:8px;
  align-items:center;
  margin-left:6px;
}
.music-controls input[type="range"]{
  width:140px;
  appearance:none;
  height:6px;
  background:linear-gradient(90deg, rgba(0,220,255,0.18), rgba(0,140,220,0.06));
  border-radius:6px;
  outline:none;
}
.music-controls input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:16px;height:16px;border-radius:50%;
  background:#e6ffff;box-shadow:0 6px 18px rgba(0,120,160,0.18);
  border:1px solid rgba(0,220,255,0.28);
  cursor:pointer;
}

/* small screens */
@media (max-width:720px){
  .music-controls{margin-top:6px;margin-left:0;flex-wrap:wrap}
}

/* visually-hidden utility */
.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap;border:0;padding:0;margin:-1px;}

/* New: dark futuristic info section panel used on page with information */
.info-section{
  max-width:980px;
  margin:0 auto;
  padding:28px;
  border-radius:14px;
  background:
    linear-gradient(180deg, rgba(2,8,14,0.7), rgba(6,12,20,0.5)),
    radial-gradient(ellipse at 10% 10%, rgba(0,140,180,0.06), transparent 20%);
  border:1px solid rgba(0,200,255,0.06);
  box-shadow:0 18px 60px rgba(0,10,20,0.6), inset 0 -6px 24px rgba(0,120,160,0.03);
  color:var(--muted);
}
/* ensure headings and links inside are readable */
.info-section h2{color:var(--fg);margin-top:0}
.info-section p{color:var(--muted)}

/* Top banner photo (placed at top of overlay) */
.top-banner{
  width:100%;
  max-width:1100px;
  margin:0 auto 14px auto;
  display:block;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 38px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.03);
}
.top-banner img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  max-height:220px;
  transition:transform .35s ease, filter .35s ease;
}
.top-banner img:hover{ transform:scale(1.02); filter:brightness(1.03) saturate(1.02); }

@media (max-width:720px){
  .top-banner{ max-width:100%; margin-bottom:10px; border-radius:10px; }
  .top-banner img{ max-height:140px; border-radius:10px; }
}

/* Prominent shop button */
.btn.shop{
  background: linear-gradient(90deg,#fffeea 0%, #ffd46a 100%);
  color:#111;
  border:2px solid rgba(255,180,50,0.95);
  box-shadow: 0 20px 60px rgba(255,150,40,0.14), 0 0 40px rgba(255,210,120,0.06);
  font-weight:900;
  padding:14px 22px;
  border-radius:16px;
  letter-spacing:0.8px;
  transform:translateZ(0);
  transition:transform .12s ease, box-shadow .18s ease;
  text-shadow:none;
}
.btn.shop:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow: 0 32px 90px rgba(255,150,40,0.22), 0 0 68px rgba(255,210,120,0.12);
}

/* NEW: elegant futuristic "Quem é Edson Keith" button style */
.btn.who{
  background: linear-gradient(180deg, rgba(2,20,30,0.95), rgba(6,40,60,0.98));
  color: #dff7fb;
  border: 1px solid rgba(0,220,255,0.18);
  padding:12px 20px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:0.6px;
  box-shadow: 0 18px 60px rgba(0,120,160,0.18), 0 0 28px rgba(0,220,255,0.06) inset;
  text-transform:none;
  transition: transform .14s ease, box-shadow .18s ease, filter .12s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
/* subtle neon accent line inside the button */
.btn.who::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:2px;
  background:linear-gradient(90deg,#00f2ff,#7df0a6);
  box-shadow:0 6px 18px rgba(0,220,255,0.12);
  transform:translateY(0);
}
.btn.who:hover{
  transform:translateY(-6px) scale(1.03);
  box-shadow: 0 30px 90px rgba(0,140,180,0.22), 0 0 52px rgba(0,220,255,0.12) inset;
}

/* ensure it looks good on small screens */
@media (max-width:720px){
  .who-btn-wrap{padding:0 12px}
  .btn.who{width:100%;justify-content:center;padding:12px;border-radius:12px}
}

/* Simple product grid and cart styles (used by shop.html) */
.shop-wrap{max-width:980px;margin:28px auto;padding:18px;}
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:14px;margin-top:12px;}
.product{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:12px;border-radius:12px;border:1px solid rgba(255,255,255,0.04);text-align:center;}
.product img{width:100%;height:160px;object-fit:cover;border-radius:8px;margin-bottom:8px;}
.product h4{margin:6px 0;font-size:15px}
.product .price{font-weight:800;color:#ffd27a;margin-bottom:8px}
.product button{appearance:none;border:0;padding:10px 12px;border-radius:10px;cursor:pointer;background:linear-gradient(90deg,#03202b 0%, #003747 100%);color:#e6ffff;font-weight:800;border:1px solid rgba(0,220,255,0.12)}
/* cart drawer */
.cart-drawer{
  position:fixed;
  right:14px;
  bottom:14px;
  width:320px;
  max-width:92%;
  background:#000;
  border-radius:12px;
  padding:12px;
  border:1px solid rgba(255,255,255,0.04);
  box-shadow:0 18px 80px rgba(0,0,0,0.6);
  display:none;
  z-index:999;
  color:var(--fg);
}
.cart-drawer.show{display:block;}
.cart-items{max-height:260px;overflow:auto;margin-bottom:8px}
.cart-item{display:flex;justify-content:space-between;gap:8px;padding:8px;border-bottom:1px dashed rgba(255,255,255,0.02);align-items:center}
.cart-item strong{font-weight:700}
.cart-actions{display:flex;gap:8px;justify-content:space-between;align-items:center}
.cart-actions .btn{padding:8px 12px;font-size:14px}
.checkout-whatsapp{background:linear-gradient(90deg,#25D366,#06b858);border:0;color:#fff}
.clear-cart{background:transparent;border:1px solid rgba(255,255,255,0.06);color:var(--fg)}

/* small style for install button when visible (keeps same visual language) */
.btn[disabled]{opacity:0.6;pointer-events:none}

/* Three-dots menu button + panel */
#threeDotMenuContainer{
  position:fixed;
  left:14px;
  top:16px;
  z-index:1200;
  display:flex;
  align-items:flex-start;
  gap:8px;
  pointer-events:auto;
}
.three-dots{
  width:44px;
  height:44px;
  padding:8px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(180deg, rgba(2,6,10,0.75), rgba(6,12,18,0.6));
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.three-dots .dot{
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:linear-gradient(90deg,#00f2ff,#7df0a6);
  box-shadow:0 6px 18px rgba(0,220,255,0.08);
}
.three-dots:hover{ transform:translateY(-4px); box-shadow:0 20px 60px rgba(0,140,180,0.12); }
.three-dots:active{ transform:translateY(0); }

.menu-panel{
  min-width:200px;
  margin-top:6px;
  background:linear-gradient(180deg, rgba(2,8,14,0.98), rgba(6,12,20,0.95));
  border-radius:12px;
  border:1px solid rgba(0,220,255,0.06);
  box-shadow:0 30px 80px rgba(0,0,0,0.6);
  padding:8px;
  display:none;
  flex-direction:column;
  gap:6px;
  transform-origin:top right;
  transition:opacity .16s ease, transform .16s ease;
}
.menu-panel.open{
  display:flex;
  opacity:1;
  transform:translateY(0) scale(1);
}
.menu-item{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  color:var(--fg);
  font-weight:800;
  background:transparent;
  border:1px solid transparent;
}
.menu-item:hover, .menu-item:focus{
  outline:none;
  background:linear-gradient(90deg, rgba(0,220,255,0.04), rgba(255,255,255,0.01));
  border:1px solid rgba(0,220,255,0.06);
  transform:translateY(-2px);
}

/* small-screen adjust so it doesn't overlap important UI */
@media (max-width:720px){
  #threeDotMenuContainer{ left:12px; top:12px; }
  .menu-panel{ min-width:160px; }
}

/* New: highlighted contact note above footer action */
.contact-note{
  display:inline-block;
  font-weight:800;
  color: #dff7fb;
  background: linear-gradient(90deg, rgba(0,220,255,0.06), rgba(120,90,255,0.04));
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(0,220,255,0.08);
  box-shadow: 0 10px 30px rgba(0,120,160,0.08), inset 0 -6px 18px rgba(255,255,255,0.01);
  letter-spacing:0.4px;
  font-size:14px;
  vertical-align:middle;
  max-width:70%;
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden;
}
/* ensure mobile wrapping */
@media (max-width:720px){
  .contact-note{display:block;max-width:100%;white-space:normal;margin-bottom:8px}
}

/* Ticker / highlights bar */
.ticker-wrap{
  width:100%;
  max-width:1100px;
  margin:0 auto 12px auto;
  overflow:hidden;
  border-radius:12px;
  padding:8px 12px;
  box-shadow:0 8px 30px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.04);
  background: linear-gradient(90deg, rgba(255,40,80,0.08), rgba(255,180,60,0.04));
}
.ticker{
  display:block;
  white-space:nowrap;
  will-change:transform;
  font-weight:800;
  color:#081018;
  font-family: "Calistoga", "Noto Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size:clamp(12px,2.6vw,18px);
  letter-spacing:0.6px;
  overflow:visible;
  position:relative;
}
/* inner track that animates */
.ticker .track{
  display:inline-block;
  white-space:nowrap;
  will-change:transform;
  padding-right:36px;
  margin-right:36px;
  color:#081018;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
  padding:10px 16px;
  border-radius:10px;
  margin-left:8px;
  margin-right:8px;
  box-shadow:0 8px 30px rgba(255,120,80,0.06);
}
/* animation uses a CSS variable set by JS for smooth speed control */
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker .anim {
  display:inline-block;
  will-change:transform;
  animation-name: tickerMove;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--ticker-duration, 18s);
  align-items:center;
}
/* pause animation on hover/focus for accessibility */
.ticker-wrap:hover .anim,
.ticker-wrap:focus-within .anim {
  animation-play-state: paused;
  cursor:default;
}

/* ensure contrast for small screens */
@media (max-width:720px){
  .ticker-wrap{padding:8px;border-radius:10px;margin-bottom:10px}
  .ticker .track{font-size:13px;padding:8px 12px}
}