.ag-notification-btn {
  position: relative;
}

.ag-tournament-notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  place-items: center;
  border: 2px solid #171b22;
  border-radius: 999px;
  background: #d94c43;
  color: #fff;
  font: 800 10px/1 Montserrat, sans-serif;
  box-shadow: 0 0 0 1px rgba(255, 220, 170, 0.25), 0 0 13px rgba(225, 67, 53, 0.72);
  pointer-events: none;
  transform-origin: center;
  animation: ag-membership-badge-pulse 1.85s ease-in-out infinite;
}

.ag-tournament-notification-badge[hidden] {
  display: none !important;
}

.ag-notification-btn.is-tournament-alert {
  border-color: rgba(255, 205, 112, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 0 0 1px rgba(255, 176, 58, 0.32),
    0 0 18px rgba(255, 143, 35, 0.46);
}

.ag-notification-btn.is-popover-open {
  border-color: rgba(255, 217, 139, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 0 0 1px rgba(255, 176, 58, 0.34),
    0 0 20px rgba(255, 157, 47, 0.42);
}

.ag-notification-popover[hidden] {
  display: none !important;
}

.lobby-command-bar.has-open-notification-panel {
  overflow: visible;
}

.ag-notification-popover {
  position: absolute;
  top: calc(100% + min(1vw, 1.2dvh));
  right: auto;
  left: 0;
  z-index: 120;
  display: grid;
  width: min(26vw, 42dvh);
  min-width: min(90vw, 18rem);
  max-height: min(56dvh, 30rem);
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 218, 143, 0.62);
  border-radius: min(1.4vw, 1.8dvh);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 191, 92, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(18, 22, 29, 0.99), rgba(43, 29, 23, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 min(1.2vw, 1.5dvh) min(3vw, 4dvh) rgba(0, 0, 0, 0.52),
    0 0 min(1.5vw, 2dvh) rgba(218, 126, 37, 0.20);
  color: #fff1d7;
}

.ag-notification-popover-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: min(1vw, 1.2dvh);
  padding: min(1.1vw, 1.4dvh) min(1.2vw, 1.6dvh);
  border-bottom: 1px solid rgba(255, 217, 145, 0.18);
  background: rgba(7, 11, 17, 0.34);
}

.ag-notification-popover-head > div {
  display: grid;
  min-width: 0;
  gap: min(0.25vw, 0.3dvh);
}

.ag-notification-popover-head strong {
  font-size: min(1.05vw, 1.55dvh);
  font-weight: 950;
  letter-spacing: 0.055em;
}

.ag-notification-popover-head span {
  color: rgba(224, 216, 204, 0.62);
  font-size: min(0.75vw, 1.1dvh);
  font-weight: 750;
}

.ag-notification-close {
  display: grid;
  width: min(2.2vw, 3.2dvh);
  height: min(2.2vw, 3.2dvh);
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 210, 132, 0.38);
  border-radius: 50%;
  background: rgba(255, 183, 77, 0.08);
  color: #ffdca2;
  cursor: pointer;
  font-size: min(1.2vw, 1.8dvh);
  line-height: 1;
}

.ag-notification-list {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: min(0.65vw, 0.85dvh);
  padding: min(0.85vw, 1.1dvh);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-color: rgba(235, 151, 54, 0.72) rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
}

.ag-notification-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: min(0.75vw, 1dvh);
  padding: min(0.9vw, 1.2dvh);
  overflow: hidden;
  border: 1px solid rgba(255, 218, 145, 0.16);
  border-radius: min(0.85vw, 1.15dvh);
  background: linear-gradient(120deg, rgba(255, 190, 91, 0.08), rgba(255, 255, 255, 0.025));
}

.ag-notification-dismiss {
  display: grid;
  width: min(1.65vw, 2.35dvh);
  height: min(1.65vw, 2.35dvh);
  margin-top: min(0.05vw, 0.1dvh);
  place-items: center;
  border: 1px solid rgba(255, 202, 125, 0.30);
  border-radius: 50%;
  background: rgba(116, 45, 24, 0.34);
  color: rgba(255, 224, 177, 0.82);
  cursor: pointer;
  font-size: min(0.95vw, 1.4dvh);
  font-weight: 850;
  line-height: 1;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease, transform 150ms ease;
}

