:root {
  --bg-deep: #030712;
  --bg-dark: #08111f;
  --bg-card: rgba(255, 255, 255, 0.045);
  --bg-card-hover: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(37, 99, 235, 0.55);

  --police-blue: #2563eb;
  --police-blue-dark: #0b2a66;
  --police-red: #ef233c;
  --police-gold: #facc15;
  --police-gold-light: #fde68a;
  --police-cyan: #38bdf8;
  --police-green: #22c55e;

  --purple: var(--police-blue-dark);
  --purple-light: var(--police-blue);
  --blue: var(--police-blue);
  --cyan: var(--police-cyan);
  --gold: var(--police-gold);
  --gold-light: var(--police-gold-light);
  --orange: #f97316;
  --red: var(--police-red);
  --green: var(--police-green);

  --text: #f8fafc;
  --text-muted: #a8b3cf;
  --text-dim: #64748b;

  --nav-h: 68px;
  --announce-h: 34px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.28);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(37, 99, 235, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse at 82% 100%, rgba(239, 35, 60, 0.08) 0%, transparent 58%),
    linear-gradient(135deg, rgba(250, 204, 21, 0.025), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: 'Orbitron', sans-serif;
  margin: 0;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.site-main {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + var(--announce-h));
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: clamp(30px, 5vw, 60px) 0;
}

.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announce-h);
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 14, 30, 0.88);
  backdrop-filter: blur(8px);
}

.announce-ticker-wrap {
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.announce-ticker {
  white-space: nowrap;
  display: inline-flex;
  gap: 14px;
  animation: ticker 26s linear infinite;
  color: var(--text-muted);
  font-size: 12px;
  padding-left: 100%;
}

.announce-ticker-sep {
  color: var(--purple-light);
}

.site-header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  z-index: 35;
}

.navbar {
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 12, 25, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.logo-icon-image {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.35);
  box-shadow: 0 0 0 2px rgba(11, 42, 102, 0.5), 0 0 16px rgba(37, 99, 235, 0.35);
}

.logo-icon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  animation: logoPulse 2.8s infinite;
}

.logo-icon-police {
  background: linear-gradient(135deg, var(--police-blue-dark), var(--police-blue));
  border: 1px solid rgba(250, 204, 21, 0.35);
  color: var(--police-gold);
}

.logo-image img {
  max-height: 42px;
  width: auto;
}

.logo-text {
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--text);
  text-shadow: 0 0 16px rgba(110, 72, 255, 0.7);
}

.nav-burger {
  display: none;
  width: 40px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  box-shadow: 0 4px 16px rgba(110, 72, 255, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-25deg);
  animation: btnSheen 3.5s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110, 72, 255, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--text);
  background: var(--bg-card);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 12px;
}

.hero {
  padding: 50px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  margin-bottom: 14px;
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  margin-bottom: 14px;
  max-width: 620px;
}

.hero-ticker-label {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(110, 72, 255, 0.25);
}

.hero-ticker-text {
  overflow: hidden;
}

.hero-ticker-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-brand-mark {
  width: clamp(88px, 11vw, 132px);
  height: clamp(88px, 11vw, 132px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(250, 204, 21, 0.52);
  box-shadow: 0 0 0 3px rgba(11, 42, 102, 0.55), 0 0 24px rgba(37, 99, 235, 0.38);
  background: rgba(5, 12, 26, 0.9);
  margin: 6px 0 8px;
  animation: logoPulse 2.8s ease-in-out infinite;
}

.hero-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  image-rendering: pixelated;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.03;
  margin-bottom: 12px;
}

.hero h1 span {
  color: var(--cyan);
}

.hero p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

.hero-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-chars {
  position: absolute;
  inset: auto 0 36px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  z-index: 3;
}

