﻿/* FONTS */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/roboto-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/roboto-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ── TOKENS ── */
:root {
  --color-primary: #14a0ff;
  --color-accent: #F9063F;
  --color-success: #9ce700;
  --color-error: #d43939;
  --bg-main: #0a0a0a;
  --bg-secondary: #151515;
  --text-main: #ffffff;
  --text-muted: #8a8f99;
  --text-light: #d2d6dd;
  --color-shadow: rgba(20, 161, 255, 0.56);
  --font-sans: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", sans-serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --space-0: 0px; --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-5: 20px; --space-6: 24px; --space-8: 32px;
  --space-10: 40px; --space-12: 48px; --space-16: 64px; --space-20: 80px;
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
  --radius-xl: 30px; --radius-full: 9999px;
  --ease-fast: 0.15s ease-in-out;
  --ease: 0.3s ease-in-out;
  --ease-slow: 0.5s ease-in-out;
  --form-bg: var(--bg-secondary);
  --form-bg-input: #0d0d0d;
  --form-border: rgba(100, 120, 160, 0.35);
  --form-border-hover: rgba(20, 160, 255, 0.5);
  --form-placeholder: var(--text-muted);
  --form-text: var(--text-main);
  --form-focus-ring: rgba(20, 160, 255, 0.2);
  --form-radius: var(--radius-sm);
  --form-padding: 10px 14px;
  --form-font-size: var(--fs-sm);
  --z-50: 50; --z-modal: 1000;
  --shadow-primary: 0 0 20px var(--color-shadow);
  --shadow-accent: 0 0 20px rgba(249, 6, 63, 0.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; height: 100%; }
body { margin: 0; padding: 0; height: 100%; font-family: var(--font-sans); color: var(--text-main); background-color: var(--bg-main); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: 500; line-height: 1.2; }
p { margin: 0; }
ul, ol, li { list-style: none; margin: 0; padding: 0; }
a { color: var(--color-primary); text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── LAYOUT ── */
.wrapper { position: relative; z-index: 1; width: 100%; height: 100%; overflow: hidden; }
.promo-shell { background: transparent; }
.section-banner { position: relative; width: 100%; height: 100%; overflow: hidden; }

/* ── HERO ── */
.promo-page { background: #070c12; }

.promo-hero {
  --_d: 6 10 16;
  position: relative;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.95);
  z-index: 0;
}

.promo-girls {
  position: absolute;
  top: 0;
  left: 0;
  height: 100dvh;
  object-fit: cover;
  object-position: left center;
  z-index: 1;
  pointer-events: none;
}

.promo-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgb(var(--_d) / 0.16) 0%, rgb(var(--_d) / 0.22) 34%, rgb(var(--_d) / 0.78) 60%, rgb(var(--_d) / 0.97) 100%),
    radial-gradient(circle at 75% 60%, rgb(20 160 255 / 0.2), transparent 40%);
}

.promo-content {
  position: relative;
  z-index: 3;
  margin-left: auto;
  min-height: 100dvh;
  min-width: 500px;
  justify-content: center !important;
  align-items: center;
  margin-right: 7vw;
}

.promo-logo {
  width: clamp(130px, 10vw, 184px);
  height: auto;
  margin-bottom: 50px;
}

.promo-copy { text-align: center; gap: 2px; width: 100%; }

