.og-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.og-card {
  background: #013f47;
  border: 2px solid #8A2BE2;
  border-radius: 14px;
  padding: 12px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.og-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #d9e7ea;
  margin-bottom: 8px;
}

.og-big {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.og-sub {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin-top: 4px;
  margin-bottom: 10px;
}

.og-lines {
  display: grid;
  gap: 4px;
  font-size: 13px;
}

.og-last-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.og-last-poster {
  width: 52px;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.og-no-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  text-align: center;
  padding: 4px;
}

.og-last-meta {
  min-width: 0;
  flex: 1;
}

.og-last-title {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.25;
  word-break: break-word;
}

.og-last-date,
.og-last-time {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.og-rank-list {
  display: grid;
  gap: 6px;
}

.og-rank-row {
  display: grid;
  grid-template-columns: 36px 34px 1fr;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
}

.og-rank-place {
  font-weight: 700;
  font-size: 12px;
  color: #d9e7ea;
}

.og-rank-poster {
  width: 34px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}

.og-rank-title {
  font-size: 12px;
  line-height: 1.2;
  word-break: break-word;
}

.og-empty,
.og-stats-loading,
.og-stats-error {
  color: #d9e7ea;
  font-size: 13px;
  padding: 8px 0;
}

@media (max-width: 1000px) {
  .og-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .og-grid {
    grid-template-columns: 1fr;
  }
}
