* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #eaf3ff;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 143, 245, .18), transparent 38%),
    linear-gradient(180deg, #0f1823 0%, #070b10 42%, #101927 100%);
  min-height: 100vh;
}

main {
  min-height: 100vh;
  padding: 32px 16px;
}

.container {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.hero {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 28px;
  background: rgba(18, 25, 34, .92);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .45);
}

.logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #4b93f5;
  color: white;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 40px rgba(75, 147, 245, .55);
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
}

.hero > p {
  margin: 12px 0 28px;
  color: rgba(219, 235, 255, .70);
}

.summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
  text-align: left;
}

.summary-card,
.toolbar,
.shop-card {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(16, 23, 32, .88);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
}

.summary-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.summary-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #5aa2ff;
  background: #0b1118;
  border: 1px solid rgba(255, 255, 255, .10);
}

.summary-card p,
.stat-box p,
.socials p {
  margin: 0;
  color: rgba(219, 235, 255, .70);
  font-size: 14px;
}

.summary-card b,
.stat-box b {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 26px;
  font-weight: 900;
}

.summary-card small,
.stat-box small {
  color: rgba(219, 235, 255, .50);
}

.toolbar {
  max-width: 900px;
  margin: 0 auto 24px;
  padding: 16px;
  border-radius: 22px;
  display: flex;
  gap: 12px;
}

input,
select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  background: #080d13;
  border: 1px solid rgba(255, 255, 255, .10);
  color: white;
  outline: none;
}

select {
  max-width: 300px;
}

input:focus,
select:focus {
  border-color: rgba(75, 147, 245, .70);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.shop-card {
  border-radius: 24px;
  padding: 20px;
}

.shop-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.shop-header h2 {
  margin: 0;
  color: white;
  font-size: 22px;
}

.shop-header p {
  margin: 6px 0 0;
  color: rgba(219, 235, 255, .55);
  font-size: 14px;
}

.number {
  background: #4b93f5;
  color: white;
  border-radius: 13px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  height: fit-content;
}

.stats,
.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat-box,
.opinions,
.socials div {
  background: #080d13;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  padding: 16px;
}

.opinions {
  margin-top: 18px;
}

.opinions h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 16px;
}

.opinions ol {
  margin: 0;
  padding-left: 20px;
  color: rgba(219, 235, 255, .65);
  font-size: 14px;
  line-height: 1.7;
}

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

.socials span {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid;
}

.active {
  color: #6ee7b7;
  border-color: rgba(52, 211, 153, .3);
  background: rgba(52, 211, 153, .10);
}

.ok {
  color: #93c5fd;
  border-color: rgba(96, 165, 250, .3);
  background: rgba(96, 165, 250, .10);
}

.warning {
  color: #fcd34d;
  border-color: rgba(251, 191, 36, .3);
  background: rgba(251, 191, 36, .10);
}

.late {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, .3);
  background: rgba(248, 113, 113, .10);
}

footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  text-align: center;
  color: rgba(219, 235, 255, .45);
  font-size: 12px;
}

@media (max-width: 900px) {
  .summary,
  .grid {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .stats,
  .socials {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  select {
    max-width: none;
  }
}
