:root {
  --black: #070707;
  --black-soft: #0d0d0d;
  --panel: #141414;
  --panel-soft: #191919;
  --panel-light: #222222;

  --white: #ffffff;
  --text: #f4f1eb;
  --muted: #aaa49a;
  --muted-dark: #77726b;

  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);

  --yellow: #f9c92f;
  --yellow-light: #ffe16b;
  --red: #e73535;
  --green: #6fd15e;
  --blue: #4fa8d4;
  --purple: #9a70d6;

  --header-height: 78px;
  --livebar-height: 40px;
  --sidebar-width: 290px;
  --rightbar-width: 360px;

  --radius-small: 10px;
  --radius-medium: 17px;
  --radius-large: 24px;

  --shadow-small:
    0 12px 30px rgba(0, 0, 0, 0.24);

  --shadow-large:
    0 26px 70px rgba(0, 0, 0, 0.4);

  --page-padding: 22px;
}



* {
  box-sizing: border-box;
}



html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--black);
}



body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;

  color: var(--text);

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(249, 201, 47, 0.045),
      transparent 30%
    ),
    radial-gradient(
      circle at 100% 20%,
      rgba(231, 53, 53, 0.045),
      transparent 30%
    ),
    var(--black);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}



body,
button,
input,
textarea {
  font: inherit;
}



button,
input,
textarea {
  color: inherit;
}



button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}



button {
  border: 0;
}



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



img {
  display: block;
  max-width: 100%;
}



textarea {
  resize: none;
}



[hidden] {
  display: none !important;
}



.visually-hidden {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;

  border: 0 !important;
}



.dashboard-app {
  min-height: 100vh;
}



.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 100;

  display: grid;
  grid-template-columns: auto minmax(280px, 640px) auto;
  align-items: center;
  gap: 28px;

  min-height: var(--header-height);
  padding: 10px var(--page-padding);

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.98),
      rgba(18, 17, 15, 0.98),
      rgba(13, 13, 13, 0.98)
    );

  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(18px);
}



.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}



.mobile-menu-button {
  display: none;

  width: 44px;
  height: 44px;
  padding: 11px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;

  cursor: pointer;
}



.mobile-menu-button span {
  display: block;

  width: 100%;
  height: 2px;
  margin: 4px 0;

  background: var(--white);
  border-radius: 99px;
}



.dashboard-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}



.dashboard-logo img {
  width: 250px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}



.header-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;

  height: 48px;
  padding-left: 16px;

  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 999px;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}



.header-search:focus-within {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(249, 201, 47, 0.62);

  box-shadow:
    0 0 0 4px rgba(249, 201, 47, 0.09);
}



.header-search-icon {
  color: var(--muted);
  font-size: 1.2rem;
}



.header-search input {
  min-width: 0;
  height: 46px;
  padding: 0 14px;

  color: var(--white);
  background: transparent;
  border: 0;
  outline: none;

  font-size: 0.86rem;
}



.header-search input::placeholder {
  color: #77736d;
}



.header-search button {
  align-self: stretch;

  padding: 0 21px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.76rem;
  font-weight: 900;

  cursor: pointer;
}



.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}



.header-action-button {
  position: relative;

  display: grid;
  place-items: center;

  min-width: 58px;
  min-height: 48px;
  padding: 6px 10px;

  color: #ddd8d0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid transparent;
  border-radius: 13px;

  cursor: pointer;

  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}



.header-action-button:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: var(--border);
  transform: translateY(-2px);
}



.header-action-button > span:first-child {
  font-size: 1rem;
}



.header-action-label {
  font-size: 0.62rem;
  font-weight: 750;
}



.notification-count {
  position: absolute;
  top: -3px;
  right: -3px;

  display: grid;
  place-items: center;

  min-width: 20px;
  height: 20px;
  padding: 0 5px;

  color: var(--white);
  background: var(--red);
  border: 2px solid var(--black-soft);
  border-radius: 999px;

  font-size: 0.62rem;
  font-weight: 900;
}



.header-profile {
  position: relative;
  margin-left: 5px;
}



.header-profile-button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;

  min-width: 165px;
  min-height: 52px;
  padding: 5px 10px 5px 6px;

  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 999px;

  cursor: pointer;
}



.header-profile-avatar {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #7d5b20,
      #d99f26,
      #7d2727
    );

  border-radius: 50%;

  font-size: 0.9rem;
  font-weight: 900;
}



