/* ═══════════════════════════════════════════════
   VYHRAJ REGISTRÁCIA — Dark Auth Page
   Scoped to .vyhraj-registracia-page (loaded only on /registracia)
   ═══════════════════════════════════════════════ */

@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@500,700,800&f[]=satoshi@400,500,700&display=swap');

main:has(.vyhraj-registracia-page) {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.vyhraj-registracia-page *,
.vyhraj-registracia-page *::before,
.vyhraj-registracia-page *::after {
  box-sizing: border-box;
}

.vyhraj-registracia-page {
  font-family: "Satoshi", sans-serif;
  width: 100%;
  min-height: calc(100dvh - 4.2rem);
  background:
    radial-gradient(circle at 30% 10%, rgba(123, 47, 190, 0.18),
                    transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(245, 166, 35, 0.10),
                    transparent 30%),
    #0f1629;
  color: #eef3ff;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 630px) {
  .vyhraj-registracia-page {
    min-height: calc(100dvh - 7rem);
  }
}

.vyhraj-registracia-page .auth-shell {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: inherit;
}

@media (max-width: 860px) {
  .vyhraj-registracia-page .auth-shell {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════
   LEFT PANEL — purple/amber accent
   ════════════════════════════════════════════════ */
.vyhraj-registracia-page .auth-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 48px;
  background:
    radial-gradient(ellipse at 20% 20%,
      rgba(123, 47, 190, 0.22), transparent 55%),
    radial-gradient(ellipse at 85% 75%,
      rgba(245, 166, 35, 0.12), transparent 50%),
    #0c1220;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

@media (max-width: 860px) {
  .vyhraj-registracia-page .auth-left {
    display: none;
  }
}

.vyhraj-registracia-page .auth-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.vyhraj-registracia-page .auth-brand-logo {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.vyhraj-registracia-page .auth-brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.vyhraj-registracia-page .auth-brand-logo .accent {
  color: #f5a623;
}

.vyhraj-registracia-page .auth-left-content {
  position: relative;
  z-index: 1;
}

.vyhraj-registracia-page .auth-left-content h2 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.vyhraj-registracia-page .auth-left-content p {
  color: #9bacd3;
  font-size: 15px;
  line-height: 1.65;
  max-width: 38ch;
  margin-bottom: 32px;
}

.vyhraj-registracia-page .auth-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.vyhraj-registracia-page .auth-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #c0cef0;
}

.vyhraj-registracia-page .auth-features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: #ffd37a;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vyhraj-registracia-page .auth-features li.auth-features__item--jackpot {
  align-items: flex-start;
}

.vyhraj-registracia-page .auth-features li.auth-features__item--jackpot::before {
  content: "🎰";
  font-size: 12px;
  background: rgba(255, 195, 50, 0.12);
  border-color: rgba(255, 195, 50, 0.35);
  margin-top: 1px;
}

/* One flex child so links do not get gap:12px between every word */
.vyhraj-registracia-page .auth-features li .auth-features__text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.vyhraj-registracia-page .auth-features li.auth-features__item--jackpot strong {
  font-weight: 700;
  color: #eef3ff;
}

.vyhraj-registracia-page .auth-features a.auth-features__link {
  color: #6b96ff;
  font-weight: 600;
  text-decoration: underline;
}

.vyhraj-registracia-page .auth-features a.auth-features__link:hover {
  color: #fff;
}

/* Mobile: feature list below login link (left panel hidden ≤860px) */
.vyhraj-registracia-page .auth-mobile-features {
  display: none;
}

@media (max-width: 860px) {
  .vyhraj-registracia-page .auth-mobile-features {
    display: block;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.vyhraj-registracia-page .auth-left-footer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════
   RIGHT PANEL — form
   ════════════════════════════════════════════════ */
.vyhraj-registracia-page .auth-right {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 32px;
  background: #0f1629;
  overflow-y: auto;
}

.vyhraj-registracia-page .auth-form-wrap {
  width: 100%;
  max-width: 420px;
  padding-top: 20px;
  padding-bottom: 40px;
}

.vyhraj-registracia-page .auth-mobile-brand {
  display: none;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
}

.vyhraj-registracia-page .auth-mobile-brand img {
  height: 32px;
  width: auto;
}

@media (max-width: 860px) {
  .vyhraj-registracia-page .auth-mobile-brand {
    display: flex;
  }

  .vyhraj-registracia-page .auth-right {
    align-items: flex-start;
    padding-top: 32px;
  }
}

.vyhraj-registracia-page .auth-heading {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: #fff;
  margin-bottom: 6px;
}

.vyhraj-registracia-page .auth-subheading {
  color: #9bacd3;
  font-size: 14px;
  margin-bottom: 24px;
}

.vyhraj-registracia-page .auth-alert {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.vyhraj-registracia-page .auth-alert.error {
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ffa0a0;
}

.vyhraj-registracia-page .auth-alert.warning {
  background: rgba(245, 166, 35, 0.10);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: #ffd37a;
}

.vyhraj-registracia-page .auth-register-success-block {
  padding: 16px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  background: rgba(48, 196, 141, 0.12);
  border: 1px solid rgba(48, 196, 141, 0.3);
  color: #c0cef0;
  font-size: 14px;
  line-height: 1.5;
}

.vyhraj-registracia-page .auth-register-success-block h2 {
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #6ee7b7;
  margin: 0 0 10px;
}

.vyhraj-registracia-page .auth-register-success-block .auth-success-msg {
  color: #eef3ff;
  font-weight: 600;
  margin: 0 0 12px;
}

.vyhraj-registracia-page .auth-register-success-block hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 12px 0;
}

.vyhraj-registracia-page .auth-register-success-block .auth-success-footer {
  margin: 0;
  color: #9bacd3;
  font-size: 13px;
}

.vyhraj-registracia-page .auth-field {
  margin-bottom: 14px;
}

.vyhraj-registracia-page .auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9bacd3;
  margin-bottom: 7px;
}

.vyhraj-registracia-page .auth-field input[type="text"],
.vyhraj-registracia-page .auth-field input[type="email"],
.vyhraj-registracia-page .auth-field input[type="password"] {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: #eef3ff;
  font-size: 15px;
  font-family: "Satoshi", sans-serif;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.vyhraj-registracia-page .auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.vyhraj-registracia-page .auth-field input:focus {
  border-color: rgba(123, 47, 190, 0.55);
  background: rgba(123, 47, 190, 0.06);
  box-shadow: 0 0 0 3px rgba(123, 47, 190, 0.12);
}

.vyhraj-registracia-page .auth-field .field-hint {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
  display: block;
}

.vyhraj-registracia-page .auth-referral-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  margin-bottom: 14px;
  background: none;
  border: none;
  padding: 8px 0;
  font-family: "Satoshi", sans-serif;
  transition: color 0.15s;
}

.vyhraj-registracia-page .auth-referral-toggle:hover {
  color: rgba(255, 255, 255, 0.85);
}

.vyhraj-registracia-page .auth-recaptcha-wrap {
  margin: 16px 0;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 380px) {
  .vyhraj-registracia-page .auth-recaptcha-wrap {
    transform: scale(0.88);
    transform-origin: left center;
  }
}

.vyhraj-registracia-page #captchaError {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ffa0a0;
}

.vyhraj-registracia-page .btn-auth-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: #7b2fbe;
  color: #fff;
  font-family: "Cabinet Grotesk", sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: filter 0.15s, transform 0.15s;
  letter-spacing: 0.01em;
}

.vyhraj-registracia-page .btn-auth-submit:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

.vyhraj-registracia-page .btn-auth-submit:active {
  transform: translateY(0);
}

.vyhraj-registracia-page .auth-terms-row {
  margin-top: 16px;
  margin-bottom: 4px;
}

.vyhraj-registracia-page .auth-terms-row label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #9bacd3;
  line-height: 1.45;
  cursor: pointer;
}

.vyhraj-registracia-page .auth-terms-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #7b2fbe;
  cursor: pointer;
}

.vyhraj-registracia-page .auth-terms-row a {
  color: #6b96ff;
  text-decoration: underline;
}

.vyhraj-registracia-page .auth-terms-row a:hover {
  color: #fff;
}

.vyhraj-registracia-page .auth-login-row {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: #9bacd3;
}

.vyhraj-registracia-page .auth-login-row a {
  color: #6b96ff;
  font-weight: 700;
  text-decoration: none !important;
}

.vyhraj-registracia-page .auth-login-row a:hover {
  color: #fff;
}
