/* ✅ Winning Points Card */
.winning-card{
  position: relative;
  padding: 22px 20px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,204,0,.10), rgba(255,255,255,.04)),
    rgba(0,0,0,.22);
  box-shadow:
    0 18px 50px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.03);
  overflow: hidden;
}

.winning-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  background:
    radial-gradient(500px 140px at 20% 0%, rgba(255,204,0,.14), transparent 55%);
  pointer-events:none;
  opacity:.95;
}

.winning-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 18px;
  position:relative;
  z-index:2;
}

.winning-label{
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  letter-spacing: .2px;
}

.winning-live{
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, #ffcc00, #ffd84d);
  box-shadow: 0 0 18px rgba(255,204,0,.35);
  animation: liveBlink 1.3s infinite ease-in-out;
}

.winning-points-wrap{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 150px;
  z-index:2;
}

.winning-glow-ring{
  position:absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,204,0,.22) 0%, rgba(255,204,0,.10) 35%, transparent 70%);
  filter: blur(6px);
  animation: pulseRing 2.2s infinite ease-in-out;
}

.winning-points{
  position: relative;
  z-index: 2;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  color: #ffcc00;
  text-shadow:
    0 0 10px rgba(255,204,0,.35),
    0 0 20px rgba(255,204,0,.20),
    0 4px 18px rgba(0,0,0,.35);
  animation: pointsBlink 1.5s infinite ease-in-out;
}

.winning-sub{
  margin-top: 12px;
  text-align:center;
  font-size: 13px;
  color: rgba(255,255,255,.68);
  position:relative;
  z-index:2;
}

/* ✅ Blink / Glow animations */
@keyframes pointsBlink{
  0%, 100%{
    opacity: 1;
    transform: scale(1);
    text-shadow:
      0 0 10px rgba(255,204,0,.35),
      0 0 20px rgba(255,204,0,.20),
      0 4px 18px rgba(0,0,0,.35);
  }
  50%{
    opacity: .82;
    transform: scale(1.04);
    text-shadow:
      0 0 18px rgba(255,204,0,.60),
      0 0 32px rgba(255,204,0,.35),
      0 6px 20px rgba(0,0,0,.45);
  }
}

@keyframes pulseRing{
  0%, 100%{
    transform: scale(1);
    opacity: .7;
  }
  50%{
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes liveBlink{
  0%, 100%{
    opacity: 1;
    box-shadow: 0 0 18px rgba(255,204,0,.35);
  }
  50%{
    opacity: .75;
    box-shadow: 0 0 26px rgba(255,204,0,.55);
  }
}

.quiz-progress-bar{
  height:12px;
  width:100%;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  overflow:hidden;
  position:relative;
}

.progress-yes{
  height:100%;
  background:linear-gradient(90deg,#ffcc00,#ffd84d);
  position:absolute;
  left:0;
  top:0;
}

.progress-no{
  height:100%;
  background:linear-gradient(90deg,#ff5c5c,#ff8080);
  position:absolute;
  right:0;
  top:0;
}

.quiz-progress-info{
  margin-top:8px;
  font-weight:bold;
}

.yes-count{
  color:#ffcc00;
}

.no-count{
  color:#ff8080;
}

.nav-user{
  display:flex;
  align-items:center;
  gap:12px;
}

.user-name{
  font-weight:800;
  color:rgba(255,255,255,.9);
  padding:8px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);
}

:root{
  --bg:#050608;
  --panel: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.14);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --yellow: #ffcc00;
  --yellow2:#ffd84d;

  --shadow: 0 18px 60px rgba(0,0,0,.60);
  --shadow2: 0 12px 30px rgba(0,0,0,.40);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(255,204,0,.22), transparent 55%),
    radial-gradient(900px 650px at 85% 25%, rgba(255,216,77,.12), transparent 60%),
    radial-gradient(900px 700px at 40% 90%, rgba(255,204,0,.10), transparent 60%),
    linear-gradient(180deg, #030406, #050608 55%, #020305);
  color: var(--text);
  overflow-x:hidden;
}

.media{
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
}

.media iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px, 92vw); margin:0 auto}
.section{padding: 54px 0}
.accent{color:rgba(255,204,0,.95)}

/* ✅ Background layers */
.bg-wrap{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
#particles{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  opacity: .85;
  filter: blur(.2px);
}
.float-layer{
  position:absolute;
  inset:0;
  overflow:hidden;
  opacity: .55;
}

