:root {
  --bg: #f2f4f8;
  --bg-soft: #ffffff;
  --card: #ffffff;
  --card-hover: #eef1f7;
  --border: #d9deea;
  --text: #16181d;
  --muted: #6f7485;
  --accent: #2688eb;
  --accent-hover: #1f7be0;
  --green: #2e9c46;
  --green-bg: rgb(206 226 255 / 47%);
  --red: #d63b3b;
  --red-bg: rgba(230, 70, 70, .1);
  --orange: #ff8c1f;
  --orange-bg: rgba(255, 140, 31, .12);
  --blue-bg: rgba(38, 136, 235, .1);
  --radius: 5px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 15px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.container {
  flex: 1;
  width: 100%;
  padding-top: 20px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: .9;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

h1,
h2,
h3 {
  line-height: 1.3;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.muted-link {
  color: var(--muted);
  font-size: 13px;
}

.muted-link:hover {
  color: var(--accent);
}

.bi {
  color: var(--accent);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.2px;
  white-space: nowrap;
}

.logo:hover {
  opacity: 1;
  color: var(--text);
}

.logo-svg {
  flex: none;
  width: 28px;
  height: 28px;
  position: relative;
  top: -2px;
}

.nav {
  display: flex;
  gap: 6px;
  flex: 1;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 5px;
  line-height: 1;
}

.nav a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .05);
  opacity: 1;
}

.nav a.active {
  color: var(--text);
  background: rgba(0, 0, 0, .07);
}

.userchip {
  display: flex;
  align-items: center;
  gap: 9px;
}

.userchip-name {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.topbar-public {
  justify-content: space-between;
}

.topbar-public .topbar-inner {
  justify-content: space-between;
}


.avatar {
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  background: var(--bg-soft);
}

.avatar-sm {
  width: 32px;
  height: 32px;
}

.avatar-md {
  width: 44px;
  height: 44px;
}

.avatar-lg {
  width: 56px;
  height: 56px;
}

.avatar-xl {
  width: 72px;
  height: 72px;
}

.avatar-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2688eb, #6a5cff);
  user-select: none;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, transform .05s, opacity .15s;
  color: #fff;
}

.btn:active {
  transform: scale(.98);
}

.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  opacity: 1;
}

.btn-success {
  background: #2e9c46;
}

.btn-success:hover {
  background: #37ad4f;
  opacity: 1;
}

.btn-danger {
  background: var(--red);
}

.btn-danger:hover {
  background: #d63b3b;
  opacity: 1;
}

.btn-secondary {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--card-hover);
  border-color: #b9c0d4;
  opacity: 1;
}

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

.btn-ghost:hover {
  background: rgba(0, 0, 0, .05);
  opacity: 1;
}

.btn-sm {
  padding: 7px 13px;
  font-size: 13.5px;
  border-radius: 5px;
}

.btn-xs {
  padding: 5px 10px;
  font-size: 12.5px;
  border-radius: 5px;
}

.btn-lg {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
}

.w-fix {
  width: 200px;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12.5px;
  white-space: nowrap;
}

.badge-gray {
  background: rgba(139, 141, 160, .15);
  color: var(--muted);
}

.badge-blue {
  background: var(--blue-bg);
  color: #1d6fc4;
}

.badge-green {
  background: var(--green-bg);
  color: #000;
}

.badge-red {
  background: var(--red-bg);
  color: #c83a3a;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 13px;
}

.src-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  font-size: 13px;
  margin-right: 4px;
}

.subs-yes {
  color: var(--green);
  font-weight: 700;
}

.subs-no {
  color: var(--red);
  font-weight: 700;
}


.hero {
  text-align: center;
  padding: 40px 0 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -10% 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(38, 136, 235, .16), transparent 60%),
    radial-gradient(500px 280px at 80% 10%, rgba(106, 92, 255, .12), transparent 60%);
  pointer-events: none;
}

.hero>* {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--blue-bg);
  border: 1px solid rgba(38, 136, 235, .35);
  color: #1d6fc4;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 18px;
}