.header-profile-information {
  display: grid;
  text-align: left;
}



.header-profile-information strong {
  color: var(--white);
  font-size: 0.78rem;
}



.header-profile-information small {
  color: var(--green);
  font-size: 0.65rem;
}



.header-profile-arrow {
  color: var(--muted);
  font-size: 0.72rem;
}



.profile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;

  width: 220px;
  padding: 8px;

  background: #171717;
  border: 1px solid var(--border-strong);
  border-radius: 16px;

  box-shadow: var(--shadow-large);
}



.profile-menu a,
.profile-menu button {
  display: flex;
  align-items: center;
  gap: 11px;

  width: 100%;
  min-height: 43px;
  padding: 0 12px;

  color: #d9d4cc;
  background: transparent;
  border-radius: 10px;

  font-size: 0.78rem;
  text-align: left;

  cursor: pointer;
}



.profile-menu a:hover,
.profile-menu button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
}



.dashboard-livebar {
  position: sticky;
  top: var(--header-height);
  z-index: 90;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: var(--livebar-height);

  background:
    linear-gradient(
      90deg,
      #171717,
      #22190c,
      #211011,
      #171717
    );

  border-bottom: 1px solid rgba(249, 201, 47, 0.14);
}



.dashboard-livebar-label {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 0 17px;

  color: #171207;
  background: var(--yellow);

  font-size: 0.68rem;
  letter-spacing: 0.1em;
}



.live-indicator {
  width: 8px;
  height: 8px;

  background: var(--red);
  border-radius: 50%;

  box-shadow:
    0 0 0 5px rgba(231, 53, 53, 0.15);

  animation: livePulse 1.6s infinite;
}



.dashboard-livebar-window {
  overflow: hidden;
}



.dashboard-livebar-track {
  display: flex;
  align-items: center;
  width: max-content;

  animation: tickerMove 42s linear infinite;
}



.dashboard-livebar-track span {
  position: relative;
  padding: 0 35px;

  color: #d7d1c8;
  font-size: 0.74rem;
  white-space: nowrap;
}



.dashboard-livebar-track span::after {
  position: absolute;
  top: 50%;
  right: 0;

  width: 4px;
  height: 4px;

  background: var(--yellow);
  border-radius: 50%;

  content: "";
  transform: translateY(-50%);
}



.dashboard-layout {
  display: grid;
  grid-template-columns:
    var(--sidebar-width)
    minmax(0, 1fr)
    var(--rightbar-width);

  align-items: start;
  gap: 20px;

  width: 100%;
  padding: 20px;
}



.dashboard-sidebar,
.dashboard-rightbar {
  position: sticky;
  top: calc(var(--header-height) + var(--livebar-height) + 20px);

  max-height:
    calc(
      100vh -
      var(--header-height) -
      var(--livebar-height) -
      40px
    );

  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}



.dashboard-sidebar {
  padding-bottom: 26px;

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}



.sidebar-profile-card {
  overflow: hidden;
}



.sidebar-profile-cover {
  position: relative;
  height: 108px;

  background-image:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.6)
    ),
    url("../images/hero.png");

  background-position: center 44%;
  background-size: cover;
}



.sidebar-cover-edit {
  position: absolute;
  top: 10px;
  right: 10px;

  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;

  cursor: pointer;
}



.sidebar-profile-content {
  display: grid;
  justify-items: center;

  padding: 0 18px 22px;
  text-align: center;
}



.sidebar-profile-avatar {
  position: relative;

  display: grid;
  place-items: center;

  width: 82px;
  height: 82px;
  margin-top: -42px;

  color: var(--white);
  background:
    linear-gradient(
      135deg,
      #7f5a22,
      #d9a431,
      #792626
    );

  border: 5px solid #151515;
  border-radius: 50%;

  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.36);

  font-size: 1.4rem;
  font-weight: 900;
}



.online-status-dot {
  width: 10px;
  height: 10px;

  background: var(--green);
  border-radius: 50%;
}



.sidebar-profile-avatar .online-status-dot {
  position: absolute;
  right: 2px;
  bottom: 5px;

  width: 15px;
  height: 15px;

  border: 3px solid #151515;
}



.sidebar-profile-name {
  margin-top: 10px;

  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}



.sidebar-profile-meta {
  margin-top: 2px;

  color: var(--muted);
  font-size: 0.72rem;
}