/* ✅ Floating coin/ticket */
.float{
  position:absolute;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,204,0,.22);
  background: linear-gradient(135deg, rgba(255,204,0,.20), rgba(255,255,255,.06));
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  transform: translate3d(0,0,0) rotate(0deg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  will-change: transform;
  animation: floatUp linear infinite;
}
.float::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background:
    radial-gradient(18px 18px at 30% 25%, rgba(255,255,255,.22), transparent 55%),
    linear-gradient(120deg, rgba(255,204,0,.25), transparent 40%);
  opacity:.9;
  mix-blend-mode: screen;
}
.float.coin{
  border-radius: 999px;
  width: 34px;
  height: 34px;
  border-color: rgba(255,204,0,.28);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,204,0,.14));
}
.float.ticket{
  width: 54px;
  height: 34px;
  border-radius: 14px;
}
@keyframes floatUp{
  0%   { transform: translate3d(var(--x,0), 110vh, 0) rotate(0deg); opacity:0; }
  10%  { opacity:.75; }
  100% { transform: translate3d(calc(var(--x,0) + var(--drift, 40px)), -20vh, 0) rotate(var(--rot, 260deg)); opacity:0; }
}

/* ✅ Spotlight */
.spotlight{
  position:absolute;
  inset:-30%;
  background: radial-gradient(600px 400px at 50% 50%, rgba(255,204,0,.12), transparent 60%);
  animation: spotMove 10s ease-in-out infinite;
  opacity:.75;
  filter: blur(6px);
  transform: translateZ(0);
}
@keyframes spotMove{
  0%{ transform: translate(-8%, -6%) scale(1); }
  50%{ transform: translate(10%, 8%) scale(1.12); }
  100%{ transform: translate(-8%, -6%) scale(1); }
}

/* ✅ Glass */
.glass{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transform-style: preserve-3d;
}
.glass::before{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255,255,255,.12), transparent 35%),
    radial-gradient(700px 240px at 20% 10%, rgba(255,204,0,.22), transparent 60%);
  pointer-events:none;
  opacity:.7;
  mix-blend-mode: screen;
}
.glass::after{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  border: 1px solid rgba(255,204,0,.10);
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  opacity:.9;
}
.tilt{
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
  transform: translateZ(0);
}
.tilt:hover{
  box-shadow: 0 28px 100px rgba(0,0,0,.75);
  transform: translateY(-3px) rotateX(3deg) rotateY(-3deg);
}

/* ✅ Header */
header{
  position: sticky;
  top:0;
  z-index:50;
  padding: 14px 0;
  background: rgba(5,6,8,.50);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px;}
.brand{display:flex; align-items:center; gap:12px;}
.logo{
  width:44px; height:44px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow2);
  display:grid; place-items:center;
  overflow:hidden;
  transform: translateZ(20px);
}
.logo img{width:100%; height:100%; object-fit:cover;}
.brand h1{font-size: 15px; margin:0; letter-spacing:.2px;}
.brand p{margin:0; font-size:12px; color: var(--muted)}
.nav-actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap;}

.btn{
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow2);
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
  user-select:none;
  font-weight: 600;
  letter-spacing:.2px;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.12)}
.btn.primary{
  background: linear-gradient(135deg, rgba(255,204,0,.95), rgba(255,216,77,.65));
  color: #141414;
  border-color: rgba(255,204,0,.55);
}
.btn.primary:hover{
  background: linear-gradient(135deg, rgba(255,204,0,1), rgba(255,216,77,.80));
}
.btn.small{padding: 9px 12px; border-radius: 14px}
.btn.good{background: rgba(255,204,0,.20); border-color: rgba(255,204,0,.30); color: var(--text);}
.btn.bad{background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); color: var(--text);}

/* ✅ Hero */
.hero{padding: 26px 0 0;}
.hero-card{display:grid; grid-template-columns: 1.1fr 1fr; gap: 18px; padding: 18px;}
.ambassador{
  border-radius: calc(var(--radius) - 6px);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  min-height: 420px;
  position:relative;
  box-shadow: var(--shadow2);
  transform: translateZ(26px);
}
.ambassador img{width:100%; height:100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); transform: scale(1.02);}
.ambassador-badge{
  position:absolute; left:16px; top:16px;
  background: rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.18);
  padding: 10px 12px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  font-size: 12px;
}
.hero-content{padding: 8px 6px; display:flex; flex-direction:column; justify-content:center; gap: 12px; transform: translateZ(38px);}
.kicker{display:inline-flex; align-items:center; gap:8px; font-size: 12px; color: var(--muted); letter-spacing:.22px;}
.dot{width:8px;height:8px;border-radius:99px; background: rgba(255,204,0,.95); box-shadow: 0 0 18px rgba(255,204,0,.60);}
.hero-title{font-size: 36px; line-height: 1.1; margin: 0; letter-spacing: .2px;}
.hero-sub{margin:0; color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 55ch;}
.stats{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 8px;}
.stat{padding: 12px; border-radius: 18px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); box-shadow: var(--shadow2); transform: translateZ(20px);}
.stat b{display:block;font-size:16px}
.stat span{font-size:12px;color: var(--muted)}
.hero-ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px}