.promo-title {
  font-size: 90px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  transform: skewX(-9deg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.promo-subtitle {
  font-size: 50px;
  line-height: 0.94;
  font-style: italic;
  white-space: nowrap;
  max-width: none;
}

.promo-bonus {
  font-size: 90px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-shadow: 0 0 24px rgba(20, 160, 255, 0.18);
}

.anim-title  { animation: floating 4s ease-in-out infinite alternate; }
.anim-subtitle { animation: floating 4.6s ease-in-out infinite alternate; animation-delay: 0.4s; }
.anim-bonus  { animation: floatingBig 3.8s ease-in-out infinite alternate; animation-delay: 0.8s; }

.promo-form {
  text-align: left !important;
  width: 95%;
  margin: clamp(20px, 2.4vw, 34px) auto 0;
  padding: 25px;
  border: 2px solid rgba(236, 240, 247, 0.92);
  border-radius: 28px;
  background: rgba(23, 20, 25, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 14px 30px rgba(0, 0, 0, 0.32);
}

.promo-form input {
  min-height: 46px;
  padding: 14px 22px;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 3px solid rgba(236, 240, 247, 0.84);
  background: rgba(27, 23, 29, 0.96);
  color: #ffffff;
  width: 100%;
  outline: none;
  transition: border-color var(--ease-fast);
}

.promo-form input::placeholder { color: var(--text-muted); }
.promo-form input:focus { border-color: var(--color-primary); }

.promo-submit {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff4d8;
  line-height: 1;
  background: #1565c0;
  border-color: #1565c0;
  border-radius: var(--radius-full);
  text-shadow: 0 1px 0 #0a3a7a;
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(21, 101, 192, 0.4);
}
.promo-submit:hover {
  color: #ffffff;
  background: #1976d2;
  border-color: #1976d2;
  box-shadow: inset 0 -8px 14px rgba(0, 0, 0, 0.14);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-6);
  height: 48px;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  user-select: none;
}
.btn:disabled, .btn.is-disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn-2xl { height: 50px; padding: 0 var(--space-12); font-size: var(--fs-2xl); }
.btn-block { display: flex; width: 100%; }
.btn-primary { background-color: var(--color-primary); color: #ffffff; border-color: var(--color-primary); }
.btn-primary:hover { background-color: #0080e0; border-color: #0080e0; transform: translateY(-2px); box-shadow: 0 6px 20px var(--color-shadow); }

.btn-gradient-hover {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(90deg, #f9063f, #f9063f46, #f9063f46, #f9063f);
  box-shadow: 0 -10px 8px 0 rgba(0,0,0,0.25) inset, 0 0 20px 0 rgba(255,255,255,0.59);
  background-size: 400%;
  border-radius: var(--radius-full);
  z-index: 1;
  animation: animateGradient 18s linear infinite;
  transition: var(--ease);
  height: 65px;
}
.btn-gradient-hover:hover { animation: animateGradient 8s linear infinite; }
.btn-gradient-hover::before {
  content: "";
  position: absolute;
  top: -5px; right: -5px; bottom: -5px; left: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #f9063f46, #f9063f, #f9063f, #f9063f46);
  background-size: 400%;
  border-radius: var(--radius-xl);
  opacity: 0;
  transition: var(--ease-slow);
}
.btn-gradient-hover:hover::before { filter: blur(20px); opacity: 1; animation: animateGradient 8s linear infinite; }
.btn-gradient-hover:disabled { opacity: 0.5; cursor: not-allowed; animation: none; }

.btn-close {
  padding: 0;
  background: transparent;
  position: absolute;
  right: -55px;
  top: -70px;
  width: 50px;
  height: 60px;
  border: none;
  cursor: pointer;
}

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: var(--space-2); width: 100%; }
.form-label { font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); }
.inpt-group { width: 100%; }

.form.tg-list {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
}
.form.tg-list .form-group { width: 100%; margin-bottom: var(--space-5); }
.form.tg-list .form-group label { font-size: var(--fs-lg); color: var(--text-muted); }
.form.tg-list input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-lg);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  height: 65px;
  background: rgba(10, 10, 10, 0.6);
  color: var(--text-main);
  outline: none;
  transition: border-color var(--ease-fast);
}
.form.tg-list input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(249, 6, 63, 0.2); }

.text-error { color: var(--color-error); font-size: 12px; margin-top: 2px; }
.text-success { color: var(--color-success); font-size: 12px; margin-top: 2px; }

/* ── POPUPS ── */
.code-popup {
  position: fixed;
  z-index: 11111;
  left: 0; top: 0;
  background: rgba(5, 15, 40, 0.78);
  width: 100%; height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}
.code-popup-item { max-width: 460px; width: 100%; }