.profile-completion {
  width: 100%;
  margin-top: 20px;
  padding: 14px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;

  text-align: left;
}



.profile-completion-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;

  color: var(--muted);
  font-size: 0.68rem;
}



.profile-completion-header strong {
  color: var(--yellow);
}



.profile-completion-track {
  height: 6px;
  margin-top: 9px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;

  overflow: hidden;
}



.profile-completion-track span {
  display: block;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--yellow),
      var(--red)
    );

  border-radius: inherit;
}



.profile-completion a {
  display: inline-block;
  margin-top: 10px;

  color: var(--yellow);
  font-size: 0.67rem;
  font-weight: 800;
}



.sidebar-navigation {
  display: grid;
  gap: 3px;

  padding: 10px 12px 0;
}



.sidebar-navigation a,
.sidebar-navigation button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;

  min-height: 45px;
  padding: 0 11px;

  color: #c2bcb3;
  background: transparent;
  border-radius: 11px;

  font-size: 0.76rem;
  text-align: left;

  cursor: pointer;

  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}



.sidebar-navigation a:hover,
.sidebar-navigation button:hover,
.sidebar-navigation a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.065);
}



.sidebar-navigation a.active {
  box-shadow:
    inset 3px 0 0 var(--yellow);
}



.sidebar-navigation-icon {
  display: grid;
  place-items: center;

  width: 31px;
  height: 31px;

  background: rgba(255, 255, 255, 0.055);
  border-radius: 9px;

  font-size: 0.88rem;
}



.sidebar-navigation-count,
.sidebar-live-count {
  min-width: 23px;
  height: 23px;
  padding: 0 7px;

  display: grid;
  place-items: center;

  color: var(--white);
  background: var(--red);
  border-radius: 999px;

  font-size: 0.62rem;
  font-weight: 900;
}



.sidebar-live-count {
  color: #171207;
  background: var(--yellow);
}



.sidebar-soon-pill {
  padding: 4px 7px;

  color: #c8c2b8;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;

  font-size: 0.55rem;
  font-weight: 800;
}



.sidebar-separator {
  height: 1px;
  margin: 15px 18px;

  background: rgba(255, 255, 255, 0.075);
}



.sidebar-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 20px;

  color: #938d84;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}



.sidebar-live-pill,
.platform-live-status {
  padding: 4px 7px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.52rem;
  font-weight: 900;
}



.sidebar-secondary-navigation {
  padding-top: 0;
}



.sidebar-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 12px;

  padding: 17px 16px 0;

  color: #625e59;
  font-size: 0.58rem;
}



.dashboard-main {
  min-width: 0;
}



.welcome-panel {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  min-height: 200px;
  padding: 34px;

  background-image:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.92),
      rgba(8, 8, 8, 0.7),
      rgba(8, 8, 8, 0.32)
    ),
    url("../images/hero.png");

  background-position: center 48%;
  background-size: cover;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);

  overflow: hidden;
}



.welcome-panel::after {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(249, 201, 47, 0.08),
      transparent 42%
    );

  content: "";
  pointer-events: none;
}



.welcome-panel-content,
.welcome-panel-actions {
  position: relative;
  z-index: 2;
}



.welcome-panel-content {
  width: min(600px, 100%);
}



.welcome-eyebrow,
.dashboard-card-kicker {
  color: var(--yellow);

  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}



.welcome-panel h1 {
  margin: 8px 0 10px;

  color: var(--white);

  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}



.welcome-panel p {
  max-width: 590px;
  margin: 0;

  color: #d0cbc2;
  font-size: 0.88rem;
  line-height: 1.7;
}



.welcome-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}



.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  min-height: 47px;
  padding: 0 21px;

  border-radius: 999px;

  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}



.primary-button {
  color: #171207;
  background:
    linear-gradient(
      135deg,
      var(--yellow-light),
      var(--yellow)
    );

  box-shadow:
    0 12px 26px rgba(249, 201, 47, 0.2);
}



.secondary-button {
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
}



.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}



.dashboard-statistics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;

  margin-top: 18px;
}