/* ✅ Section header */
.sec-head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom: 16px;}
.sec-head h2{margin:0;font-size: 22px;letter-spacing:.2px;}
.sec-head p{margin:0;color: var(--muted); font-size: 13px}

/* ✅ Slider */
.slider{padding: 14px;}
.slider-wrap{overflow:hidden;border-radius: calc(var(--radius) - 6px);}
.track{display:flex; gap: 14px; padding: 6px; transform: translateX(0px); transition: transform .55s ease; will-change: transform;}
.slide{flex: 0 0 calc((100% - 28px)/3); min-width: calc((100% - 28px)/3);}
.card{
  height: 100%;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  position:relative;
  overflow:hidden;
  transform: translateZ(14px);
}
.card::after{
  content:"";
  position:absolute; inset:0;
  border-radius: inherit;
  background: radial-gradient(500px 160px at 20% 0%, rgba(255,204,0,.12), transparent 55%);
  pointer-events:none;
  opacity:.9;
  mix-blend-mode: screen;
}
.card .tag{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  position:relative; z-index:2;
}
.card h3,.card p,.thumb{position:relative; z-index:2;}
.card h3{margin: 10px 0 6px; font-size: 16px}
.card p{margin:0; color: var(--muted); font-size: 13px; line-height:1.6}
.thumb{border-radius: 16px; overflow:hidden; border: 1px solid rgba(255,255,255,.12); height: 220px; margin-bottom: 12px; background: rgba(255,255,255,.04);}
.thumb img{width:100%; height:100%; object-fit:cover;}

.slider-controls{display:flex; align-items:center; justify-content:space-between; gap: 10px; margin-top: 12px;}
.dots{display:flex; gap:8px; flex-wrap:wrap}
.dotbtn{width:9px;height:9px;border-radius:99px; border:1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.10); cursor:pointer; opacity:.85;}
.dotbtn.active{background: rgba(255,204,0,.95); border-color: rgba(255,204,0,1); opacity:1;}
.ctrls{display:flex; gap:10px}
.iconbtn{
  width:42px; height:42px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor:pointer;
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, background .18s ease;
}
.iconbtn:hover{transform: translateY(-1px); background: rgba(255,204,0,.14); border-color: rgba(255,204,0,.35)}

/* ✅ Quiz Progress Bar */
.quiz-progress{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
}

.quiz-progress-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}
.quiz-progress-top span{
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

.quiz-progress-bar{
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
}
.quiz-progress-fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,204,0,.95), rgba(255,216,77,.70));
  box-shadow: 0 0 20px rgba(255,204,0,.25);
  transition: width .35s ease;
}

/* ✅ Answers Box (Progress bar replacement) */
.quiz-ansbox{
  margin-top: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}

.quiz-ansbox-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.90);
  font-size: 13px;
}

.quiz-ansbox-count{
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,204,0,.35);
  background: rgba(255,204,0,.10);
  color: rgba(255,204,0,.95);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
}

/* ✅ Scroll list + newest on TOP */
.quiz-ansbox-list{
  display:flex;
  flex-direction: column-reverse;   /* 🔥 bottom-to-top */
  gap: 8px;

  max-height: 160px;               /* change if you want bigger */
  overflow:auto;
  padding-right: 6px;
}

/* scrollbar nice */
.quiz-ansbox-list::-webkit-scrollbar{
  width: 8px;
}
.quiz-ansbox-list::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.18);
  border-radius: 999px;
}
.quiz-ansbox-list::-webkit-scrollbar-track{
  background: rgba(255,255,255,.06);
  border-radius: 999px;
}

