@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Tatu LA";
  src: url("../fonts/tatu-la.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0041-005A, U+0061-007A;
}

* {
  box-sizing: border-box;
}

:root {
  --bg: #030806;
  --panel: rgba(8, 24, 25, 0.82);
  --panel-hover: rgba(14, 37, 40, 0.94);
  --white: #f7f7f8;
  --muted: #cbd3d4;
  --matrix: #19ff73;
  --blue: #1597ed;
  --lilac: #a36bff;
  --netflix-red: #e50914;
  --red-bright: #ff2331;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--bg);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

.matrix-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .36) 24%, transparent 40%, transparent 60%, rgba(0, 0, 0, .36) 76%, rgba(0, 0, 0, .78)),
    linear-gradient(rgba(0, 0, 0, .22), rgba(0, 0, 0, .22)),
    #001c14 url("../images/matrix-background.jpg") center / cover no-repeat;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.015) 50%, rgba(0,0,0,0.035) 50%);
  background-size: 100% 4px;
  mix-blend-mode: screen;
}

.page {
  position: relative;
  isolation: isolate;
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 28px;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 6, 4, .46) 12%, rgba(0, 6, 4, .46) 88%, transparent);
}

.hero {
  text-align: center;
  padding: 34px 18px 22px;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 34px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.10));
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  animation: logo-drop-in .8s cubic-bezier(.22, 1, .36, 1) both;
}

.code-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 78px;
  font-size: 78px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(115deg, #fff 4%, var(--lilac) 43%, var(--netflix-red) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.code-logo i {
  font-style: normal;
  font-weight: 700;
}

.brand-name {
  margin-top: 2px;
  font-size: clamp(42px, 8vw, 66px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -2.5px;
  background: linear-gradient(100deg, #fff 0%, #fff 18%, var(--lilac) 51%, var(--netflix-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 15px;
  font-size: clamp(15px, 3.3vw, 21px);
  font-weight: 600;
  letter-spacing: 5px;
  color: #e5e8ea;
}

.intro {
  width: min(650px, 100%);
  margin: 30px auto 14px;
  padding: 0 18px;
}

.intro h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(22px, 4.6vw, 32px);
  font-weight: 600;
}

.intro-lead {
  margin-top: 6px;
  text-align: center;
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 500;
}

.intro-description {
  margin: 8px 0 0;
  color: #f1f5f5;
  font-size: clamp(14px, 2.7vw, 17px);
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.intro strong {
  color: var(--netflix-red);
}

.intro-line {
  width: 105px;
  height: 3px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lilac), var(--netflix-red));
  box-shadow: 0 0 15px rgba(229,9,20,.45);
}

.services {
  width: min(650px, 100%);
  display: grid;
  gap: 12px;
  margin: 20px auto 18px;
}