.code-popup .social-list {
  background: #ffffff !important;
  border: 2px solid #5bb8e8 !important;
  color: #0a1628 !important;
  box-shadow: 0 8px 32px rgba(58, 159, 212, 0.25);
}
.code-popup .form-label { color: #0a1628 !important; font-weight: 600; }
.code-popup .form-input {
  border: 2px solid #a8d8f0 !important;
  background: #f0f8ff !important;
  color: #0a1628 !important;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-xl);
  outline: none;
  font-size: 18px;
  font-family: inherit;
  min-height: 52px;
  transition: border-color var(--ease-fast);
}
.code-popup .form-input:focus { border-color: #3a9fd4 !important; box-shadow: 0 0 0 3px rgba(58, 159, 212, 0.2) !important; }
.code-popup .form-input:disabled { opacity: 0.6; }

.code-popup .btn-gradient-hover { background: linear-gradient(135deg, #3a9fd4, #5bb8e8) !important; color: #ffffff !important; border: none !important; width: 100% !important; animation: none !important; }
.code-popup .btn-gradient-hover:disabled { opacity: 0.5; cursor: not-allowed; }
.code-popup .btn-close { color: #5bb8e8 !important; }

.after-poppup-success, .after-poppup-error {
  position: fixed;
  z-index: 11111;
  left: 0; top: 0;
  background: rgba(5, 15, 40, 0.78);
  width: 100%; height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}
.after-poppup-success .social-list { border: 2px solid #5bb8e8 !important; background: #ffffff !important; color: #0a1628 !important; }
.after-poppup-success .btn-gradient-hover { background: linear-gradient(135deg, #3a9fd4, #5bb8e8) !important; animation: none !important; }

.btn-after-popup {
  width: fit-content;
  padding: 10px 50px;
  border: 2px solid #3a9fd4;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(135deg, #3a9fd4, #5bb8e8);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-after-popup:hover { background: linear-gradient(135deg, #2980b9, #3a9fd4); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(58,159,212,0.4); }
.btn-after-popup.btn-error { background: linear-gradient(135deg, #c0392b, #e74c3c); border-color: #e74c3c; }

.popup-wrapper {
  position: fixed;
  inset: 0;
  z-index: 11111;
  backdrop-filter: blur(10px);
  background: rgba(5, 15, 40, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* social-list (popup card) */
.social-list {
  display: flex;
  gap: 25px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 45px 20px;
  width: fit-content;
  position: relative;
  z-index: 111;
  border-radius: 28px;
  border: 2.5px solid #F9063F;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(46px);
}

/* ── APP STORE BUTTONS ── */
.market-btn {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  padding-left: 2.8125rem;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out, transform 0.2s ease-in-out;
  border: 1px solid #e7e7e7;
  background-position: center left 0.75rem;
  background-color: #fff;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
}
.market-btn .market-button-title { display: block; color: #222; font-size: 1.125rem; }
.market-btn .market-button-subtitle { display: block; margin-bottom: -0.25rem; color: #888; font-size: 0.75rem; }
.market-btn:hover { background-color: #f7f7f7 !important; transform: scale(1.05); }
.market-btn:active { transform: scale(0.95); }
.apple-btn { background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCAzMDUgMzA1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMDUgMzA1OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnIGlkPSJYTUxJRF8yMjhfIj4KCTxwYXRoIGlkPSJYTUxJRF8yMjlfIiBkPSJNNDAuNzM4LDExMi4xMTljLTI1Ljc4NSw0NC43NDUtOS4zOTMsMTEyLjY0OCwxOS4xMjEsMTUzLjgyQzc0LjA5MiwyODYuNTIzLDg4LjUwMiwzMDUsMTA4LjIzOSwzMDUgICBjMC4zNzIsMCwwLjc0NS0wLjAwNywxLjEyNy0wLjAyMmM5LjI3My0wLjM3LDE1Ljk3NC0zLjIyNSwyMi40NTMtNS45ODRjNy4yNzQtMy4xLDE0Ljc5Ny02LjMwNSwyNi41OTctNi4zMDUgICBjMTEuMjI2LDAsMTguMzksMy4xMDEsMjUuMzE4LDYuMDk5YzYuODI4LDIuOTU0LDEzLjg2MSw2LjAxLDI0LjI1Myw1LjgxNWMyMi4yMzItMC40MTQsMzUuODgyLTIwLjM1Miw0Ny45MjUtMzcuOTQxICAgYzEyLjU2Ny0xOC4zNjUsMTguODcxLTM2LjE5NiwyMC45OTgtNDMuMDFsMC4wODYtMC4yNzFjMC40MDUtMS4yMTEtMC4xNjctMi41MzMtMS4zMjgtMy4wNjZjLTAuMDMyLTAuMDE1LTAuMTUtMC4wNjQtMC4xODMtMC4wNzggICBjLTMuOTE1LTEuNjAxLTM4LjI1Ny0xNi44MzYtMzguNjE4LTU4LjM2Yy0wLjMzNS0zMy43MzYsMjUuNzYzLTUxLjYwMSwzMC45OTctNTQuODM5bDAuMjQ0LTAuMTUyICAgYzAuNTY3LTAuMzY1LDAuOTYyLTAuOTQ0LDEuMDk2LTEuNjA2YzAuMTM0LTAuNjYxLTAuMDA2LTEuMzQ5LTAuMzg2LTEuOTA1Yy0xOC4wMTQtMjYuMzYyLTQ1LjYyNC0zMC4zMzUtNTYuNzQtMzAuODEzICAgYy0xLjYxMy0wLjE2MS0zLjI3OC0wLjI0Mi00Ljk1LTAuMjQyYy0xMy4wNTYsMC0yNS41NjMsNC45MzEtMzUuNjExLDguODkzYy02LjkzNiwyLjczNS0xMi45MjcsNS4wOTctMTcuMDU5LDUuMDk3ICAgYy00LjY0MywwLTEwLjY2OC0yLjM5MS0xNy42NDUtNS4xNTljLTkuMzMtMy43MDMtMTkuOTA1LTcuODk5LTMxLjEtNy44OTljLTAuMjY3LDAtMC41MywwLjAwMy0wLjc4OSwwLjAwOCAgIEM3OC44OTQsNzMuNjQzLDU0LjI5OCw4OC41MzUsNDAuNzM4LDExMi4xMTl6IiBmaWxsPSIjMmUyZTJlIi8+Cgk8cGF0aCBpZD0iWE1MSURfMjMwXyIgZD0iTTIxMi4xMDEsMC4wMDJjLTE1Ljc2MywwLjY0Mi0zNC42NzIsMTAuMzQ1LTQ1Ljk3NCwyMy41ODNjLTkuNjA1LDExLjEyNy0xOC45ODgsMjkuNjc5LTE2LjUxNiw0OC4zNzkgICBjMC4xNTUsMS4xNywxLjEwNywyLjA3MywyLjI4NCwyLjE2NGMxLjA2NCwwLjA4MywyLjE1LDAuMTI1LDMuMjMyLDAuMTI2YzE1LjQxMywwLDMyLjA0LTguNTI3LDQzLjM5NS0yMi4yNTcgICBjMTEuOTUxLTE0LjQ5OCwxNy45OTQtMzMuMTA0LDE2LjE2Ni00OS43N0MyMTQuNTQ0LDAuOTIxLDIxMy4zOTUtMC4wNDksMjEyLjEwMSwwLjAwMnoiIGZpbGw9IiMyZTJlMmUiLz4KPC9nPgo8L3N2Zz4K); }
.google-btn { background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTkuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjUxMnB4IiBoZWlnaHQ9IjUxMnB4Ij4KPHBvbHlnb24gc3R5bGU9ImZpbGw6IzVDREFERDsiIHBvaW50cz0iMjkuNTMsMCAyOS41MywyNTEuNTA5IDI5LjUzLDUxMiAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNCREVDQzQ7IiBwb2ludHM9IjM2OS4wNjcsMTgwLjU0NyAyNjIuMTc1LDExOS40NjcgMjkuNTMsMCAyOTkuMDA0LDI1MS41MDkgIi8+Cjxwb2x5Z29uIHN0eWxlPSJmaWxsOiNEQzY4QTE7IiBwb2ludHM9IjI5LjUzLDUxMiAyOS41Myw1MTIgMjYyLjE3NSwzODMuNTUxIDM2OS4wNjcsMzIyLjQ3IDI5OS4wMDQsMjUxLjUwOSAiLz4KPHBhdGggc3R5bGU9ImZpbGw6I0ZGQ0E5NjsiIGQ9Ik0zNjkuMDY3LDE4MC41NDdsLTcwLjA2Myw3MC45NjFsNzAuMDYzLDcwLjk2MWwxMDguNjg4LTYyLjg3N2M2LjI4OC0zLjU5Myw2LjI4OC0xMS42NzcsMC0xNS4yNyAgTDM2OS4wNjcsMTgwLjU0N3oiLz4KPC9zdmc+Cg==); }

@media (max-width: 500px) {
  .market-btn { padding: 0.25rem 0.75rem; padding-left: 2.25rem; }
  .market-btn .market-button-title { font-size: 5vw; }
  .market-btn .market-button-subtitle { font-size: 3vw; }
}

/* ── ANIMATIONS ── */
@keyframes floating {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes floatingBig {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
@keyframes animateGradient {
  0%   { background-position: 0%; }
  100% { background-position: 400%; }
}

/* ── GRADIENTS ── */
.text-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 60%, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── UTILITIES ── */
.d-flex { display: flex !important; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-col-center { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.gap-2 { gap: var(--space-2) !important; }
.gap-3 { gap: var(--space-3) !important; }
.m-0 { margin: 0 !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mt-md { margin-top: var(--space-2) !important; }
.mb-4 { margin-bottom: var(--space-4) !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.left-0 { left: 0 !important; }
.right-0 { right: 0 !important; }
.bottom-0 { bottom: 0 !important; }
.z-50 { z-index: var(--z-50) !important; }
.text-center { text-align: center !important; }
.text-white { color: #ffffff !important; }
.font-black { font-weight: 900 !important; }
.text-pretty { text-wrap: pretty !important; }
.text-upper { text-transform: uppercase !important; }
.opacity-0 { opacity: 0 !important; }
.opacity-1 { opacity: 1 !important; }
.transition-all { transition: all 0.3s ease !important; }
.button-wrapp { width: 100%; }
.store-wrapper-buttons { display: flex; gap: 8px; position: absolute; left: 0; right: 0; bottom: 0; justify-content: center; margin-bottom: 16px; z-index: 50; }

/* ── DISCLAIMER ── */
.promo-disclaimer {
  font-size: clamp(10px, 0.75vw, 13px);
  line-height: 1.5;
  color: white;
  margin: 0;
}

.promo-disclaimer--desktop {
  position: absolute;
  bottom: clamp(16px, 2.5vh, 32px);
  left: clamp(16px, 3vw, 50px);
  width: clamp(280px, 38%, 520px);
  z-index: 4;
  font-size: clamp(16px, 1.1vw, 20px);
  text-align: center;
  background: rgba(6, 10, 16, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 16px;
}

.promo-disclaimer--mobile {
  display: none;
}

/* ── MOBILE ── */
@media (max-width: 1199.98px) {
  .promo-girls { width: 52%; object-position: 22% center; }

  .promo-content {
    width: min(100%, 520px);
    min-width: 0;
    padding-top: 24px;
    background: linear-gradient(90deg, rgba(8,12,16,0.08) 0%, rgba(8,12,16,0.72) 36%, rgba(8,12,16,0.92) 100%);
  }

  .promo-form input { min-height: 40px; font-size: clamp(20px, 4vw, 32px); }
  .promo-submit { height: 50px; font-size: clamp(30px, 6vw, 40px); }
}

@media (max-width: 1199.98px) {
  .promo-hero { justify-content: stretch; }
  .promo-bg { object-position: center center; filter: none; }
  .promo-girls { display: none; }

  .promo-veil {
    background: linear-gradient(180deg, rgb(var(--_d) / 0.25) 0%, rgb(var(--_d) / 0.08) 40%, rgb(var(--_d) / 0.55) 80%, rgb(var(--_d) / 0.82) 100%);
  }

  .promo-content {
    width: 100%;
    min-height: 100dvh;
    justify-content: space-between !important;
    align-items: stretch;
    padding: 14px 20px 26px;
    background: none;
    margin-right: auto;
  }

  .promo-logo { width: 130px; margin: 0 auto; }

  .promo-copy {
    margin-bottom: 7vh;
    gap: 6px;
    justify-content: end;
    padding: 20px 14px 0;
    border-radius: 20px;
    background: rgba(8, 12, 16, 0.28);
    backdrop-filter: blur(2px);
  }

  .promo-title { font-size: clamp(47px, 9vw, 84px); }
  .promo-subtitle { font-size: clamp(23px, 6vw, 42px); white-space: nowrap; max-width: none; }
  .promo-bonus { font-size: clamp(41px, 9vw, 76px); }

  .promo-form { margin-top: 0; padding: 20px 16px; border-width: 2px; border-radius: 24px; }
  .promo-form input { min-height: 40px; font-size: 16px; border-width: 2px; padding: 8px 18px; }
  .promo-submit { height: 44px; font-size: 26px; }

  .promo-disclaimer--desktop { display: none; }

  .promo-disclaimer--mobile {
    display: block;
    font-size: clamp(10px, 3vw, 13px);
   color: white;
    margin-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .promo-form {
    margin-left: auto;
    margin-right: auto;
    width: 50vw;
    margin-top: 0;
    margin-bottom: 20px;
    padding: 20px 16px;
    border-width: 2px;
    border-radius: 24px;
  }
  .promo-bg { object-position: center 15%; }
}

/* MODALS */
.promo-modal-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(20, 160, 255, 0.22), transparent 44%),
    linear-gradient(150deg, rgba(5, 16, 36, 0.72), rgba(10, 21, 40, 0.88));
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.promo-modal {
  background: linear-gradient(180deg, rgba(11, 20, 35, 0.98), rgba(8, 16, 30, 0.98));
  color: #f4faff;
  border-radius: 16px;
  padding: 24px;
  width: min(400px, 92vw);
  border: 1px solid rgba(20, 160, 255, 0.42);
  box-shadow: 0 20px 46px rgba(3, 11, 27, 0.55), 0 0 22px rgba(20, 160, 255, 0.2);
}

.promo-modal .btn-outline {
  background: rgba(20, 160, 255, 0.14);
  color: #dff2ff;
  border: 1px solid rgba(20, 160, 255, 0.4);
}

.promo-modal .btn-outline:hover {
  background: rgba(20, 160, 255, 0.24);
}