.dashboard-stat-card {
  position: relative;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 13px;

  min-height: 105px;
  padding: 17px;

  background:
    linear-gradient(
      145deg,
      #191919,
      #111111
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
}



.dashboard-stat-icon {
  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  background:
    linear-gradient(
      135deg,
      rgba(249, 201, 47, 0.15),
      rgba(231, 53, 53, 0.12)
    );

  border-radius: 13px;

  font-size: 1rem;
}



.dashboard-stat-card div {
  display: grid;
}



.dashboard-stat-card strong {
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}



.dashboard-stat-card div span {
  color: var(--muted);
  font-size: 0.67rem;
}



.dashboard-stat-card small {
  grid-column: 1 / -1;

  color: var(--yellow);
  font-size: 0.61rem;
  font-weight: 800;
}



.dashboard-card {
  margin-top: 18px;
  padding: 23px;

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  box-shadow: var(--shadow-small);
}



.dashboard-card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 20px;
}



.dashboard-card-header h2 {
  margin: 5px 0 0;

  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}



.dashboard-card-header > a,
.dashboard-card-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--yellow);
  background: transparent;

  font-size: 0.69rem;
  font-weight: 850;

  cursor: pointer;
}



.friend-request-list {
  display: grid;
  gap: 10px;
}



.friend-request {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;

  min-height: 82px;
  padding: 13px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}



.friend-request-avatar,
.activity-entry-avatar,
.friendship-avatar,
.birthday-avatar,
.new-member-preview-avatar {
  display: grid;
  place-items: center;

  color: var(--white);
  border-radius: 50%;

  font-weight: 900;
}



.friend-request-avatar {
  position: relative;

  width: 51px;
  height: 51px;
}



.friend-request-avatar .online-status-dot {
  position: absolute;
  right: 1px;
  bottom: 1px;

  width: 11px;
  height: 11px;

  border: 2px solid #171717;
}



.friend-request-information {
  display: grid;
  gap: 2px;
}



.friend-request-information > a {
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}



.friend-request-information span {
  color: var(--muted);
  font-size: 0.68rem;
}



.friend-request-information small {
  color: #77736d;
  font-size: 0.62rem;
}



.friend-request-actions {
  display: flex;
  gap: 8px;
}



.accept-button,
.decline-button {
  min-height: 36px;
  padding: 0 13px;

  border-radius: 999px;

  font-size: 0.65rem;
  font-weight: 850;

  cursor: pointer;
}



.accept-button {
  color: #171207;
  background: var(--yellow);
}



.decline-button {
  color: #d4cec5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}



.dashboard-member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}



.dashboard-member-card {
  overflow: hidden;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;

  transition:
    transform 180ms ease,
    border-color 180ms ease;
}



.dashboard-member-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 201, 47, 0.28);
}



.dashboard-member-photo {
  position: relative;

  display: grid;
  place-items: center;

  aspect-ratio: 1 / 1.05;
}



