:root {
  --bg-1: #0e0a19;
  --bg-2: #1a1230;
  --surface: rgba(20, 15, 34, 0.9);
  --border: rgba(183, 154, 255, 0.2);
  --text-main: #f2ecff;
  --text-muted: #b7a9d8;
  --accent: #9b6bff;
  --accent-strong: #7a4df0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Archivo", sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(155, 107, 255, 0.24), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(122, 77, 240, 0.18), transparent 38%),
    linear-gradient(150deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 560px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  backdrop-filter: blur(9px);
  padding: 26px 22px;
  box-shadow: 0 22px 44px rgba(5, 4, 12, 0.5);
  animation: riseIn 0.75s ease-out;
}

.brand {
  margin-bottom: 18px;
  text-align: center;
}

.logo-wrap {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  margin: 0 auto 12px;
  border: 1px solid var(--border);
  background: rgba(28, 22, 44, 0.8);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  padding: 7px 11px;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  line-height: 1.15;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 0.94rem;
  color: var(--text-muted);
}

.primary-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.section-divider {
  height: 1px;
  margin: 14px 2px 0;
  background: linear-gradient(90deg, transparent 0%, rgba(183, 154, 255, 0.45) 18%, rgba(183, 154, 255, 0.45) 82%, transparent 100%);
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  text-decoration: none;
  color: var(--text-main);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 9px;
  background: rgba(28, 22, 44, 0.85);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  animation: riseIn 0.55s ease-out both;
}

.link-card:nth-child(2) {
  animation-delay: 70ms;
}

.link-card:nth-child(3) {
  animation-delay: 130ms;
}

.link-card:nth-child(4) {
  animation-delay: 190ms;
}

.link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 62, 240, 0.35);
  box-shadow: 0 8px 18px rgba(93, 36, 204, 0.15);
}

.link-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(122, 77, 240, 0.18);
}

.link-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-copy {
  min-width: 0;
}

.link-title {
  display: block;
  font-weight: 700;
}

@media (max-width: 760px) {
  .primary-links {
    grid-template-columns: 1fr;
  }
}

.coupon-ticket {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  margin-top: 12px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  border-radius: 14px;
  border: 1px dashed rgba(242, 236, 255, 0.45);
  padding: 14px 12px;
  background: linear-gradient(135deg, #b686ff, #7a4df0);
  box-shadow: 0 10px 20px rgba(122, 77, 240, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  overflow: hidden;
}

.coupon-ticket::before,
.coupon-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.coupon-ticket::before {
  left: -10px;
}

.coupon-ticket::after {
  right: -10px;
}

.coupon-ticket:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  box-shadow: 0 12px 24px rgba(122, 77, 240, 0.34);
}

.coupon-kicker {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.coupon-code {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.coupon-hint {
  font-size: 0.78rem;
  opacity: 0.92;
}

.offers {
  margin-top: 20px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 9px;
  background: rgba(28, 22, 44, 0.85);
  color: var(--text-main);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.offer-card:hover {
  transform: translateY(-1px);
  border-color: rgba(122, 62, 240, 0.35);
  box-shadow: 0 8px 18px rgba(93, 36, 204, 0.15);
}

.offer-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(122, 77, 240, 0.18);
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-copy {
  min-width: 0;
}

.offer-title {
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

.offer-price {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #d6c3ff;
}

.offer-deadline {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.links {
  display: grid;
  gap: 10px;
}

.link {
  display: block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  padding: 14px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
  animation: riseIn 0.55s ease-out both;
}

.link:nth-child(2) {
  animation-delay: 70ms;
}

.link:nth-child(3) {
  animation-delay: 130ms;
}

.link:nth-child(4) {
  animation-delay: 190ms;
}

.link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(93, 36, 204, 0.3);
  filter: saturate(1.08);
}

.consultants,
.extras {
  margin-top: 20px;
}

.video-section {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.video-swiper {
  width: 100%;
  max-width: 100%;
  padding: 0 44px 28px;
  position: relative;
  overflow: hidden;
}

.video-swiper .swiper-wrapper {
  display: flex;
  max-width: 100%;
}

.video-swiper .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.video-card {
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #05050a;
}

.video-link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.75);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
}

.video-link:hover .video-play {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(220, 0, 0, 0.88);
}

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(29, 24, 45, 0.95);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(31, 21, 56, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-nav:hover {
  transform: translateY(-50%) scale(1.03);
  background: rgba(37, 30, 56, 0.98);
}

.video-prev {
  left: 2px;
}

.video-next {
  right: 2px;
}

.video-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

h2 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.consultants-description {
  margin: -2px 0 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consultant-grid {
  display: grid;
  gap: 10px;
}

.consultant {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(28, 22, 44, 0.82);
  text-decoration: none;
  padding: 12px;
  color: var(--text-main);
  transition: border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.consultant:hover {
  border-color: rgba(122, 62, 240, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(50, 32, 87, 0.12);
}

.name {
  display: block;
  font-weight: 700;
}

.consultant-photo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(122, 77, 240, 0.18);
  flex-shrink: 0;
}

.consultant-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultant-info {
  min-width: 0;
}

.role {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.link.alt {
  background: linear-gradient(135deg, #4f2ba3, #6a34cf);
}

@keyframes riseIn {
  from {
    transform: translateY(7px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .card {
    border-radius: 20px;
    padding: 20px 16px;
  }

  .video-nav {
    width: 30px;
    height: 30px;
  }

  .video-prev {
    left: 0;
  }

  .video-next {
    right: 0;
  }

  .video-swiper {
    padding: 0 32px 22px;
  }
}

@media (max-width: 760px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}