.hero-avatar {
  width: min(24%, 120px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.hero-avatar-dance {
  animation: home-dance 0.8s ease-in-out infinite;
}

.hero-avatar-walk {
  animation: home-walk 0.9s ease-in-out infinite alternate;
}

.hero-avatar-wave {
  animation: home-wave 1.1s ease-in-out infinite;
}

.hero-avatar-bop {
  animation: home-bop 1.2s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 290px;
  height: 290px;
  transform: translate(-50%, -42%);
  border-radius: 50%;
  border: 1px solid rgba(110, 72, 255, 0.35);
  box-shadow: 0 0 28px rgba(110, 72, 255, 0.35), inset 0 0 30px rgba(0, 180, 255, 0.15);
  animation: neonPulse 2.8s infinite;
}

.hero-emblems-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(260px, 34vw, 430px);
  aspect-ratio: 1;
  transform: translate(-50%, -44%);
  pointer-events: none;
  z-index: 4;
  animation: home-orbit-spin 28s linear infinite;
}

.hero-emblem-orbit-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(34px, 3vw, 44px);
  height: clamp(34px, 3vw, 44px);
  margin-left: calc(clamp(34px, 3vw, 44px) / -2);
  margin-top: calc(clamp(34px, 3vw, 44px) / -2);
  transform: rotate(var(--angle)) translateY(calc(clamp(140px, 16vw, 196px) * -1)) rotate(calc(var(--angle) * -1));
}

.hero-emblem-orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
  animation: home-emblem-pulse 2.6s ease-in-out infinite;
}

.news-hero {
  padding: 30px 0 10px;
}

.news-page-header,
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.news-page-title,
.section-title h2 {
  font-size: clamp(24px, 4vw, 36px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.news-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.news-card-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--bg-dark), rgba(110, 72, 255, 0.2));
  position: relative;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
}

.news-card-body {
  padding: 20px;
  flex: 1;
}

.news-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.news-card h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.news-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.news-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.news-featured-big {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(0, 1fr);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition);
}

.news-featured-big:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.feat-img {
  min-height: 260px;
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark), rgba(110, 72, 255, 0.18));
}

.feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-emoji {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 72px;
}

.feat-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  background: rgba(255, 62, 94, 0.2);
  border: 1px solid rgba(255, 62, 94, 0.5);
}

.feat-body {
  padding: 22px;
}

.feat-body h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.feat-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
}

.events-list {
  display: grid;
  gap: 12px;
}

.event-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 10px;
  transition: var(--transition);
}

.event-item:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.event-date {
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(110, 72, 255, 0.35), rgba(0, 180, 255, 0.3));
  text-align: center;
  padding: 8px;
}

.event-date .day {
  display: block;
  font-size: 22px;
  font-family: 'Orbitron', sans-serif;
}

.event-date .month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.event-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.event-info p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.site-sidebar,
aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.sidebar-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  padding: 16px;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}

.news-categories-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.filter-btn:hover {
  border-color: var(--purple);
  color: var(--text);
}

.article-sidebar-list {
  display: grid;
  gap: 8px;
}

.article-related-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.article-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(110, 72, 255, 0.25);
}

.article-thumb-cyan {
  background: rgba(0, 180, 255, 0.2);
}

.article-related-title {
  font-size: 13px;
  line-height: 1.4;
}

.article-meta-dim {
  color: var(--text-dim);
  font-size: 11px;
}

.search-wrap {
  position: relative;
}

.search-wrap input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 10px 14px 10px 34px;
  outline: none;
}

.search-wrap input:focus {
  border-color: var(--purple);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 12px;
}

.article-page-section .container {
  max-width: 1160px;
}

.article-breadcrumb-row {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.article-link-muted {
  color: var(--text-muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
}

.article-main {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 18px;
}

.article-hero-box {
  min-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-dark), rgba(110, 72, 255, 0.2));
  margin-bottom: 14px;
}

.article-hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-main-emoji {
  display: grid;
  place-items: center;
  height: 260px;
  font-size: 64px;
}

.article-head-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.article-tag-chip {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  color: var(--cyan);
}