.member-background-one {
  background:
    radial-gradient(circle at 40% 25%, #415e61, transparent 34%),
    linear-gradient(145deg, #23383a, #111111);
}



.member-background-two {
  background:
    radial-gradient(circle at 40% 25%, #714847, transparent 34%),
    linear-gradient(145deg, #3d2524, #111111);
}



.member-background-three {
  background:
    radial-gradient(circle at 40% 25%, #48677c, transparent 34%),
    linear-gradient(145deg, #263d4c, #111111);
}



.member-background-four {
  background:
    radial-gradient(circle at 40% 25%, #645638, transparent 34%),
    linear-gradient(145deg, #352e20, #111111);
}



.dashboard-member-initials {
  display: grid;
  place-items: center;

  width: 70px;
  height: 70px;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      rgba(249, 201, 47, 0.32),
      rgba(231, 53, 53, 0.32)
    );

  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;

  font-size: 1.2rem;
  font-weight: 900;
}



.dashboard-member-online,
.dashboard-member-new {
  position: absolute;

  padding: 5px 7px;
  border-radius: 999px;

  font-size: 0.52rem;
  font-weight: 900;
  text-transform: uppercase;
}



.dashboard-member-online {
  top: 9px;
  left: 9px;

  color: #10200e;
  background: var(--green);
}



.dashboard-member-new {
  top: 9px;
  right: 9px;

  color: #171207;
  background: var(--yellow);
}



.dashboard-member-information {
  display: grid;
  gap: 2px;

  padding: 12px 13px 8px;
}



.dashboard-member-information a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}



.dashboard-member-information span,
.dashboard-member-information small {
  color: var(--muted);
  font-size: 0.65rem;
}



.dashboard-member-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;

  padding: 0 12px 12px;
}



.dashboard-member-actions a,
.dashboard-member-actions button {
  display: grid;
  place-items: center;

  min-height: 34px;

  border-radius: 999px;

  font-size: 0.61rem;
  font-weight: 850;
}



.dashboard-member-actions a {
  color: #171207;
  background: var(--yellow);
}



.dashboard-member-actions button {
  color: #d5d0c8;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  cursor: pointer;
}



.activity-feed {
  display: grid;
  gap: 11px;
}



.activity-entry {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;

  padding: 16px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 15px;
}



.activity-entry-avatar {
  width: 46px;
  height: 46px;
}



.activity-entry-content {
  min-width: 0;
}



.activity-entry-content > p {
  margin: 0;

  color: #cbc5bc;
  font-size: 0.77rem;
  line-height: 1.6;
}



.activity-entry-content > p a {
  color: var(--white);
  font-weight: 900;
}



.activity-entry-content > span {
  display: block;
  margin-top: 3px;

  color: #706c66;
  font-size: 0.61rem;
}



.activity-photo-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;

  max-width: 520px;
  margin-top: 14px;
}



.activity-photo {
  display: grid;
  place-items: center;

  aspect-ratio: 1.2 / 1;

  color: #d3cdc3;

  background:
    radial-gradient(
      circle at top,
      rgba(249, 201, 47, 0.16),
      transparent 35%
    ),
    linear-gradient(145deg, #2d251b, #151515);

  border: 1px solid var(--border);
  border-radius: 12px;

  font-size: 0.65rem;

  cursor: pointer;
}



.activity-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 12px;
}



.activity-entry-actions button,
.activity-entry-actions a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  min-height: 32px;
  padding: 0 10px;

  color: #aaa49a;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;

  font-size: 0.61rem;
  font-weight: 750;

  cursor: pointer;
}



.friendship-preview {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-top: 13px;
}



.friendship-avatar {
  width: 39px;
  height: 39px;

  font-size: 0.72rem;
}



.friendship-preview > span {
  color: var(--red);
}



.new-member-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;

  max-width: 560px;
  margin-top: 13px;
  padding: 13px;

  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 13px;
}



.new-member-preview-avatar {
  width: 48px;
  height: 48px;
}



.new-member-preview > div {
  display: grid;
  gap: 2px;
}



.new-member-preview strong {
  color: var(--white);
  font-size: 0.75rem;
}



.new-member-preview span,
.new-member-preview small {
  color: var(--muted);
  font-size: 0.62rem;
}



.new-member-preview > a {
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 850;
  white-space: nowrap;
}



.activity-entry blockquote {
  margin: 13px 0 0;
  padding: 12px 14px;

  color: #bfb9b0;
  background: rgba(255, 255, 255, 0.035);
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;

  font-size: 0.7rem;
  line-height: 1.65;
}



.load-more-button {
  display: block;

  min-height: 40px;
  margin: 18px auto 0;
  padding: 0 18px;

  color: var(--yellow);
  background: rgba(249, 201, 47, 0.07);
  border: 1px solid rgba(249, 201, 47, 0.18);
  border-radius: 999px;

  font-size: 0.67rem;
  font-weight: 850;

  cursor: pointer;
}



.dashboard-rightbar {
  display: grid;
  gap: 14px;
}



.rightbar-card {
  padding: 17px;

  background:
    linear-gradient(
      145deg,
      #171717,
      #101010
    );

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  box-shadow: var(--shadow-small);
}



.rightbar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  margin-bottom: 13px;
}



.rightbar-card-header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}



.rightbar-card-header h2 {
  margin: 0;

  color: var(--white);
  font-size: 0.83rem;
}



.rightbar-card-header > a {
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 850;
}



.online-friends-list,
.platform-live-list,
.birthday-list {
  display: grid;
  gap: 5px;
}



.online-friend {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;

  min-height: 57px;
  padding: 7px;

  border-radius: 11px;
}



.online-friend:hover,
.platform-live-item:hover {
  background: rgba(255, 255, 255, 0.045);
}



.online-friend-avatar {
  position: relative;

  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  color: var(--white);
  border-radius: 50%;

  font-size: 0.74rem;
  font-weight: 900;
}



.online-friend-avatar i {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 10px;
  height: 10px;

  background: var(--green);
  border: 2px solid #161616;
  border-radius: 50%;
}