/* ✅ Answer row */
.ans-row{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.ans-row.correct{
  border-color: rgba(255,204,0,.28);
  background: rgba(255,204,0,.08);
}
.ans-row.wrong{
  border-color: rgba(255,80,80,.28);
  background: rgba(255,80,80,.06);
}

.ans-q{
  width: 38px;
  height: 26px;
  border-radius: 10px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  flex: 0 0 auto;
}

.ans-text{
  flex: 1 1 auto;
  color: rgba(255,255,255,.80);
  font-size: 13px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ans-badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  flex: 0 0 auto;
}

.ans-badge.ok{
  border-color: rgba(255,204,0,.35);
  color: rgba(255,204,0,.95);
}
.ans-badge.no{
  border-color: rgba(255,80,80,.35);
  color: rgba(255,140,140,.95);
}

/* Follow / Footer icon sizing */
.ic i{
  font-size: 22px;
  color: rgba(255,255,255,.92);
}

.social i{
  font-size: 20px;
  color: rgba(255,255,255,.92);
}

/* hover yellow */
.follow-card:hover .ic i,
.social:hover i{
  color: rgba(255,204,0,.95);
}
/* ✅ Quiz */
.quiz{display:grid; grid-template-columns: 1.1fr .9fr; gap: 16px; padding: 18px;}
.quiz-left{padding: 6px}
.quiz h3{margin:0 0 8px; font-size: 18px}
.quiz p{margin:0 0 14px; color: var(--muted); font-size: 13px; line-height:1.6}
.field{display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin: 10px 0 12px;}
input[type="text"]{
  flex:1 1 240px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.30);
  color: var(--text);
  outline:none;
}
input[type="text"]::placeholder{color: rgba(255,255,255,.55)}
.yn{display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px;}
.quiz-right{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.result{
  padding: 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.26);
  color: var(--muted);
  font-size: 13px;
  line-height:1.6;
  min-height: 92px;
}
.quiz-actions{display:flex; gap:10px; flex-wrap:wrap}

/* ✅ Follow */
.follow-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;}
.follow-card{
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  display:flex; gap:12px; align-items:center;
}
.follow-card .ic{
  width:44px; height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
}
.follow-card b{display:block}
.follow-card span{display:block; color: var(--muted); font-size: 12px; margin-top: 2px}

/* ✅ Influencers */
.grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px;}
.inf{padding: 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); box-shadow: var(--shadow2); overflow:hidden;}
.media{height: 170px; border-radius: 16px; overflow:hidden; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.28); margin-bottom: 10px;}
.media img,.media video{width:100%; height:100%; object-fit:cover}
.inf h4{margin: 0 0 4px; font-size: 15px}
.inf p{margin:0; color: var(--muted); font-size: 12px; line-height:1.6}

/* ✅ Footer */
footer{padding: 36px 0 44px; border-top: 1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.22); backdrop-filter: blur(12px);}
.foot{display:flex; justify-content:space-between; gap: 18px; flex-wrap:wrap; align-items:flex-start;}
.foot .left{display:flex; gap: 12px; align-items:flex-start; max-width: 560px;}
.foot small{color: var(--muted); display:block; margin-top: 6px; line-height:1.6}
.foot .right{display:flex; gap: 10px; align-items:center; flex-wrap:wrap;}
.social{
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, background .18s ease;
}
.social:hover{transform: translateY(-1px); background: rgba(255,204,0,.14); border-color: rgba(255,204,0,.35)}

/* ✅ Floating WhatsApp */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  width: 56px; height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255,204,0,.28);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 60px rgba(0,0,0,.65);
  display:grid; place-items:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.wa-float:hover{transform: translateY(-2px) scale(1.02); background: rgba(0,0,0,.55)}
.wa-float span{
  position:absolute;
  right: 68px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.40);
  color: var(--muted);
  font-size: 12px;
  white-space:nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}
.wa-float:hover span{opacity:1; transform: translateX(0)}

/* ✅ Toast */
.toast{
  position: fixed;
  top: 86px;
  right: 16px;
  z-index: 999;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.toast .t{
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow2);
  color: var(--text);
  font-size: 13px;
  max-width: 340px;
}
.t small{display:block; color: var(--muted); margin-top: 2px}

/* ✅ Responsive */
@media (max-width: 980px){
  .hero-card{grid-template-columns: 1fr}
  .ambassador{min-height: 360px}
  .quiz{grid-template-columns: 1fr}
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .follow-grid{grid-template-columns: 1fr}
  .slide{flex-basis: calc((100% - 14px)/2); min-width: calc((100% - 14px)/2);}
}
@media (max-width: 620px){
  .hero-title{font-size: 28px}
  .stats{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .slide{flex-basis: 100%; min-width: 100%;}
}
@media (prefers-reduced-motion: reduce){
  .spotlight, .float{animation:none !important;}
  #particles{opacity:.35;}
}