:root{
  --pink:#ff4f8b;
  --pink2:#ff86b7;
  --hot:#ec1967;
  --ink:#241626;
  --muted:#756273;
  --rose:#fff0f6;
  --rose-2:#ffe0eb;
  --teal:#34c7b4;
  --teal-soft:#e8fbf8;
  --gold:#f6b84b;
  --gold-soft:#fff5de;
  --paper:#fffafc;
  --card:#ffffff;
  --line:#f7cfdd;
  --shadow-sm:0 10px 24px rgba(73,31,56,.08);
  --shadow:0 22px 55px rgba(236,25,103,.16);
  --shadow-strong:0 28px 70px rgba(79,23,55,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--ink);
  min-height:100vh;
  padding-bottom:98px;
  overflow-x:hidden;
  background:
    linear-gradient(135deg,rgba(255,240,246,.95) 0%,rgba(255,255,255,.96) 42%,rgba(232,251,248,.9) 100%),
    linear-gradient(90deg,rgba(255,255,255,.55) 0 1px,transparent 1px),
    linear-gradient(0deg,rgba(255,255,255,.55) 0 1px,transparent 1px);
  background-size:auto,44px 44px,44px 44px;
}
a{text-decoration:none}
img{max-width:100%}
.brand-logo{font-weight:950;letter-spacing:0;color:var(--hot)}