.online-friend-information {
  display: grid;
  gap: 2px;
}



.online-friend-information strong {
  color: var(--white);
  font-size: 0.72rem;
}



.online-friend-information small {
  color: var(--muted);
  font-size: 0.6rem;
}



.online-friend-action {
  color: var(--yellow);
  font-size: 0.8rem;
}



.online-friend-live {
  padding: 4px 6px;

  color: var(--white);
  background: var(--red);
  border-radius: 999px;

  font-size: 0.5rem;
  font-weight: 900;
}



.platform-live-icon {
  color: var(--yellow);
}



.platform-live-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;

  width: 100%;
  min-height: 61px;
  padding: 8px;

  color: #d3cdc4;
  background: transparent;
  border-radius: 11px;

  text-align: left;
  cursor: pointer;
}



.platform-live-item-icon {
  display: grid;
  place-items: center;

  width: 39px;
  height: 39px;

  background:
    linear-gradient(
      135deg,
      rgba(249, 201, 47, 0.13),
      rgba(231, 53, 53, 0.1)
    );

  border-radius: 11px;
}



.platform-live-item-information {
  display: grid;
  gap: 2px;
}



.platform-live-item-information strong {
  color: var(--white);
  font-size: 0.7rem;
}



.platform-live-item-information small {
  color: var(--muted);
  font-size: 0.58rem;
}



.birthday-person {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;

  padding: 7px;
  border-radius: 10px;
}



.birthday-person:hover {
  background: rgba(255, 255, 255, 0.04);
}



.birthday-avatar {
  width: 40px;
  height: 40px;

  font-size: 0.7rem;
}



.birthday-person > span:last-child {
  display: grid;
}



.birthday-person strong {
  color: var(--white);
  font-size: 0.7rem;
}



.birthday-person small {
  color: var(--muted);
  font-size: 0.59rem;
}



.community-news-label {
  display: inline-flex;
  padding: 4px 7px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.5rem;
  font-weight: 900;
}



.community-news-item h3 {
  margin: 10px 0 7px;

  color: var(--white);
  font-size: 0.84rem;
}



.community-news-item p {
  margin: 0;

  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.6;
}



.community-news-item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 10px;

  color: var(--yellow);
  font-size: 0.61rem;
  font-weight: 850;
}



.moderation-header,
.moderation-person {
  display: flex;
  align-items: center;
  gap: 11px;
}



.moderation-shield {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  background: rgba(249, 201, 47, 0.09);
  border-radius: 12px;
}



.moderation-header div,
.moderation-person div {
  display: grid;
  gap: 2px;
}



.moderation-header strong,
.moderation-person strong {
  color: var(--white);
  font-size: 0.72rem;
}



.moderation-header span,
.moderation-person span {
  color: var(--muted);
  font-size: 0.6rem;
}



.moderation-person {
  margin-top: 14px;
  padding: 11px;

  background: rgba(255, 255, 255, 0.035);
  border-radius: 12px;
}



.moderation-avatar {
  position: relative;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  color: var(--white);
  background: #7f342e;
  border-radius: 50%;

  font-size: 0.75rem;
  font-weight: 900;
}



.moderation-avatar i {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 10px;
  height: 10px;

  background: var(--green);
  border: 2px solid #171717;
  border-radius: 50%;
}



.moderation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;

  margin-top: 11px;
}



.moderation-actions button,
.moderation-actions a {
  display: grid;
  place-items: center;

  min-height: 35px;

  border-radius: 999px;

  font-size: 0.59rem;
  font-weight: 850;
}



.moderation-actions button {
  color: #171207;
  background: var(--yellow);
  cursor: pointer;
}



.moderation-actions a {
  color: #d3cdc4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}



.rightbar-footer {
  padding: 8px 4px 24px;

  color: #5f5b56;
  font-size: 0.55rem;
}



.rightbar-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 11px;

  margin-bottom: 6px;
}



.rightbar-footer a:hover {
  color: var(--yellow);
}



.avatar-teal {
  background: #356d6b;
}



.avatar-purple {
  background: #604c7e;
}



.avatar-red {
  background: #843a33;
}



.avatar-blue {
  background: #35627e;
}



.avatar-gold {
  background: #896b2e;
}



.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;

  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(4px);
}