.hero-sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0px 0 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .15s, transform .15s;
}

.feature-card:hover {
  border-color: #b9c0d4;
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
}

.how {
  padding: 50px 0 70px;
  text-align: center;
}

.how h2 {
  font-size: 28px;
  margin-bottom: 34px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 40px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: #1d6fc4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 13px;
}

.step h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
  font-size: 13.5px;
}


.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 0px 0 20px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.3px;
  margin-bottom: 4px;
}

.page-sub {
  color: var(--muted);
  font-size: 15px;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state.small {
  padding: 34px 20px;
}

.empty-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.empty-state h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 22px;
}

.gw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-bottom: 40px;
}

.gw-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text);
  opacity: 1 !important;
}

.gw-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gw-card-head-info {
  flex: 1;
  min-width: 0;
}

.gw-card-group {
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gw-card-date {
  color: var(--muted);
  font-size: 12.5px;
}

.gw-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gw-card-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}


.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.panel-title {
  font-size: 18px;
  margin-bottom: 16px;
}

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

.panel-head .panel-title {
  margin-bottom: 0;
}

.panel-head-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.panel-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.action-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.action-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 3px;
}

.hint {
  color: var(--muted);
  font-size: 13px;
}

.optional {
  color: var(--muted);
  font-weight: 400;
}


.field {
  margin-bottom: 24px;
}

.field>label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

input[type="text"],
input[type="number"],
input[type="search"],
input[type="password"] {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  padding: 11px 14px;
  font-size: 14.5px;
  font-family: inherit;
  transition: border-color .15s;
}

input:focus {
  outline: none;
  border-color: var(--accent);
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  flex: 1;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.check input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: none;
}

.form-actions {
  margin-top: 8px;
}


.crit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.crit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
}

.crit-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.crit-card:hover {
  border-color: #b9c0d4;
}

.crit-card.selected {
  border-color: var(--accent);
  background: var(--blue-bg);
}

.crit-icon {
  font-size: 24px;
}

.crit-name {
  font-weight: 600;
  font-size: 14.5px;
}


.place-remove {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  padding: 4px 9px;
  border-radius: 5px;
  flex: none;
}

.place-remove:hover {
  color: var(--red);
  background: var(--red-bg);
}

.place-titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.place-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.place-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: #1d6fc4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13.5px;
  flex: none;
}

.place-row input {
  max-width: 340px;
}


.post-preview {
  margin-top: 14px;
}

.pp-card {
  display: flex;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 16px;
  margin-top: 24px;
}

.pp-info {
  flex: 1;
  min-width: 0;
}

.pp-name {
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.pp-text {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 8px;
  word-break: break-word;
  white-space: pre-line;
}

.pp-counters {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}


.alert {
  border-radius: 5px;
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 14px;
}

.alert-error {
  background: var(--red-bg);
  border: 1px solid rgba(230, 70, 70, .4);
  color: #c83a3a;
}

.alert-success {
  background: var(--green-bg);
  border: 1px solid rgba(75, 179, 75, .4);
  color: #2e9c46;
}

.alert-warning {
  background: var(--orange-bg);
  border: 1px solid rgba(255, 158, 67, .4);
  color: #b26a1a;
}


.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.4px;
}

.stat-label {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 3px;
}


.gw-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

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