.whatsapp-card {
  width: min(630px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.service-card,
.whatsapp-card {
  position: relative;
  border: 1px solid rgba(120, 222, 183, .42);
  background:
    linear-gradient(90deg, #ff1731 0 21px, transparent 21px),
    linear-gradient(105deg, rgba(6, 29, 24, .99), rgba(3, 17, 16, .99));
  box-shadow: 0 14px 30px rgba(0,0,0,.34), inset 0 1px 0 rgba(203, 255, 232, .07), inset 0 0 30px rgba(37, 211, 102, .06);
  backdrop-filter: blur(8px);
}

.service-card {
  width: 100%;
  min-height: 108px;
  display: grid;
  grid-template-columns: 100px 1fr 58px;
  align-items: center;
  gap: 19px;
  padding: 10px 20px 10px 38px;
  border-radius: 20px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
  animation: service-fade-in .62s cubic-bezier(.22, 1, .36, 1) var(--entry-delay, 0ms) forwards;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card.coupon-card {
  min-height: 124px;
}

a.service-card {
  text-decoration: none;
}

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

.service-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(222, 251, 255, .09), transparent 34%);
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(105deg, rgba(37, 211, 102, .13), rgba(229, 9, 20, .08));
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.service-card:not(:disabled):hover,
.service-card:not(:disabled):focus-visible {
  transform: translateY(-2px) scale(1.005);
  background:
    linear-gradient(90deg, #ff1731 0 21px, transparent 21px),
    linear-gradient(105deg, rgba(15, 61, 51, .99), rgba(7, 38, 34, .99));
  border-color: rgba(123, 246, 181, .75);
  box-shadow: 0 18px 38px rgba(0,0,0,.44), 0 0 24px rgba(37, 211, 102, .11), inset 0 0 26px rgba(118, 255, 171, .06);
  outline: none;
}

.service-card:not(:disabled):hover::after,
.service-card:not(:disabled):focus-visible::after {
  opacity: 1;
}

.icon-box {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #ff172b, var(--netflix-red));
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.service-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: transform .22s ease;
}

.service-card:not(:disabled):hover .service-icon,
.service-card:not(:disabled):focus-visible .service-icon {
  transform: scale(1.06);
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-text strong {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.service-text small {
  max-width: 455px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.service-card:disabled {
  grid-template-columns: 100px minmax(0, 1fr);
  cursor: not-allowed;
  border-color: rgba(255, 199, 102, .45);
}

.service-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: 3px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 199, 102, .55);
  border-radius: 7px;
  background: #392b13;
  color: #ffda94;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.service-status::before {
  content: "";
  flex: 0 0 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.coupon-code {
  display: table;
  width: fit-content;
  margin-top: 6px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 35, 49, .58);
  border-radius: 7px;
  background: rgba(229, 9, 20, .18);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.2;
}

.arrow {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff2331, var(--netflix-red));
  color: white;
  box-shadow: 0 6px 18px rgba(229,9,20,.34), inset 0 1px 0 rgba(255,255,255,.18);
}

.arrow svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 82px;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 14px 24px;
  border-radius: 22px;
  color: white;
  text-decoration: none;
  border-color: rgba(25, 255, 115, .55);
  background: linear-gradient(105deg, rgba(4, 24, 20, .94), rgba(3, 12, 12, .92));
  box-shadow: 0 12px 30px rgba(0,0,0,.30), 0 0 0 rgba(37, 211, 102, 0);
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), border-color .2s ease, box-shadow .25s ease;
  animation: whatsapp-enter .75s cubic-bezier(.22, 1, .36, 1) .65s both;
}

.whatsapp-card:hover,
.whatsapp-card:focus-visible {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(25,255,115,.9);
  box-shadow: 0 19px 36px rgba(0,0,0,.38), 0 0 28px rgba(37, 211, 102, .27);
  outline: none;
  animation: none;
}

.whatsapp-symbol {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 4px solid #25d366;
  border-radius: 50%;
  color: #25d366;
  font-size: 48px;
  transform: rotate(-35deg);
}

.whatsapp-card small {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #e5eeee;
}

.whatsapp-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(23px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2px;
}

.whatsapp-copy {
  justify-self: center;
  text-align: center;
}

.footer {
  padding: 24px 5px 4px;
  text-align: left;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 auto 24px;
  background: linear-gradient(90deg, transparent, rgba(25, 255, 115, .8), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  color: #e3e9ea;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  text-decoration: none;
}

.footer-code {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.footer-wordmark {
  margin-top: 7px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.footer-tagline {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: .65px;
}

.footer-summary {
  max-width: 180px;
  margin: 16px 0 0;
  color: #cbd3d4;
  font-size: 11px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-links,
.footer .legal-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.footer-links a,
.footer .legal-nav a,
.footer .legal-nav button {
  padding: 2px 0;
  color: #d7e5df;
  font: inherit;
  text-align: left;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer .legal-nav a:hover,
.footer .legal-nav button:hover {
  color: #fff;
  text-decoration: underline;
}

.footer a:focus-visible,
.footer button:focus-visible {
  outline: 3px solid #b6f6d5;
  outline-offset: 4px;
}

.footer-links .footer-home {
  padding: 7px 18px;
  border: 1px solid rgba(182, 246, 213, .5);
  border-radius: 8px;
  background: rgba(6, 29, 24, .8);
  color: #fff;
  font-weight: 700;
}

.footer-links .footer-home:hover {
  background: rgba(15, 61, 51, .95);
  text-decoration: none;
}

.footer-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(120, 222, 183, .2);
}

.copyright {
  margin: 0;
  font-size: 11px;
  color: #c9d0d1;
  white-space: nowrap;
}

.credit {
  margin: 0;
  font-size: 13px;
  color: #d8dfe0;
  white-space: nowrap;
}

.credit strong {
  color: var(--netflix-red);
  font-weight: 700;
}

.article-page {
  width: min(860px, calc(100% - 28px));
}

.article-hero {
  padding-bottom: 8px;
}

.site-logo-link {
  text-decoration: none;
}

.article-intro {
  margin-top: 24px;
}

.article-intro h1,
.article-intro .intro-lead {
  text-align: center;
}

.article-intro .intro-line {
  margin-right: auto;
  margin-left: auto;
}

.history-article {
  width: min(720px, 100%);
  margin: 0 auto 18px;
  padding: 32px clamp(22px, 5vw, 42px);
  border: 1px solid rgba(120, 222, 183, .4);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(10, 42, 35, .96), rgba(3, 20, 19, .96));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(203, 255, 232, .07);
  color: #e8eeee;
  font-size: 1rem;
  line-height: 1.78;
}

.history-article h2 {
  margin: 34px 0 14px;
  color: #fff;
  font-size: clamp(22px, 4vw, 29px);
  line-height: 1.2;
}

.history-article h2:first-child {
  margin-top: 0;
}

.history-article p {
  margin: 0 0 20px;
}

.history-article strong {
  color: #fff;
  font-weight: 700;
}

.history-article a {
  color: #ff6670;
  font-weight: 700;
  text-decoration-color: rgba(255, 102, 112, .7);
  text-underline-offset: 3px;
}

.history-article a:hover,
.history-article a:focus-visible {
  color: #ff9ca2;
}

.history-article ol {
  margin: 0 0 24px;
  padding-left: 1.45rem;
}

.history-article li {
  margin-bottom: 20px;
  padding-left: 5px;
}

.history-article li::marker {
  color: var(--netflix-red);
  font-weight: 800;
}

.article-closing {
  margin-bottom: 0 !important;
  padding-top: 4px;
  color: #d5dedf;
}

@keyframes service-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-drop-in {
  from {
    opacity: 0;
    transform: translateY(-42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whatsapp-enter {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }
}

@media (max-width: 620px) {
  .footer {
    padding: 28px 12px 12px;
  }

  .footer-grid {
    gap: 24px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }

  .footer-summary {
    max-width: none;
    margin: 12px 0 0;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-column h2 {
    margin-bottom: 10px;
  }

  .footer-links {
    align-items: stretch;
    gap: 4px;
  }

  .footer-links a,
  .footer-links > span,
  .footer .legal-nav a,
  .footer .legal-nav button {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    overflow-wrap: anywhere;
  }

  .footer-links .footer-home {
    width: fit-content;
    min-width: 88px;
    justify-content: center;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
    padding-top: 20px;
    border-top: 1px solid rgba(120, 222, 183, .2);
  }

  .footer .legal-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    max-width: none;
  }

  .footer .legal-nav button {
    grid-column: 1 / -1;
  }

  .page {
    width: min(100% - 18px, 520px);
    padding-top: 12px;
  }

  .hero {
    padding: 18px 8px 14px;
  }

  .logo-wrap {
    padding: 22px 18px 20px;
  }

  .code-logo {
    height: 62px;
    font-size: 62px;
  }

  .brand-name {
    font-size: clamp(37px, 12vw, 54px);
  }

  .tagline {
    letter-spacing: 3px;
    font-size: 13px;
  }

  .service-card {
    grid-template-columns: 78px 1fr 46px;
    gap: 14px;
    min-height: 96px;
    padding: 10px 14px 10px 31px;
    border-radius: 17px;
  }

  .service-card.coupon-card {
    min-height: 112px;
  }

  .service-card:disabled {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .service-status {
    font-size: 11px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 17px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
  }

  .service-text strong {
    font-size: 19px;
  }

  .service-text small {
    font-size: 12.5px;
  }

  .coupon-code {
    margin-top: 4px;
    padding: 2px 6px;
    font-size: 9px;
  }

  .arrow {
    width: 44px;
    height: 44px;
  }

  .arrow svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-card {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 12px;
    min-height: 86px;
    padding: 12px 15px;
  }

  .whatsapp-symbol {
    width: 54px;
    height: 54px;
    border-width: 3px;
    font-size: 37px;
  }

  .whatsapp-card small {
    font-size: 11px;
  }

  .whatsapp-card strong {
    font-size: 23px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-top: 24px;
  }

  .copyright {
    font-size: 11px;
    white-space: normal;
  }

  .credit {
    font-size: 11px;
    white-space: normal;
  }

  .article-page {
    width: min(100% - 18px, 720px);
  }

  .article-hero {
    padding-bottom: 4px;
  }

  .article-intro {
    margin-top: 20px;
  }

  .history-article {
    padding: 26px 20px;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .history-article h2 {
    margin-top: 28px;
    font-size: 22px;
  }

  .history-article li {
    padding-left: 2px;
  }

}

@media (max-width: 440px) {
  .whatsapp-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 8px;
  }

  .whatsapp-copy {
    min-width: 0;
    max-width: 100%;
  }

  .whatsapp-card strong {
    font-size: clamp(20px, 5.5vw, 23px);
  }
}

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

  .service-card {
    opacity: 1;
    transform: none;
  }
}