.global-chat-panel {
  position: fixed;
  top: calc(var(--header-height) + 12px);
  right: 18px;
  bottom: 18px;
  z-index: 200;

  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;

  width: min(430px, calc(100vw - 36px));

  background:
    linear-gradient(
      145deg,
      #181818,
      #0e0e0e
    );

  border: 1px solid var(--border-strong);
  border-radius: 22px;

  box-shadow: var(--shadow-large);

  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 30px));

  transition:
    opacity 220ms ease,
    transform 220ms ease;
}



.global-chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}



.global-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 72px;
  padding: 13px 16px;

  border-bottom: 1px solid var(--border);
}



.global-chat-header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}



.global-chat-live-dot {
  width: 11px;
  height: 11px;

  background: var(--green);
  border-radius: 50%;

  box-shadow:
    0 0 0 6px rgba(111, 209, 94, 0.12);
}



.global-chat-header h2 {
  margin: 0;

  color: var(--white);
  font-size: 0.9rem;
}



.global-chat-header span {
  color: var(--muted);
  font-size: 0.61rem;
}



.global-chat-header button {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 11px;

  font-size: 1.3rem;

  cursor: pointer;
}



.global-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 13px;

  padding: 17px;

  overflow-y: auto;
}



.global-chat-message {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
}



.global-chat-avatar {
  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  color: var(--white);
  border-radius: 50%;

  font-size: 0.68rem;
  font-weight: 900;
}



.global-chat-message > div {
  min-width: 0;
}



.global-chat-message p {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0 0 4px;
}



.global-chat-message strong {
  color: var(--white);
  font-size: 0.68rem;
}



.global-chat-message p span {
  color: #706c66;
  font-size: 0.55rem;
}



.global-chat-message > div > div {
  width: fit-content;
  max-width: 100%;
  padding: 9px 11px;

  color: #d3cec5;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 4px 12px 12px 12px;

  font-size: 0.68rem;
  line-height: 1.5;
}



.global-chat-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: end;
  gap: 9px;

  padding: 13px;

  border-top: 1px solid var(--border);
}



.global-chat-tools {
  display: flex;
  gap: 4px;
}



.global-chat-tools button {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;

  cursor: pointer;
}



.global-chat-form textarea {
  min-height: 42px;
  max-height: 120px;
  padding: 11px 13px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: none;

  font-size: 0.7rem;
}



.global-chat-form textarea:focus {
  border-color: rgba(249, 201, 47, 0.55);

  box-shadow:
    0 0 0 3px rgba(249, 201, 47, 0.08);
}



.global-chat-send {
  min-height: 41px;
  padding: 0 14px;

  color: #171207;
  background: var(--yellow);
  border-radius: 999px;

  font-size: 0.64rem;
  font-weight: 900;

  cursor: pointer;
}



.mobile-bottom-navigation {
  display: none;
}



@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}



@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(0.83);
  }
}



@media (max-width: 1500px) {

  :root {
    --sidebar-width: 265px;
    --rightbar-width: 325px;
  }

  .dashboard-header {
    grid-template-columns: auto minmax(240px, 520px) auto;
    gap: 16px;
  }

  .dashboard-logo img {
    width: 220px;
  }

  .header-action-label {
    display: none;
  }

  .header-action-button {
    min-width: 46px;
  }

}



@media (max-width: 1280px) {

  :root {
    --rightbar-width: 300px;
  }

  .dashboard-layout {
    grid-template-columns:
      var(--sidebar-width)
      minmax(0, 1fr);
  }

  .dashboard-rightbar {
    position: static;

    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-height: none;
    overflow: visible;
  }

  .rightbar-footer {
    grid-column: 1 / -1;
  }

  .dashboard-member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}



@media (max-width: 1050px) {

  .dashboard-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .dashboard-logo img {
    width: 190px;
  }

  .header-profile-information,
  .header-profile-arrow {
    display: none;
  }

  .header-profile-button {
    min-width: auto;
    padding-right: 6px;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 160;

    width: min(310px, 88vw);
    max-height: none;

    border-radius: 0 22px 22px 0;

    transform: translateX(-105%);

    transition: transform 220ms ease;
  }

  .dashboard-sidebar.is-open {
    transform: translateX(0);
  }

  .mobile-menu-button {
    display: block;
  }

  .dashboard-main {
    grid-column: 1;
  }

  .dashboard-rightbar {
    grid-column: 1;
  }

  .dashboard-statistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}



