:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-alt: #111111;
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.12);
  --border: rgba(245, 245, 245, 0.1);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oxanium", "Orbitron", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
  background: var(--accent);
  color: #111;
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 999;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.4);
  backdrop-filter: blur(10px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
  padding: 8px 0;
}

.header--scrolled {
  background: rgba(11, 11, 11, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  padding: 6px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent);
  flex-shrink: 0;
}

.logo__icon {
  width: clamp(120px, 12vw, 180px);
  height: clamp(120px, 12vw, 180px);
  object-fit: contain;
}

.logo__wordmark {
  height: clamp(56px, 3.8vw, 72px);
  width: auto;
  max-width: min(260px, 46vw);
  object-fit: contain;
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
}

.nav a {
  position: relative;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  opacity: 1;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch__btn {
  background: transparent;
  border: none;
  color: var(--text);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.7;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}

.lang-switch__btn.is-active {
  background: var(--accent);
  color: #111;
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #111;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.2);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--wa {
  padding: 8px 16px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/main_foto.webp") right center / cover no-repeat,
    radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.15),
      transparent 60%
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.02), transparent 60%);
  z-index: -2;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.72);
}

.hero__content {
  display: flex;
  justify-content: flex-start;
}

.hero__text {
  max-width: 620px;
}

.hero__eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__subtitle {
  color: var(--muted);
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 100px;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 150px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--contacts {
  position: relative;
  background: url("assets/contact_back.webp") right center / cover no-repeat;
}

.section--contacts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.6);
  z-index: 0;
}

.section--contacts .container {
  position: relative;
  z-index: 1;
}

.section--about {
  position: relative;
  background: url("assets/about_back.webp") center / cover no-repeat;
}

.section--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.75);
  z-index: 0;
}

.section--about .container {
  position: relative;
  z-index: 1;
}

.section__head {
  margin-bottom: 40px;
  max-width: 640px;
}

.section__head h2 {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 14px;
}

.section__head p {
  color: var(--muted);
}

.nav a[aria-current="page"] {
  opacity: 1;
}

.nav a[aria-current="page"]::after {
  width: 100%;
}

.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
}

.lang-switch__btn.is-active {
  pointer-events: none;
}

.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.12),
      transparent 60%
    ),
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 60%);
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero__lead {
  color: var(--muted);
}

.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}


.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
}

.pricing-card__price {
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 1px;
}

.pricing-card__features {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.pricing-card__features li {
  position: relative;
  padding-left: 16px;
}

.pricing-card__features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-card__cta {
  margin-top: auto;
  align-self: flex-end;
}

.cta-panel {
  margin-top: 30px;
  padding: 24px;
  border-radius: 18px;
  background: var(--accent-soft);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.contact-card h3 {
  margin-bottom: 12px;
}

.page-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  font-size: 15px;
  line-height: 1.75;
}

.legal-content h3,
.legal-content h4 {
  color: var(--text);
  margin-top: 8px;
}

.legal-content h3 {
  font-size: 18px;
}

.legal-content h4 {
  font-size: 16px;
  color: var(--muted);
}

.legal-content .pricing-card__features {
  margin: 4px 0 0;
  gap: 8px;
  color: var(--muted);
}

.legal-content .pricing-card__features li {
  padding-left: 18px;
}

.video-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scroll-padding: 0 16px;
  scrollbar-width: none;
}

.video-grid::-webkit-scrollbar {
  display: none;
}

.video-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.2s ease,
    border 0.2s ease;
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.video-card__media {
  position: relative;
  aspect-ratio: 9 / 13;
  background: #0b0b0b;
  overflow: hidden;
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
}

.video-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.35);
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border 0.2s ease;
}

.video-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.video-card__tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.about__content {
  grid-column: 2;
  justify-self: end;
  width: min(560px, 100%);
  padding: 24px 28px;
  border-radius: 18px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  position: relative;
  overflow: hidden;
}

.about__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 0;
}

.about__content > * {
  position: relative;
  z-index: 1;
}

.form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.6);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #ff6b6b;
}

