:root {
  --grw-border: rgba(255, 255, 255, 0.1);
  --grw-text: rgba(255, 255, 255, 0.92);
  --grw-muted: rgba(255, 255, 255, 0.62);
  --grw-link: #5aa7ff;
  --grw-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --grw-radius: 18px;
  --grw-card-radius: 18px;
  --grw-gap: 14px;
  --grw-pad: 22px;
}

.grw * {
  box-sizing: border-box;
}

.grw {
  color: var(--grw-text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
}

.grw-shell {
  width: min(90rem, 100%);
  margin: 0 auto;
  padding: var(--grw-pad);
  border-radius: calc(var(--grw-radius) + 8px);
  background: radial-gradient(
      1200px 500px at 10% -10%,
      rgb(90 238 255 / 22%),
      transparent 60%
    ),
    radial-gradient(
      900px 400px at 90% 0%,
      rgb(97 255 227 / 18%),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid var(--grw-border);
  box-shadow: var(--grw-shadow);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.grw-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: var(--grw-radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.grw-title {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.grw-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.grw-g {
  width: 20px;
  height: 20px;
  display: block;
}

.grw-brand-text {
  font-size: 16px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.grw-brand-text strong {
  font-weight: 800;
}

.grw-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.grw-score-value {
  font-size: 22px;
  font-weight: 900;
}

.grw-score-count {
  color: var(--grw-muted);
  font-size: 14px;
}

.grw-stars {
  display: flex;
  gap: 3px;
}

.grw-star {
  width: 18px;
  height: 18px;
  fill: #f7c948;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.grw-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #000;
  font-weight: 800;
  background: linear-gradient(180deg, #00fff2, #00fff2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 255, 242, 0.15);
  white-space: nowrap;
}

.grw-cta:hover {
  filter: brightness(1.05);
}

.grw-cta:active {
  transform: translateY(1px);
}

.grw-track-wrap {
  position: relative;
  margin-top: 18px;
  padding: 0 56px;
}

.grw-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.grw-track {
  display: flex;
  gap: var(--grw-gap);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms cubic-bezier(0.22, 0.8, 0.2, 1);
  padding: 4px;
}

.grw-card {
  flex: 0 0 auto;
  width: calc((100% - (var(--grw-gap) * 3)) / 4);
  min-width: 0;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--grw-card-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 16px;
  outline: none;
}

.grw-card:focus {
  border-color: rgb(90 255 235 / 55%);
  box-shadow: 0 0 0 4px rgb(90 231 255 / 18%), 0 10px 30px rgba(0, 0, 0, 0.35);
}
.grw-card-layout {
  display: flex;
  gap: 1.5rem;
}
.grw-card-right {
  display: flex;
  gap: 0.5rem;
}
.grw-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.grw-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  user-select: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.grw-avatar-letter {
  line-height: 1;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 500;
}

.grw-avatar-bg-0 {
  background: #1a73e8;
}
.grw-avatar-bg-1 {
  background: #d93025;
}
.grw-avatar-bg-2 {
  background: #188038;
}
.grw-avatar-bg-3 {
  background: #f9ab00;
  color: #111;
}
.grw-avatar-bg-4 {
  background: #9334e6;
}
.grw-avatar-bg-5 {
  background: #e37400;
}
.grw-avatar-bg-6 {
  background: #00796b;
}
.grw-avatar-bg-7 {
  background: #5f6368;
}

.grw-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 1px;
}

.grw-name {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  min-width: 0;
}

.grw-name > span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
}

.grw-time {
  margin-top: 0;
  color: var(--grw-muted);
  font-size: 12px;
  line-height: 1.2;
  transform: none;
}

.grw-author-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0;
  line-height: 1.2;
}

.grw-date {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.grw-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(90, 167, 255, 0.18);
  border: 1px solid rgba(90, 167, 255, 0.35);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.grw-gmark .grw-g {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}

.grw-card-stars {
  display: flex;
  gap: 3px;
  margin: 10px 0 10px;
}

.grw-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
  overflow: hidden;
  position: relative;
}

.grw-text[data-collapsed="true"] {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.grw-more {
  background: transparent;
  border: 0;
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 0 0;
  font-size: 13px;
}

.grw-more:hover {
  text-decoration: underline;
}

.grw-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  user-select: none;
  z-index: 5;
}

.grw-prev {
  left: 12px;
}
.grw-prev .prev-reviews {
  font-size: 20px;
  top: -2px;
  position: relative;
}
.grw-next {
  right: 12px;
}
.grw-next .next-previews {
  font-size: 20px;
  top: -2px;
  position: relative;
}
.grw-nav:hover {
  background: rgba(0, 0, 0, 0.45);
}

.grw-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.grw-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.grw-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.grw-dot.is-active {
  width: 22px;
  background: var(--primary-color);
  border-color: var(--primary-color);
}
@media (max-width: 1200px) {
  .grw-card {
    width: calc((100% - var(--grw-gap)) / 3);
  }
}
@media (max-width: 1024px) {
  .grw-track-wrap {
    padding: 0 44px;
  }
  .grw-prev {
    left: 0;
  }
  .grw-next {
    right: 0;
  }
}
@media (max-width: 992px) {
  .grw-card {
    width: calc((100% - var(--grw-gap)) / 2);
  }
}
@media (max-width: 640px) {
  .grw-head {
    flex-direction: column;
    align-items: stretch;
  }
  .grw-cta {
    width: 100%;
  }
  .grw-card {
    width: 100%;
  }
  .grw-track-wrap {
    padding: 0 28px;
  }
  .grw-prev {
    left: -6px;
  }
  .grw-next {
    right: -6px;
  }
  .grw-nav {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 520px) {
  .grw-shell {
    padding: 14px;
    border-radius: 20px;
  }
  .grw-head {
    padding: 14px;
    gap: 12px;
  }
  .grw-brand {
    padding: 6px 10px;
  }
  .grw-brand-text {
    font-size: 14px;
  }
  .grw-score-value {
    font-size: 20px;
  }
  .grw-star {
    width: 16px;
    height: 16px;
  }
  .grw-track-wrap {
    margin-top: 14px;
  }
  .grw-card {
    padding: 14px;
    border-radius: 20px;
  }
  .grw-avatar {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .grw-card-stars {
    margin: 8px 0;
  }
  .grw-text {
    line-height: 1.4;
  }
  .grw-dots {
    margin-top: 10px;
  }
}