@media (max-width: 800px) {

  :root {
    --header-height: 70px;
    --page-padding: 14px;
  }

  body {
    padding-bottom: 72px;
  }

  .dashboard-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
  }

  .dashboard-logo img {
    width: 165px;
    max-height: 47px;
  }

  .header-search {
    display: none;
  }

  .header-action-button {
    display: none;
  }

  .header-profile {
    margin-left: 0;
  }

  .dashboard-livebar {
    top: var(--header-height);
  }

  .dashboard-layout {
    padding: 12px;
  }

  .welcome-panel {
    align-items: flex-start;
    min-height: 300px;
    padding: 24px;

    background-position: center;
  }

  .welcome-panel {
    flex-direction: column;
  }

  .welcome-panel-actions {
    justify-content: flex-start;
  }

  .dashboard-statistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-card {
    padding: 18px;
  }

  .friend-request {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .friend-request-actions {
    grid-column: 1 / -1;
    padding-left: 65px;
  }

  .dashboard-member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-rightbar {
    grid-template-columns: 1fr;
  }

  .rightbar-footer {
    grid-column: auto;
  }

  .global-chat-panel {
    top: 8px;
    right: 8px;
    bottom: 78px;

    width: calc(100vw - 16px);
  }

  .mobile-bottom-navigation {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 180;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    min-height: 68px;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom));

    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid var(--border);

    backdrop-filter: blur(18px);
  }

  .mobile-bottom-navigation a,
  .mobile-bottom-navigation button {
    position: relative;

    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;

    color: #8f8981;
    background: transparent;
    border-radius: 11px;

    font-size: 1rem;
    cursor: pointer;
  }

  .mobile-bottom-navigation a.active {
    color: var(--yellow);
    background: rgba(249, 201, 47, 0.07);
  }

  .mobile-bottom-navigation small {
    font-size: 0.54rem;
    font-weight: 800;
  }

  .mobile-bottom-navigation i {
    position: absolute;
    top: 1px;
    right: 22%;

    display: grid;
    place-items: center;

    min-width: 17px;
    height: 17px;
    padding: 0 4px;

    color: var(--white);
    background: var(--red);
    border-radius: 999px;

    font-size: 0.52rem;
    font-style: normal;
    font-weight: 900;
  }

}



@media (max-width: 560px) {

  .dashboard-logo img {
    width: 145px;
  }

  .header-profile-avatar {
    width: 38px;
    height: 38px;
  }

  .dashboard-livebar {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .dashboard-livebar-label {
    justify-content: center;
    padding: 0;
  }

  .dashboard-livebar-label .live-indicator {
    display: none;
  }

  .welcome-panel {
    min-height: 340px;
    padding: 21px;
  }

  .welcome-panel h1 {
    font-size: 2.35rem;
  }

  .welcome-panel-actions {
    display: grid;
    width: 100%;
  }

  .welcome-panel-actions a {
    width: 100%;
  }

  .dashboard-statistics {
    grid-template-columns: 1fr;
  }

  .dashboard-card-header {
    align-items: flex-start;
  }

  .dashboard-card-header > a,
  .dashboard-card-filter {
    flex: 0 0 auto;
  }

  .friend-request-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }

  .dashboard-member-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-member-photo {
    aspect-ratio: 1.35 / 1;
  }

  .activity-photo-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-photo-preview .activity-photo:last-child {
    display: none;
  }

  .new-member-preview {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .new-member-preview > a {
    grid-column: 1 / -1;
  }

  .global-chat-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .global-chat-tools {
    display: none;
  }

}



@media (max-width: 380px) {

  .dashboard-logo img {
    width: 125px;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
  }

  .dashboard-layout {
    padding-right: 8px;
    padding-left: 8px;
  }

  .dashboard-card {
    padding: 15px;
  }

  .friend-request {
    padding: 11px;
  }

  .dashboard-card-header h2 {
    font-size: 1.15rem;
  }

}

/* ==========================================================
   GB_GLOBAL_CHAT_TIME_BOLD_V1
   Tijdstip van chatberichten duidelijker
   ========================================================== */

.chat-message-time,
.chat-message-timestamp,
.message-time,
.message-timestamp,
time.chat-message-time {
    color: #ffffff !important;
    font-weight: 800 !important;
    opacity: 1 !important;
}