.ag-notification-dismiss:hover {
  border-color: rgba(255, 172, 92, 0.72);
  background: rgba(171, 58, 32, 0.58);
  color: #fff1d7;
  transform: scale(1.06);
}

.ag-notification-item.is-unread {
  border-color: rgba(255, 188, 79, 0.48);
  background: linear-gradient(120deg, rgba(177, 87, 21, 0.34), rgba(255, 190, 91, 0.08));
  box-shadow: inset min(0.2vw, 0.25dvh) 0 0 #f0a13f;
}

.ag-notification-marker {
  width: min(0.65vw, 0.9dvh);
  height: min(0.65vw, 0.9dvh);
  margin-top: min(0.35vw, 0.5dvh);
  border-radius: 50%;
  background: #e7a84d;
  box-shadow: 0 0 min(0.7vw, 1dvh) rgba(236, 157, 58, 0.58);
}

.ag-notification-item:not(.is-unread) .ag-notification-marker {
  background: rgba(213, 204, 190, 0.42);
  box-shadow: none;
}

.ag-notification-copy {
  display: grid;
  min-width: 0;
  gap: min(0.28vw, 0.4dvh);
}

.ag-notification-kicker {
  width: max-content;
  max-width: 100%;
  padding: min(0.14vw, 0.2dvh) min(0.38vw, 0.52dvh);
  border: 1px solid rgba(239, 168, 72, 0.34);
  border-radius: 999px;
  background: rgba(185, 94, 26, 0.24);
  color: #efb86d;
  font-size: min(0.58vw, 0.84dvh);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.ag-notification-copy strong {
  color: #fff1d5;
  overflow-wrap: anywhere;
  font-size: min(0.98vw, 1.46dvh);
  font-weight: 950;
  line-height: 1.18;
}

.ag-notification-meta {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: min(0.35vw, 0.5dvh) min(0.65vw, 0.9dvh);
}

.ag-notification-instruction {
  margin: 0;
  overflow-wrap: anywhere;
  color: rgba(236, 229, 218, 0.78);
  font-size: min(0.72vw, 1.06dvh);
  font-weight: 720;
  line-height: 1.28;
}

.ag-notification-copy time {
  position: relative;
  color: rgba(235, 169, 85, 0.72);
  font-size: min(0.66vw, 0.98dvh);
  font-weight: 750;
}

.ag-notification-copy time::before {
  content: "•";
  margin-right: min(0.35vw, 0.5dvh);
  color: rgba(239, 168, 72, 0.48);
}

.ag-notification-meta time:first-child::before {
  display: none;
}

.ag-notification-empty {
  margin: 0;
  padding: min(2vw, 3dvh) min(1vw, 1.4dvh);
  color: rgba(225, 218, 207, 0.62);
  font-size: min(0.82vw, 1.2dvh);
  font-weight: 750;
  text-align: center;
}

@media (max-width: 60rem) {
  .ag-notification-popover {
    position: absolute;
    top: calc(100% + min(0.8vw, 1dvh));
    right: auto;
    left: 0;
    width: min(92vw, 42dvh);
    min-width: 0;
    border-radius: min(2.4vw, 1.8dvh);
  }

  .ag-notification-popover-head strong {
    font-size: min(2.8vw, 1.55dvh);
  }

  .ag-notification-popover-head span,
  .ag-notification-instruction {
    font-size: min(2.2vw, 1.12dvh);
  }

  .ag-notification-copy strong {
    font-size: min(2.5vw, 1.35dvh);
  }

  .ag-notification-kicker {
    font-size: min(1.8vw, 0.84dvh);
  }

  .ag-notification-dismiss {
    width: min(5vw, 2.35dvh);
    height: min(5vw, 2.35dvh);
    font-size: min(3vw, 1.4dvh);
  }
}

@keyframes ag-membership-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.ag-player-tournaments-panel[hidden] {
  display: none !important;
}

.ag-player-tournaments-panel {
  position: relative;
  display: grid;
  width: min(820px, 100%);
  min-height: 122px;
  gap: 9px;
  padding: 12px 13px 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 220, 150, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 214, 129, 0.18), transparent 31%),
    linear-gradient(145deg, rgba(19, 24, 31, 0.97), rgba(43, 32, 27, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(89, 52, 22, 0.42);
  color: #fff4db;
}

.ag-player-tournaments-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd98a 24%, #ef9b33 68%, transparent);
  opacity: 0.8;
}

