:root {
  --text: #153461;
  --white: #ffffff;
  --gold: #f0b51d;
  --shadow: 0 18px 40px rgba(8, 27, 58, 0.2);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --container: 720px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 28% 18%, rgba(29, 183, 242, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(20, 61, 128, 0.74) 0%, rgba(14, 111, 190, 0.68) 50%, rgba(20, 61, 128, 0.74) 100%),
    url("../img/brooklyn-bridge-statue-liberty.webp") center/cover no-repeat fixed;
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.simple-page {
  min-height: 100vh;
  padding: 20px 16px 28px;
}

.simple-shell {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 34px 20px 36px;
  border-radius: var(--radius-xl);
  background: rgba(31, 74, 145, 0.24);
  backdrop-filter: blur(8px);
}

.share-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.share-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
}

.share-status {
  min-height: 20px;
  margin-top: 2px;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.simple-brand,
.simple-footer {
  display: grid;
  justify-items: center;
  text-align: center;
}

.simple-brand__logo-wrap {
  position: relative;
  display: inline-block;
}

.simple-brand img,
.simple-footer img {
  width: 220px;
  height: auto;
}

.simple-brand__profile {
  width: 170px !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.simple-verified {
  position: absolute;
  right: 18px;
  bottom: 8px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.simple-verified svg {
  width: 34px;
  height: 34px;
  fill: #e6b44f;
}

.simple-verified__check {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.simple-brand h1,
.simple-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.94);
}

.simple-brand h1 {
  font-size: 1.65rem;
  font-weight: 500;
}

.simple-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.simple-social a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.simple-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.simple-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.simple-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  min-height: 62px;
  padding: 0 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1db7f2 0%, #11a8e4 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease;
}

.simple-button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 42px rgba(15, 49, 104, 0.28);
}

.simple-button::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(29, 183, 242, 0.34);
  border-radius: inherit;
  animation: bluePulse 2.2s ease-out infinite;
}

.simple-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: buttonSweep 3.6s ease-in-out infinite;
}

.simple-videos {
  margin-top: 28px;
}

.simple-videos__head {
  margin-bottom: 14px;
}

.simple-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.simple-rating__copy strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 0.95;
}

.simple-rating__copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.simple-rating__stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 1.5rem;
  white-space: nowrap;
}

.simple-rating__google {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
}

.simple-rating__google svg {
  width: 100%;
  height: 100%;
}

.simple-carousel {
  overflow: hidden;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

.simple-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  padding: 10px 20px;
  animation: carouselLoop 58s linear infinite;
}

.simple-carousel:hover .simple-carousel__track,
.simple-carousel:focus .simple-carousel__track,
.simple-carousel:focus-within .simple-carousel__track {
  animation-play-state: paused;
}

.simple-video-card {
  position: relative;
  overflow: hidden;
  width: 248px;
  min-width: 248px;
  min-height: 440px;
  border-radius: 28px;
  background: #0f2f63;
  box-shadow: 0 18px 34px rgba(8, 27, 58, 0.2);
}

.simple-video-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
}

.simple-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simple-video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(8, 27, 58, 0.78) 100%);
}

.simple-video-card__caption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
}

.simple-video-card__caption small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 700;
}

.simple-video-card__caption small::before {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.simple-footer {
  gap: 12px;
  margin-top: 30px;
}

.simple-footer img {
  width: 180px;
}

@keyframes buttonSweep {
  0%, 16% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes bluePulse {
  0% { opacity: .8; transform: scale(.88); }
  70%, 100% { opacity: 0; transform: scale(1.18); }
}

@keyframes carouselLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 11px), 0, 0); }
}

@media (max-width: 640px) {
  .simple-rating {
    flex-direction: column;
    align-items: flex-start;
  }

  .simple-video-card {
    width: 214px;
    min-width: 214px;
    min-height: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