.gw-head-group {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gw-head-date {
  color: var(--muted);
  font-size: 13px;
}

.gw-title {
  font-size: 20px;
  margin-bottom: 14px;
}

.gw-badges {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.emoji {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.22em;
  margin: 0 1px;
}

.gw-head-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.gw-delete {
  margin: 16px 0 6px;
  text-align: right;
}

.danger-link {
  color: var(--red);
  font-size: 14px;
}

.danger-link:hover {
  text-decoration: underline;
}


.progress-box {
  margin: 4px 0 16px;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  max-height: 800px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .45s ease, opacity .45s ease, padding .45s ease, margin .45s ease;
}

.progress-box.collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-width: 0;
}

.src-bar {
  margin-bottom: 14px;
}

.src-bar:last-child {
  margin-bottom: 0;
}

.src-bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.bar-nums {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.bar {
  height: 8px;
  background: rgba(0, 0, 0, .07);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #6a5cff);
  border-radius: 999px;
  transition: width .25s;
}

.src-status {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 5px;
  min-height: 16px;
}


.winners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.winners-foot {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
}

.winner-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 18px;
  text-align: center;
}

.winner-first {
  border-color: rgb(0 97 255 / 45%);
  background: rgb(0 99 255 / 5%);
}

.winner-place {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}

.winner-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.winner-name a {
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.winner-name a:hover {
  color: var(--accent);
}

.winner-vkid {
  color: var(--muted);
  font-size: 12.5px;
}


.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th {
  text-align: left;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table tbody tr:hover {
  background: rgba(0, 0, 0, .03);
}

.table .row-winner {
  background: rgb(0 97 255 / 5%);
}

.col-num {
  width: 48px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

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

.person-name {
  color: var(--text);
  font-weight: 500;
}

.person-name:hover {
  color: var(--accent);
}

.search-form {
  display: flex;
  gap: 8px;
}

.search-form input {
  width: 220px;
  padding: 8px 12px;
  font-size: 13.5px;
}


.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

.pagination a,
.pagination .cur,
.pagination .dots {
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--card);
}

.pagination a:hover {
  color: var(--text);
  border-color: #b9c0d4;
  opacity: 1;
}

.pagination .cur {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.pagination .dots {
  border-color: transparent;
  background: transparent;
}


.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(3px);
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.rnd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.rnd-place {
  font-weight: 700;
  font-size: 15.5px;
}

.rnd-close {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 17px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.rnd-close:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .05);
}

.rnd-window {
  height: 256px;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.rnd-window::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 64px;
  transform: translateY(-50%);
  border-top: 1px solid rgba(38, 136, 235, .5);
  border-bottom: 1px solid rgba(38, 136, 235, .5);
  background: rgba(38, 136, 235, .07);
  pointer-events: none;
}

.rnd-strip {
  will-change: transform;
}

.rnd-item {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  transition: background .2s;
}

.rnd-item.win {
  background: rgba(38, 136, 235, .5);
}

.rnd-name {
  font-weight: 600;
  font-size: 15.5px;
}


#toast-box {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.toast {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 5px;
  padding: 11px 20px;
  font-size: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  animation: toast-in .2s ease;
  max-width: 90vw;
}

.toast-error {
  border-color: rgba(230, 70, 70, .5);
  color: #c83a3a;
}

.toast-success {
  border-color: rgba(75, 179, 75, .5);
  color: #2e9c46;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}


.check-result {
  margin-top: 14px;
  border-radius: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(230, 70, 70, .4);
  background: var(--red-bg);
}

.cr-title {
  font-weight: 700;
  margin-bottom: 4px;
  background: transparent !important;
  border: 0 !important;
}

.cr-sub {
  font-size: 14px;
}

.cr-winner {
  background: rgba(255, 196, 0, .1);
  border: 1px solid rgba(255, 196, 0, .45);
}

.cr-no {
  background: var(--red-bg);
  border: 1px solid rgba(230, 70, 70, .4);
}

.cr-sub {
  color: var(--text);
}


.footer {
  margin-top: 20px;
}


@media (max-width: 900px) {

  .features,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

@media (max-width: 620px) {

  .features,
  .crit-grid,
  .stat-grid,
  .winners-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 2px;
  }

  .topbar-inner {
    gap: 5px;
  }

  .logo {
    font-size: 16px;
  }

  .logo span {
    display: none;
  }

  .logo-svg {
    width: 35px;
    height: 35px;
  }

  .userchip {
    display: none;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .search-form {
    width: 100%;
  }

  .search-form input {
    flex: 1;
    width: auto;
  }

  .panel-head-actions {
    width: 100%;
  }

  .badge {
    margin-top: 10px;
  }
}