.field__hint {
  font-size: 12px;
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.form__note {
  font-size: 12px;
  color: var(--muted);
}

.form__status {
  margin-top: 12px;
  font-size: 14px;
}

.form__status.is-error {
  color: #ff6b6b;
}

.form__status.is-success {
  color: #6bffb0;
}

.contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.contacts__social {
  text-align: center;
}

.contacts__cta {
  display: flex;
  justify-content: stretch;
}

.contacts__cta,
.contacts__social {
  width: min(480px, 100%);
}

.contacts__cta .cta-panel {
  width: 100%;
  padding: 26px 30px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: none;
}

.contacts__cta .cta-panel h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contacts__cta .cta-panel p {
  color: var(--muted);
  font-size: 14px;
}

.contacts__cta .btn {
  padding: 12px 20px;
  font-size: 13px;
}

.contacts__list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.contacts__list span {
  display: block;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contacts__wa {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts__wa #waBtn {
  align-self: flex-start;
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-align: center;
  width: 100%;
  font-size: 12px;
}

.social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-label {
  line-height: 1;
}

.footer {
  padding: 30px 0 60px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 12px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.footer__brand-text span:first-child {
  color: var(--text);
  font-weight: 500;
}

.footer__credit {
  color: inherit;
}

.footer__credit:hover,
.footer__credit:focus {
  color: var(--text);
}

.footer__legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.footer__legal a:hover,
.footer__legal a:focus {
  color: var(--text);
}

.back-to-top {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
}

.wa-float {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right));
  bottom: calc(40px + env(safe-area-inset-bottom));
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: inherit;
  border: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  z-index: 1050;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: wa-float-shake 3s ease-in-out infinite;
}

.wa-float:hover,
.wa-float:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.wa-float__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes wa-float-shake {
  0%,
  88%,
  100% {
    transform: translateY(0);
  }
  92% {
    transform: translateY(-3px) rotate(-2deg);
  }
  96% {
    transform: translateY(2px) rotate(2deg);
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1200;
  padding: 24px;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__content {
  width: min(900px, 100%);
  background: #111;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal.is-portrait .modal__content {
  width: min(420px, 92vw);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.modal__body {
  position: relative;
  padding-top: 56.25%;
}

.modal.is-portrait .modal__body {
  padding-top: 177.78%;
}

.modal__body iframe,
.modal__body video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.order-modal .modal__content {
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 28px 32px;
  background: #111;
}

.order-modal__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-modal__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-modal__lead {
  margin: 0;
  color: var(--muted);
}

.order-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.order-summary__label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.order-summary__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.form--compact {
  padding: 0;
  border: none;
  background: transparent;
}

.form--compact .form__row {
  margin-bottom: 16px;
}

.field--full {
  grid-column: 1 / -1;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }

  .contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__content {
    justify-self: end;
    width: min(560px, 100%);
  }
}

@media (max-width: 560px) {
  .about__content {
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .nav {
    gap: 16px;
    font-size: 12px;
  }

  .header__actions {
    gap: 8px;
  }
}

@media (max-width: 1200px) {
  .nav {
    position: fixed;
    top: 70px;
    right: 24px;
    background: rgba(11, 11, 11, 0.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    flex-direction: column;
    gap: 14px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .burger {
    display: flex;
  }

  .video-card__media img {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .lang-switch__btn {
    padding: 4px 8px;
    font-size: 10px;
  }

  .lang-switch {
    transform: scale(0.9);
    transform-origin: right center;
  }

  .header__actions {
    gap: 8px;
  }

  .btn--outline {
    display: none;
  }

  .pricing-card .btn--outline {
    display: inline-flex;
  }

  .btn--wa {
    display: inline-flex;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 60px;
    min-height: 70vh;
  }

  .hero__actions {
    margin-top: 120px;
  }

  .video-card {
    flex: 0 0 82%;
    max-width: 82%;
  }

  .about,
  .contacts,
  .form__row,
  .contact-layout,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section--contacts {
    background-position: right center;
  }
}

@media (max-width: 420px) {
  .logo__wordmark {
    height: 48px;
  }
}

.header .logo {
  flex: 0 0 auto;
  flex-shrink: 0;
}

.header .logo__wordmark {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .header .logo__wordmark {
    height: 41px;
    max-width: 187px;
  }
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