.article-meta-sm,
.article-meta-xxs {
  font-size: 12px;
  color: var(--text-dim);
}

.article-head-title {
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.2;
}

.article-head-lead {
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.7;
}

.article-share-row {
  margin: 16px 0;
}

.article-content {
  line-height: 1.8;
  color: #dbe0f5;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin: 0 0 1em;
}

.article-content a {
  color: var(--cyan);
  text-decoration: underline;
}

.article-tags-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags-row a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.article-author-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.article-author-avatar {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.article-heading-sm {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
}

.article-author-role {
  font-size: 12px;
  color: var(--text-muted);
}

.article-author-bio {
  margin: 12px 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  padding: 16px;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.team-avatar {
  width: 82px;
  height: 102px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.team-avatar-fallback {
  display: grid;
  place-items: center;
  font-size: 34px;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.team-role {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--gold-light);
}

.team-sector {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--cyan);
}

.team-bio {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-sectors-stack {
  display: grid;
  gap: 16px;
}

.team-directory .container {
  max-width: 1320px;
}

.team-sector-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 14px;
  width: 100%;
}

.team-sector-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.team-sector-head h2 {
  font-size: clamp(18px, 2.2vw, 24px);
}

.team-sector-meta {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
}

.team-role-groups {
  display: grid;
  gap: 10px;
}

.team-role-group {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px;
  background: rgba(8, 17, 31, 0.45);
  width: 100%;
}

.team-role-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.team-role-group-head h3 {
  font-size: 15px;
  color: var(--gold-light);
}

.team-role-group-count {
  font-size: 11px;
  color: var(--text-dim);
}

.team-member-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)) !important;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.team-member-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  padding: 10px;
  display: grid;
  gap: 6px;
  align-content: start;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.team-member-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  background: var(--bg-card-hover);
}

.team-member-card h4 {
  font-size: 15px;
  margin: 0;
}

.team-member-card .team-avatar {
  margin-bottom: 0;
  width: 72px;
  height: 92px;
}

.team-directory .team-member-card .btn {
  width: 100%;
  justify-content: center;
  padding: 7px 10px;
  font-size: 11px;
}

.team-status {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
}

.team-status.is-online {
  color: var(--green);
}

.team-status.is-offline {
  color: var(--text-dim);
}

.team-post-count {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}

@media (min-width: 1200px) {
  .team-member-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.comment-list {
  margin: 0;
  padding-left: 18px;
}

.comment-list .comment {
  margin-bottom: 12px;
}

.comment-respond input[type='text'],
.comment-respond input[type='email'],
.comment-respond input[type='url'],
.comment-respond textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  padding: 10px;
}

.pagination {
  margin-top: 20px;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-right: 6px;
  color: var(--text-muted);
  font-size: 13px;
}

.pagination .current,
.pagination .page-numbers:hover {
  border-color: var(--purple);
  color: var(--text);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: rgba(8, 12, 22, 0.88);
  backdrop-filter: blur(8px);
}