.ag-player-tournaments-head {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ag-player-tournaments-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.ag-player-tournaments-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 219, 142, 0.55);
  border-radius: 9px;
  background: linear-gradient(145deg, #edaa48, #9b531c);
  color: #211307;
  font-size: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ag-player-tournaments-title {
  margin: 0;
  overflow: hidden;
  color: #fff3d3;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ag-player-tournaments-subtitle {
  margin: 3px 0 0;
  color: rgba(255, 231, 191, 0.62);
  font-size: 9px;
  font-weight: 700;
}

.ag-player-tournaments-count {
  display: inline-flex;
  min-width: 31px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 216, 139, 0.4);
  border-radius: 999px;
  background: rgba(238, 151, 48, 0.14);
  color: #ffd98c;
  font-size: 11px;
  font-weight: 900;
}

.ag-player-tournaments-list {
  display: grid;
  grid-auto-columns: minmax(360px, 1fr);
  grid-auto-flow: column;
  gap: 9px;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 2px;
  scrollbar-color: rgba(222, 142, 51, 0.65) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.ag-player-tournament-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(126px, auto);
  gap: 4px 9px;
  align-items: center;
  padding: 9px 11px;
  border: 1px solid rgba(255, 217, 143, 0.26);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(204, 111, 31, 0.09));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ag-player-tournament-event {
  grid-column: 1;
  overflow: hidden;
  color: #eaa753;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.ag-player-tournament-name {
  margin: 0;
  overflow: hidden;
  color: #fff7e8;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ag-player-tournament-status {
  padding: 4px 7px;
  border: 1px solid rgba(105, 219, 156, 0.32);
  border-radius: 999px;
  background: rgba(46, 168, 105, 0.13);
  color: #70dea1;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ag-player-tournament-meta {
  grid-column: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: rgba(255, 236, 207, 0.62);
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.ag-player-tournament-code {
  color: #ffd48a;
  font-weight: 900;
}

.ag-participation-decision {
  display: grid;
  min-width: 126px;
  gap: 6px;
  align-self: stretch;
  align-content: center;
  padding: 7px;
  border: 1px solid rgba(232, 172, 83, 0.24);
  border-radius: 10px;
  background: rgba(9, 12, 17, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ag-player-tournament-card > .ag-participation-decision {
  grid-column: 2;
  grid-row: 1 / 4;
}

.ag-participation-decision-state {
  color: #e9b66c;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.ag-participation-decision.is-accepted .ag-participation-decision-state {
  color: #78dfa5;
}

.ag-participation-decision.is-declined .ag-participation-decision-state,
.ag-participation-decision.is-error .ag-participation-decision-state {
  color: #ff9183;
}

.ag-participation-decision-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.ag-participation-button {
  min-width: 0;
  min-height: 24px;
  padding: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  cursor: pointer;
  font: 900 8px/1 Montserrat, sans-serif;
  transition: transform 140ms ease, filter 140ms ease, opacity 140ms ease;
}

.ag-participation-button:hover:not(:disabled) {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.ag-participation-button.is-accepted {
  border-color: rgba(85, 211, 139, 0.34);
  background: rgba(39, 151, 91, 0.22);
  color: #9aefbc;
}

.ag-participation-button.is-declined {
  border-color: rgba(229, 102, 82, 0.34);
  background: rgba(154, 55, 43, 0.20);
  color: #ffaea2;
}

.ag-participation-button:disabled {
  cursor: default;
  opacity: 0.48;
}

.ag-participation-button[aria-pressed="true"] {
  opacity: 1;
  box-shadow: inset 0 0 0 1px currentColor;
}

.ag-tournament-player-entry {
  display: grid;
  min-height: 27px;
  place-items: center;
  padding: 0 7px;
  border: 1px solid rgba(255, 217, 143, 0.56);
  border-radius: 7px;
  background: linear-gradient(180deg, #f3c576, #b9652f);
  color: #291506;
  font: 950 7.5px/1 Montserrat, sans-serif;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: background-color 140ms ease, box-shadow 140ms ease, color 140ms ease;
}

.ag-tournament-player-entry:hover {
  background: linear-gradient(180deg, #f8d28c, #c87438);
  color: #211005;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 4px 9px rgba(0, 0, 0, 0.18);
}

.ag-lobby-memberships-panel .turnuva-takvimi-kart {
  grid-template-columns: minmax(0, 1fr) 82px;
  column-gap: min(1.1cqi, 0.55dvh);
  align-items: center;
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  padding: 4px 7px;
  box-sizing: border-box;
}

.ag-lobby-memberships-panel .turnuva-takvimi-icerik {
  grid-column: 1;
  min-width: 0;
  gap: 3px;
  transform: translateY(7px);
}

.ag-lobby-memberships-panel .turnuva-takvimi-ad {
  font-size: 14px;
}

.ag-lobby-memberships-panel .turnuva-takvimi-meta {
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.ag-lobby-memberships-panel .turnuva-takvimi-rozet {
  flex: 0 0 auto;
}

.ag-lobby-memberships-panel .turnuva-takvimi-detay {
  flex: 1 1 auto;
  max-width: 100%;
}

.ag-lobby-memberships-panel .ag-participation-decision {
  grid-column: 2;
  width: 82px;
  min-width: 82px;
  justify-self: end;
  margin-right: -6px;
  height: 48px;
  gap: 2px;
  padding: 2px;
  box-sizing: border-box;
  border-color: rgba(255, 221, 145, 0.78);
  background: linear-gradient(180deg, rgba(255, 241, 205, 0.96) 0%, rgba(255, 181, 72, 0.94) 53%, rgba(188, 82, 23, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -8px 16px rgba(105, 38, 6, 0.18),
    0 8px 16px rgba(0, 0, 0, 0.24);
}

.ag-lobby-memberships-panel .ag-participation-decision-actions {
  gap: 2px;
}

.ag-lobby-memberships-panel .ag-participation-decision-state {
  color: #2a1205;
  font-size: 7.2px;
  text-shadow: 0 1px 0 rgba(255, 239, 196, 0.52);
}

.ag-lobby-memberships-panel .ag-participation-button {
  min-height: 16px;
  height: 16px;
  padding-inline: 2px;
  font-size: 7.2px;
}

.ag-lobby-memberships-panel .ag-participation-decision.is-entry-only {
  min-height: 48px;
  height: 48px;
  padding: 0;
  align-content: stretch;
}

.ag-lobby-memberships-panel .ag-participation-decision.is-entry-only .ag-tournament-player-entry {
  display: flex;
  width: 100%;
  min-height: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #2a1205;
  font-size: 9.4px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 239, 196, 0.58);
  box-shadow: none;
}

.ag-lobby-memberships-panel .ag-participation-decision.is-entry-only .ag-tournament-player-entry:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 220, 0.26);
}

.ag-lobby-memberships-panel .ag-participation-decision.is-entry-only .ag-tournament-player-entry::after {
  content: "GİRİŞ  ↗";
  font-size: 8.2px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}

.ag-lobby-memberships-panel .ag-participation-button.is-accepted {
  border-color: rgba(190, 255, 206, 0.88);
  background: linear-gradient(180deg, #8ddd9f 0%, #55b876 52%, #2c8b55 100%);
  color: #102c1a;
  text-shadow: 0 1px 0 rgba(229, 255, 235, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -5px 9px rgba(17, 83, 45, 0.18),
    0 3px 7px rgba(20, 75, 41, 0.2);
}

.ag-lobby-memberships-panel .ag-participation-button.is-declined {
  border-color: rgba(255, 174, 143, 0.9);
  background: linear-gradient(180deg, #ed8058 0%, #cf562e 52%, #a9361d 100%);
  color: #fff4e9;
  text-shadow: 0 1px 2px rgba(83, 20, 7, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 226, 210, 0.52),
    inset 0 -5px 9px rgba(105, 28, 10, 0.2),
    0 3px 7px rgba(98, 29, 12, 0.2);
}

.ag-lobby-memberships-panel .ag-participation-button:disabled {
  opacity: 0.82;
}

.ag-lobby-memberships-panel .ag-tournament-player-entry {
  min-height: 21px;
  padding-inline: 2px;
  border-color: rgba(255, 244, 208, 0.82);
  font-size: 6.5px;
}

body.ag-has-tournament-memberships .tournament-page {
  align-content: start;
  overflow-x: hidden;
  overflow-y: auto;
}

body.ag-knockout-draft-active .ag-player-tournaments-panel {
  display: none;
}

body.ag-has-tournament-memberships.ag-knockout-draft-active .tournament-page {
  align-content: center;
  overflow: hidden;
}

.ana-akis-shell {
  --ag-lobby-memberships-height: 21dvh;
}

body[data-tournament-membership-rows="2"] .ana-akis-shell {
  --ag-lobby-memberships-height: 30dvh;
}

body[data-tournament-membership-rows="3"] .ana-akis-shell {
  --ag-lobby-memberships-height: 39dvh;
}

.ag-lobby-memberships-panel {
  grid-column: 3;
  grid-row: 2 / 4;
  z-index: 9;
  align-self: start;
  width: 100% !important;
  height: var(--ag-lobby-memberships-height);
  min-width: 0;
  min-height: 0 !important;
  margin: 0;
  justify-self: stretch;
  container-type: inline-size;
}

.ag-lobby-memberships-panel .universal-panel-content {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.ag-lobby-memberships-body {
  display: grid;
  height: 100%;
  min-height: 0;
  padding-top: min(1.4cqi, 0.7dvh);
  overflow: hidden;
}

.ag-lobby-memberships-panel .ag-lobby-memberships-list.turnuva-takvimi-liste {
  width: calc(100% + min(0.7cqi, 0.4dvh));
  overflow-x: clip;
  overflow-y: auto;
}

body.ag-has-tournament-memberships #ana-akis-panel {
  height: calc(100% - var(--ag-lobby-memberships-height) - var(--lobby-grid-gap)) !important;
  margin-top: calc(var(--ag-lobby-memberships-height) + var(--lobby-grid-gap)) !important;
}

@media (max-width: 640px) {
  .ag-player-tournaments-panel {
    width: min(360px, 100%);
    min-height: 116px;
    padding: 10px;
    border-radius: 15px;
  }

  .ag-player-tournaments-list {
    grid-auto-columns: minmax(330px, 94%);
  }

  .ag-player-tournaments-title {
    font-size: 12px;
  }
}

@media (max-width: 60rem) {
  .ana-akis-shell {
    grid-template-rows: repeat(8, auto);
  }

  .ag-lobby-memberships-panel {
    grid-column: 1;
    grid-row: 7;
    width: 100% !important;
    height: var(--ag-lobby-memberships-height);
    min-height: 0 !important;
    margin: 0;
  }

  .ag-lobby-memberships-list.turnuva-takvimi-liste {
    max-height: none;
  }

  body.ag-has-tournament-memberships #ana-akis-panel {
    grid-row: 8;
    height: 70dvh !important;
    margin-top: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ag-tournament-notification-badge {
    animation: none;
  }
}