.landing-body{padding-bottom:0;background:#120b16;color:#fff}
.landing-hero{
  min-height:88vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(18,11,22,.86) 0%,rgba(54,18,42,.66) 48%,rgba(18,11,22,.2) 100%),
    url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?w=1800') center/cover no-repeat;
}
.landing-hero:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:28%;
  background:linear-gradient(transparent,#fffafc);
}
.landing-nav{
  position:absolute;
  top:22px;
  left:12px;
  right:12px;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.landing-nav .brand-logo{color:#fff;text-shadow:0 8px 28px rgba(0,0,0,.28)}
.landing-copy{position:relative;z-index:1;max-width:720px;padding:110px 0 80px}
.landing-copy h1{font-size:96px;line-height:.92;font-weight:950;margin:18px 0 20px;color:#fff}
.landing-copy .lead{max-width:650px;color:rgba(255,255,255,.84);font-size:1.22rem}
.hero-badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:9px 14px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  font-weight:850;
  backdrop-filter:blur(14px);
}
.btn-glass{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
  border-radius:999px;
  font-weight:850;
  backdrop-filter:blur(14px);
}
.btn-glass:hover{background:rgba(255,255,255,.24);color:#fff}
.landing-strip{
  background:#fffafc;
  color:var(--ink);
  padding:22px 0 34px;
  margin-top:-1px;
}
.feature-tile{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-height:118px;
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(247,207,221,.85);
  box-shadow:var(--shadow-sm);
}
.feature-tile i{
  width:42px;
  height:42px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color:#fff;
  background:linear-gradient(135deg,var(--hot),var(--pink2));
}
.feature-tile strong{display:block;font-size:1rem}
.feature-tile span{display:block;color:var(--muted);font-size:.92rem;margin-top:3px}

.k-card,.glass-card{
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.92);
  border-radius:30px;
  box-shadow:var(--shadow);
}
.k-card{padding:24px}
.mini-card{
  border-radius:22px;
  background:#fff;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--rose-2);
}
.btn-k{
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  color:#fff;
  border:0;
  border-radius:999px;
  padding:12px 24px;
  font-weight:900;
  box-shadow:0 14px 30px rgba(236,25,103,.28);
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;
}
.btn-k:hover{color:white;transform:translateY(-2px);filter:saturate(1.04);box-shadow:0 18px 42px rgba(236,25,103,.36)}
.btn-soft{
  background:#fff;
  color:var(--hot);
  border:1px solid #ffcfe1;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 8px 20px rgba(236,25,103,.08);
}
.btn-soft:hover{background:var(--rose);color:var(--hot);border-color:#ffbdd5}
.btn-outline-danger{font-weight:850}
.form-label{font-weight:800;color:#6d5968;font-size:.9rem}
.form-control,.form-select{
  border-radius:18px;
  border:1px solid #ffd4e3;
  padding:12px 14px;
  background:#fff;
}
.form-control:focus,.form-select:focus{border-color:var(--pink);box-shadow:0 0 0 .2rem rgba(255,79,139,.15)}
.alert{border-radius:22px}

.navbar-k{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(247,207,221,.7);
  box-shadow:0 10px 28px rgba(79,23,55,.07);
}
.nav-links{gap:6px;align-items:center}
.nav-links a{
  color:#806b7a;
  font-size:14px;
  font-weight:850;
  padding:9px 12px;
  border-radius:999px;
  transition:background .18s ease,color .18s ease;
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.nav-links a.active,.nav-links a:hover{background:var(--rose);color:var(--hot)}
.nav-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:21px;
  height:21px;
  padding:0 6px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  color:#fff;
  font-size:11px;
  line-height:1;
  box-shadow:0 8px 16px rgba(236,25,103,.24);
}
.notification-wrap{position:relative}
.notification-btn{
  width:40px;
  height:40px;
  border:1px solid #ffcfe1;
  border-radius:50%;
  background:#fff;
  color:var(--hot);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  box-shadow:0 8px 20px rgba(236,25,103,.08);
}
.notification-btn span{
  position:absolute;
  top:-5px;
  right:-4px;
  min-width:19px;
  height:19px;
  padding:0 5px;
  border-radius:999px;
  background:var(--hot);
  color:#fff;
  border:2px solid #fff;
  font-size:10px;
  font-weight:950;
  line-height:15px;
}
.notification-menu{
  position:absolute;
  top:48px;
  right:0;
  width:320px;
  max-width:calc(100vw - 24px);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(247,207,221,.95);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:10px;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .18s ease,transform .18s ease;
  z-index:80;
}
.notification-menu.show{opacity:1;pointer-events:auto;transform:translateY(0)}
.notification-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 10px 12px;
  border-bottom:1px solid var(--rose-2);
  margin-bottom:8px;
}
.notification-head small{color:var(--muted);font-weight:800}
.notification-item{
  display:flex;
  gap:11px;
  align-items:flex-start;
  padding:11px;
  border-radius:18px;
  color:var(--ink);
}
.notification-item:hover{background:var(--rose);color:var(--ink)}
.notification-item i{
  width:36px;
  height:36px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  color:#fff;
  flex:0 0 auto;
}
.notification-item strong,.notification-item small{display:block}
.notification-item small{color:var(--muted);line-height:1.25;margin-top:2px}
.notification-empty{padding:18px 10px;color:var(--muted);text-align:center}
.bottom-nav{
  position:fixed;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  width:min(860px,96%);
  background:rgba(255,255,255,.93);
  backdrop-filter:blur(18px);
  border:1px solid rgba(247,207,221,.9);
  border-radius:28px;
  box-shadow:0 18px 45px rgba(79,23,55,.18);
  z-index:30;
  overflow:hidden;
}
.bottom-nav a{
  color:#8b7685;
  font-size:10px;
  line-height:1.08;
  text-align:center;
  padding:10px 2px 9px;
  display:block;
  min-height:58px;
}
.bottom-nav i{display:block;font-size:18px;margin-bottom:4px}
.bottom-nav a.active,.bottom-nav a:hover{color:var(--hot);background:linear-gradient(180deg,#fff0f6,#fff)}
.bottom-icon-wrap{position:relative;display:inline-block}
.bottom-count{
  position:absolute;
  top:-8px;
  right:-13px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--hot);
  color:#fff;
  border:2px solid #fff;
  font-size:9px;
  font-weight:950;
  line-height:14px;
}
.notification-stack{
  position:fixed;
  top:88px;
  right:18px;
  display:grid;
  gap:10px;
  z-index:90;
  width:min(360px,calc(100vw - 28px));
}
.notification-pop{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px;
  border-radius:22px;
  color:var(--ink);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(247,207,221,.96);
  box-shadow:var(--shadow);
  animation:popNotice .32s ease both;
}
.notification-pop:hover{color:var(--ink);transform:translateY(-2px)}
.notification-pop.leaving{animation:leaveNotice .26s ease forwards}
.notification-pop i{
  width:40px;
  height:40px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  flex:0 0 auto;
}
.notification-pop strong,.notification-pop small{display:block}
.notification-pop small{color:var(--muted);line-height:1.25;margin-top:2px}
@keyframes popNotice{from{opacity:0;transform:translateX(18px) scale(.98)}to{opacity:1;transform:translateX(0) scale(1)}}
@keyframes leaveNotice{to{opacity:0;transform:translateX(22px) scale(.98)}}

.dashboard-hero,.competition-hero{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:30px;
  color:#341d30;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,240,246,.95) 54%,rgba(232,251,248,.88)),
    linear-gradient(90deg,rgba(236,25,103,.1),transparent);
  border:1px solid rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}
.dashboard-hero h1{font-size:56px;line-height:1}
.safety-note{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border-radius:24px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(255,255,255,.9);
}
.safety-note i{
  width:42px;
  height:42px;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  border-radius:16px;
  background:var(--teal-soft);
  color:#128c7e;
  flex:0 0 auto;
}
.safety-note strong,.safety-note span{display:block}
.safety-note span{color:var(--muted);font-size:.92rem}
.stat-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.stat-card{
  display:flex;
  align-items:center;
  gap:12px;
  position:relative;
  min-height:96px;
  padding:18px;
  border-radius:26px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(247,207,221,.92);
  box-shadow:var(--shadow-sm);
  color:var(--ink);
  overflow:hidden;
}
.stat-card:hover{color:var(--ink);transform:translateY(-2px);box-shadow:var(--shadow)}
.stat-card>i{
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  flex:0 0 auto;
}
.stat-card span{display:block}
.stat-card strong{display:block;font-size:32px;line-height:1}
.stat-card small{color:var(--muted);font-weight:850}
.stat-card em{
  position:absolute;
  top:12px;
  right:12px;
  border-radius:999px;
  background:var(--gold-soft);
  color:#9a6900;
  padding:5px 9px;
  font-size:11px;
  font-style:normal;
  font-weight:950;
}

.profile-card{position:relative;overflow:hidden;border-radius:32px;min-height:520px;background:#fff;box-shadow:var(--shadow-strong)}
.profile-card img.main{width:100%;height:410px;object-fit:cover}
.profile-card .overlay{position:absolute;left:0;right:0;bottom:0;padding:26px;color:white;background:linear-gradient(transparent,rgba(22,9,18,.9))}
.tag{
  display:inline-flex;
  align-items:center;
  gap:5px;
  background:#fff0f6;
  color:var(--hot);
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin:3px;
}
.score-pill{
  background:#fff0f6;
  color:var(--hot);
  border:1px solid #ffd0df;
  border-radius:999px;
  padding:8px 14px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:5px;
}
.choice-btn{width:62px;height:62px;border-radius:50%;border:0;background:#fff;box-shadow:0 14px 35px rgba(0,0,0,.12);font-size:24px;transition:transform .18s ease}
.choice-btn:hover{transform:translateY(-2px)}
.choice-like{color:var(--pink)}.choice-pass{color:#6c757d}.choice-star{color:#f6b84b}

.chat-shell{height:calc(100vh - 165px);display:flex;flex-direction:column}
.chat-window{flex:1;overflow:auto;padding:20px;background:linear-gradient(180deg,#fffafd,#fff)}
.msg{max-width:78%;padding:12px 16px;border-radius:24px;margin:9px 0;animation:pop .22s ease}
.msg.me{margin-left:auto;background:linear-gradient(135deg,var(--hot),var(--pink2));color:#fff;border-bottom-right-radius:6px}
.msg.them{background:#fff;color:var(--ink);border-bottom-left-radius:6px;box-shadow:0 8px 22px rgba(0,0,0,.06)}
.msg-time{font-size:10px;opacity:.72;margin-top:4px}
.chat-layout{display:grid;grid-template-columns:340px minmax(0,1fr);gap:18px;align-items:stretch}
.chat-inbox{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(247,207,221,.92);
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:650px;
}
.chat-inbox-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px;
  border-bottom:1px solid var(--rose-2);
  background:linear-gradient(135deg,#fff,#fff0f6);
}
.chat-inbox-head strong,.chat-inbox-head span{display:block}
.chat-inbox-head span{color:var(--muted);font-size:13px}
.chat-inbox-head i{width:42px;height:42px;border-radius:16px;display:inline-flex;align-items:center;justify-content:center;background:var(--rose);color:var(--hot)}
.chat-inbox-list{display:grid;gap:8px;padding:12px;max-height:590px;overflow:auto}
.chat-contact{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:22px;
  color:var(--ink);
  border:1px solid transparent;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.chat-contact:hover,.chat-contact.active{background:#fff;border-color:#ffcfe1;transform:translateY(-1px);box-shadow:var(--shadow-sm)}
.chat-contact img{width:54px;height:54px;border-radius:18px;object-fit:cover;flex:0 0 auto}
.chat-contact-body{min-width:0;flex:1}
.chat-contact-body strong{line-height:1.1}
.chat-contact-body small{color:var(--muted);white-space:nowrap}
.chat-contact-body p{color:var(--muted);font-size:13px;line-height:1.28;margin:4px 0 8px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.chat-status{display:inline-flex;align-items:center;gap:4px;border-radius:999px;padding:4px 8px;font-size:11px;font-weight:900}
.chat-status.unlocked{background:var(--teal-soft);color:#128c7e}
.chat-status.locked{background:var(--gold-soft);color:#9a6900}
.unread-badge{display:inline-flex;align-items:center;justify-content:center;min-width:22px;height:22px;border-radius:999px;background:var(--hot);color:#fff;font-size:11px;font-weight:900}
.chat-thread{min-height:650px;display:flex;flex-direction:column}
.chat-thread-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-bottom:1px solid var(--rose-2);
  background:rgba(255,255,255,.78);
}
.chat-avatar{width:56px;height:56px;border-radius:20px;object-fit:cover}
.chat-compose{display:flex;gap:10px;padding:14px;border-top:1px solid var(--rose-2);background:#fff}
.chat-compose .btn{width:52px;height:52px;padding:0;display:inline-flex;align-items:center;justify-content:center}
.chat-empty,.chat-locked-panel{
  min-height:360px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:32px;
}
.chat-empty i{font-size:46px;color:var(--hot);margin-bottom:12px}
.chat-empty.small-empty{min-height:260px;color:var(--muted)}
.chat-locked-panel img{width:118px;height:118px;border-radius:34px;object-fit:cover;box-shadow:var(--shadow-sm);margin-bottom:18px}
@keyframes pop{from{transform:scale(.97);opacity:0}to{transform:scale(1);opacity:1}}

.gallery-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.gallery-img{aspect-ratio:1/1;border-radius:18px;object-fit:cover;width:100%;background:#fff0f6;border:1px dashed #ffb3c6}
.event-card,.entry-card,.match-mini-card,.competition-card,.game-card{
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(247,207,221,.92);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.event-card:hover,.entry-card:hover,.match-mini-card:hover,.competition-card:hover,.game-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:#ffc0d5;
}
.event-cover{width:100%;height:214px;object-fit:cover;background:#fff0f6}
.event-date{
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  color:white;
  border-radius:20px;
  padding:12px;
  min-width:74px;
  text-align:center;
  font-weight:950;
  box-shadow:0 12px 26px rgba(236,25,103,.24);
}
.event-form-card .form-label{font-size:13px;font-weight:850;color:var(--muted);margin-bottom:5px}
.event-host{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:13px}
.event-host img{width:28px;height:28px;border-radius:50%;object-fit:cover;border:2px solid #fff0f6}
.owner-badge{display:inline-flex;align-items:center;border-radius:999px;background:var(--teal-soft);color:#128c7e;border:1px solid #bdebd0;padding:6px 10px;font-size:12px;font-weight:900}
.mini-event-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:13px;border:1px solid var(--rose-2);border-radius:20px;background:#fff}
.mini-event-row strong{display:block;line-height:1.2}

.game-card,.game-play-card{position:relative}
.game-card{padding:24px}
.game-icon{
  width:76px;
  height:76px;
  border-radius:24px;
  background:linear-gradient(135deg,#fff0f6,#fff7df);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  margin-bottom:18px;
  border:1px solid #ffe1ec;
}
.game-tile{cursor:pointer;transition:transform .2s ease}
.game-tile:hover{transform:translateY(-3px)}
.leaderboard-preview{border-radius:22px;background:#fffafd;border:1px solid var(--rose-2);padding:14px}
.leader-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #ffe6ef}
.leader-row:last-child{border-bottom:0}
.reaction-option{display:flex;gap:10px;align-items:center;border:1px solid var(--rose-2);border-radius:18px;padding:10px 12px;background:#fff;cursor:pointer}
.reaction-option:hover{background:#fff8fb}
.emoji-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.emoji-choice{border:1px solid #ffd7e5;background:#fff;border-radius:24px;min-height:76px;font-size:34px;transition:transform .18s ease,background .18s ease}
.emoji-choice:hover{transform:translateY(-2px);background:#fff0f6}

.competition-card{padding:24px}
.competition-ribbon{
  display:inline-flex;
  border-radius:999px;
  background:var(--teal-soft);
  color:#128c7e;
  border:1px solid #bdebd0;
  padding:7px 12px;
  font-size:12px;
  font-weight:900;
  margin-bottom:14px;
}
.entry-image{width:100%;height:300px;object-fit:cover;background:#fff0f6}
.emoji-reactions{display:flex;flex-wrap:wrap;gap:8px}
.emoji-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid #ffd7e5;
  background:#fff;
  border-radius:999px;
  padding:7px 10px;
  font-weight:900;
  color:var(--ink);
  transition:transform .16s ease,background .16s ease,box-shadow .16s ease;
}
.emoji-pill:hover:not(:disabled){transform:translateY(-1px);background:#fff0f6;box-shadow:0 8px 18px rgba(236,25,103,.12)}
.emoji-pill:disabled{opacity:.55}

.profile-panel{text-align:center}
.profile-avatar{
  width:158px;
  height:158px;
  border-radius:50%;
  object-fit:cover;
  border:6px solid #fff;
  box-shadow:0 18px 35px rgba(236,25,103,.22);
  margin-bottom:16px;
}
.profile-progress{height:12px;border-radius:999px;background:#ffe5ef}
.profile-progress .progress-bar{background:linear-gradient(135deg,var(--hot),var(--teal));border-radius:999px}
.comment-emoji{max-width:86px}
.comment-row{display:flex;gap:12px;align-items:flex-start;background:#fff;border:1px solid var(--rose-2);border-radius:22px;padding:12px}
.comment-row img{width:42px;height:42px;border-radius:50%;object-fit:cover}
.match-mini-card img{width:100%;height:230px;object-fit:cover}
.match-mini-card h5{line-height:1.15}

.auth-card{max-width:460px}
.admin-login-note{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--rose-2);
  border-radius:18px;
  background:#fff;
  color:var(--muted);
  font-size:13px;
}
.admin-login-note strong{color:var(--ink)}
.feedback-hero,.admin-hero{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:30px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,240,246,.95) 54%,rgba(232,251,248,.88)),
    linear-gradient(90deg,rgba(236,25,103,.1),transparent);
  border:1px solid rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}
.admin-hero{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.admin-rating{
  min-width:190px;
  text-align:center;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--rose-2);
  padding:22px;
  box-shadow:var(--shadow-sm);
}
.admin-rating strong{display:block;font-size:48px;line-height:1;color:var(--hot)}
.admin-rating span{display:block;color:var(--muted);font-weight:850}
.admin-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.admin-stat-card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:17px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(247,207,221,.92);
  box-shadow:var(--shadow-sm);
}
.admin-stat-card i{
  width:44px;
  height:44px;
  border-radius:17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:linear-gradient(135deg,var(--hot),var(--pink2));
  flex:0 0 auto;
}
.admin-stat-card strong{display:block;font-size:28px;line-height:1}
.admin-stat-card small{display:block;color:var(--muted);font-weight:850}
.feedback-list{display:grid;gap:14px}
.feedback-item{
  padding:16px;
  border:1px solid var(--rose-2);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.feedback-author{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.feedback-author img,.admin-user-row img{
  width:46px;
  height:46px;
  border-radius:18px;
  object-fit:cover;
}
.feedback-author strong,.feedback-author small{display:block}
.feedback-author small{color:var(--muted)}
.feedback-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:10px}
.rating-stars{color:#f3aa2c;font-weight:950;letter-spacing:1px}
.admin-status{
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  font-weight:950;
  background:var(--gold-soft);
  color:#9a6900;
}
.admin-status.reviewed{background:var(--teal-soft);color:#128c7e}
.admin-status.resolved{background:#eef2ff;color:#4656d8}
.admin-status-select{min-width:124px}
.admin-user-row{
  display:flex;
  align-items:center;
  gap:11px;
  padding:11px;
  border:1px solid var(--rose-2);
  border-radius:20px;
  background:#fff;
}
.admin-user-row span{min-width:0;flex:1}
.admin-user-row strong,.admin-user-row small{display:block}
.admin-user-row small{color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.admin-user-row em{
  border-radius:999px;
  background:var(--teal-soft);
  color:#128c7e;
  padding:5px 8px;
  font-size:11px;
  font-style:normal;
  font-weight:950;
}
.report-row{
  padding:13px;
  border:1px solid var(--rose-2);
  border-radius:20px;
  background:#fff;
}
.report-row p{margin:5px 0;color:var(--muted)}
.report-row small{color:var(--muted)}

.call-shell{
  border-radius:34px;
  overflow:hidden;
  background:#17101b;
  color:#fff;
  box-shadow:var(--shadow-strong);
  border:1px solid rgba(255,255,255,.1);
}
.call-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px;
  background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  border-bottom:1px solid rgba(255,255,255,.1);
}
.call-topbar img{width:56px;height:56px;border-radius:20px;object-fit:cover}
.call-status{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(52,199,180,.18);color:#9cf1e7;font-weight:900}
.call-grid{display:grid;grid-template-columns:1.35fr .85fr;gap:14px;padding:14px;min-height:560px}
.video-tile{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#08060a;
  border:1px solid rgba(255,255,255,.12);
  min-height:460px;
}
.video-tile video{width:100%;height:100%;object-fit:cover;display:block;min-height:460px}
.video-label{
  position:absolute;
  left:14px;
  bottom:14px;
  border-radius:999px;
  background:rgba(0,0,0,.46);
  color:#fff;
  padding:8px 12px;
  font-weight:900;
  backdrop-filter:blur(10px);
}
.video-fallback,.remote-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  color:rgba(255,255,255,.78);
}
.video-fallback i{font-size:54px;margin-bottom:10px;color:#ffabc8}
.remote-placeholder img{width:128px;height:128px;border-radius:36px;object-fit:cover;border:4px solid rgba(255,255,255,.18);margin-bottom:18px}
.remote-placeholder small{max-width:430px;color:rgba(255,255,255,.56)}
.call-controls{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  padding:18px;
  background:rgba(0,0,0,.2);
  border-top:1px solid rgba(255,255,255,.1);
}
.call-btn{
  min-width:92px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.1);
  color:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.call-btn:hover:not(:disabled){background:rgba(255,255,255,.18)}
.call-btn:disabled{opacity:.45}
.call-btn.end{background:#ff345f;border-color:#ff345f}

.confetti{position:fixed;inset:0;pointer-events:none;z-index:100;background-image:radial-gradient(circle,#ff4f8b 2px,transparent 3px),radial-gradient(circle,#34c7b4 2px,transparent 3px),radial-gradient(circle,#f6b84b 2px,transparent 3px);background-size:40px 40px;animation:conf .7s linear}
@keyframes conf{from{opacity:1;transform:translateY(-20px)}to{opacity:0;transform:translateY(40px)}}

@media(max-width:991px){
  .landing-copy{padding-top:126px}
  .landing-copy h1{font-size:76px}
  .dashboard-hero h1{font-size:42px}
  .dashboard-hero,.competition-hero{padding:22px}
  .chat-layout{grid-template-columns:1fr}
  .chat-inbox{min-height:auto}
  .chat-inbox-list{display:flex;overflow-x:auto;max-height:none;padding-bottom:14px}
  .chat-contact{min-width:280px}
  .chat-thread{min-height:620px}
  .call-grid{grid-template-columns:1fr;min-height:auto}
  .video-tile,.video-tile video{min-height:330px}
  .stat-strip{grid-template-columns:1fr}
  .admin-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .admin-hero{align-items:flex-start;flex-direction:column}
}
@media(max-width:576px){
  body{padding-bottom:104px}
  .landing-hero{min-height:86vh;background-position:center}
  .landing-copy h1{font-size:58px}
  .landing-copy .lead{font-size:1.04rem}
  .landing-nav{top:14px}
  .k-card{padding:18px;border-radius:24px}
  .profile-card{min-height:470px}
  .profile-card img.main{height:360px}
  .gallery-grid{grid-template-columns:repeat(3,1fr)}
  .bottom-nav a{font-size:9px;padding:9px 1px;min-height:58px}
  .bottom-nav i{font-size:17px}
  .entry-image{height:240px}
  .emoji-grid{grid-template-columns:repeat(2,1fr)}
  .mini-event-row{align-items:flex-start;flex-direction:column}
  .admin-stat-grid{grid-template-columns:1fr}
  .admin-login-note{flex-direction:column}
}