.footer-habbo-divider {
  text-align: center;
  margin-bottom: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer h3,
.footer h4 {
  margin-bottom: 10px;
}

.footer p,
.footer-links {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
}

.hbj-radio-player {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  width: min(1180px, calc(100vw - 20px));
  z-index: 60;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(8, 14, 29, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hbj-radio-row {
  display: grid;
  grid-template-columns: auto minmax(280px, 1fr) auto minmax(220px, 300px);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
}

.hbj-radio-title {
  display: flex;
  align-items: center;
  gap: 7px;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  white-space: nowrap;
}

.hbj-radio-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
}

.hbj-radio-now {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.hbj-radio-now-label {
  font-size: 11px;
  color: var(--text-dim);
  white-space: nowrap;
}

.hbj-radio-now-track-wrap {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 6px 12px;
  min-width: 0;
}

.hbj-radio-now-track {
  display: inline-block;
  white-space: nowrap;
  color: var(--text);
  font-size: 12px;
  will-change: transform;
  animation: hbjMarquee 14s linear infinite;
}

.hbj-radio-listeners {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.hbj-radio-controls {
  display: grid;
  grid-template-columns: 42px 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 220px;
}

.hbj-radio-btn {
  width: 42px;
  height: 38px;
}

.hbj-radio-play {
  background: linear-gradient(135deg, var(--police-blue-dark), var(--police-blue));
}

.hbj-radio-volume {
  width: 100%;
}

.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.55s ease;
}

.reveal.revealed,
.reveal-stagger.revealed {
  opacity: 1;
  transform: none;
}

.habbo-profile-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.habbo-profile-head {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.habbo-profile-head img {
  width: 70px;
  height: 88px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.habbo-profile-head h3 {
  font-size: 16px;
}

.habbo-profile-head p {
  margin: 6px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.habbo-status {
  font-size: 12px;
}

.habbo-status.online {
  color: var(--green);
}

.habbo-status.offline {
  color: var(--text-dim);
}

.habbo-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.habbo-badges-row img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes hbjMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(110, 72, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 40px rgba(110, 72, 255, 0.8), 0 0 60px rgba(0, 180, 255, 0.3);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(110, 72, 255, 0.35), 0 0 12px rgba(110, 72, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 14px rgba(110, 72, 255, 0.75), 0 0 30px rgba(110, 72, 255, 0.45), 0 0 50px rgba(0, 180, 255, 0.2);
  }
}

@keyframes btnSheen {
  0% {
    left: -80%;
  }

  50%,
  100% {
    left: 130%;
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(115px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(115px) rotate(-360deg);
  }
}

@keyframes home-orbit-spin {
  from {
    transform: translate(-50%, -44%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -44%) rotate(360deg);
  }
}

@keyframes home-emblem-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes home-wave {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-6px) rotate(-4deg);
  }
  70% {
    transform: translateY(-2px) rotate(4deg);
  }
}

@keyframes home-dance {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) translateX(-3px) rotate(-3deg);
  }
  50% {
    transform: translateY(-2px) translateX(3px) rotate(3deg);
  }
  75% {
    transform: translateY(-6px) translateX(-2px) rotate(-2deg);
  }
}

@keyframes home-walk {
  0% {
    transform: translateX(-5px) translateY(0);
  }
  100% {
    transform: translateX(5px) translateY(-4px);
  }
}

@keyframes home-bop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.03);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .article-layout,
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-big {
    grid-template-columns: 1fr;
  }

  .feat-img {
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  .nav-burger {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(8, 14, 29, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-visual {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .site-main {
    padding-top: calc(var(--nav-h) + var(--announce-h) + 6px);
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-emblems-orbit {
    width: clamp(180px, 55vw, 260px);
    transform: translate(-50%, -42%);
  }

  .hero-emblem-orbit-item {
    transform: rotate(var(--angle)) translateY(calc(clamp(86px, 24vw, 116px) * -1)) rotate(calc(var(--angle) * -1));
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-chars {
    gap: 4px;
  }

  .hero-avatar {
    width: 24%;
  }

  .hero-visual {
    min-height: 200px;
  }

  .hero-brand-mark {
    width: 86px;
    height: 86px;
    margin: 6px auto 8px;
  }

  .hero-emblems-orbit {
    width: clamp(150px, 48vw, 220px);
  }

  .hero-emblem-orbit-item {
    transform: rotate(var(--angle)) translateY(calc(clamp(70px, 20vw, 96px) * -1)) rotate(calc(var(--angle) * -1));
  }

  .team-member-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .team-member-card {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
  }

  .hbj-radio-player {
    left: 8px;
    right: 8px;
    transform: none;
    width: auto;
    bottom: 10px;
  }

  .hbj-radio-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
  }

  .hbj-radio-controls {
    grid-template-columns: 42px 42px minmax(0, 1fr);
  }
}

