@import url(/static/css/reset.css);
@import url(d_modal.css?newww2);

:root {
  --bg-color-gradient: linear-gradient(90deg, #ff9a8b 0%, #ff6b88 52%, #ff98ab 100%);
  --text-primary: #ffffff;
  --btn-bg: #ffffff;
  --btn-text-gradient: linear-gradient(90deg, #ff9a8b 0%, #ff6b88 52%, #ff98ab 100%);
  --mobile-menu-bg: #ffffff;
  --btn-shadow: 0 0 31px -3px rgba(0, 0, 0, 0.36);
  --footer-text: rgba(255, 255, 255, 0.76);
  --footer-link: rgba(255, 255, 255, 0.88);
  --footer-link-hover: #ffffff;
  --footer-shadow: 0 1px 8px rgba(169, 46, 88, 0.32);
  --footer-badge-text: rgba(255, 255, 255, 0.86);
  --footer-badge-bg: rgba(255, 255, 255, 0.14);
  --footer-badge-border: rgba(255, 255, 255, 0.34);
  --sr-banner-bg: linear-gradient(135deg, #2a1333 0%, #4c1f52 38%, #82316f 72%, #b8447f 100%);
  --sr-banner-border: rgba(255, 255, 255, 0.16);
  --sr-title: #ffffff;
  --sr-text: rgba(255, 255, 255, 0.82);
  --sr-accent: #ff8fd0;
  --sr-accent-2: #c98bff;
  --sr-link-bg: rgba(255, 255, 255, 0.68);
  --sr-countdown-bg: rgba(255, 255, 255, 0.09);
  --sr-countdown-border: rgba(255, 255, 255, 0.22);
  --sr-shadow: 0 20px 50px -22px rgba(120, 20, 90, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --sr-glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 44px rgba(200, 90, 220, 0.32);
  --sr-chip-bg: #ffffff;
  --sr-chip-text: #4c1f52;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color-gradient: #0f0c1d; 
    --text-primary: #e1e1e6;
    --btn-bg: #1e1e20; 
    --btn-text-gradient: linear-gradient(90deg, #da85f3 0%, #da85f3 100%);
    --btn-shadow: 0 0 45px -5px rgba(218, 133, 243, 0.4);
    --mobile-menu-bg: #1e1e20;
    --footer-text: rgba(225, 225, 230, 0.58);
    --footer-link: rgba(225, 225, 230, 0.72);
    --footer-link-hover: #e9d4f1;
    --footer-shadow: none;
    --footer-badge-text: rgba(233, 212, 241, 0.82);
    --footer-badge-bg: rgba(218, 133, 243, 0.08);
    --footer-badge-border: rgba(218, 133, 243, 0.26);
  }
}

@font-face {
  font-family: "Montserrat";
  src: url(/static/fonts/Montserrat-VariableFont_wght.ttf) format("truetype");
  font-style: normal;
}

@font-face {
  font-family: "Highrise";
  src: url(/static/sr_promo/fonts/HighriseFont-Condensed-Demo.otf) format("opentype");
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: "Montserrat";
  background: var(--bg-color-gradient);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  transition: background 0.3s ease;
}

header {
  position: relative;
  z-index: 3;
  width: calc(100% - 20px);
  background: var(--bg-color-gradient);
  margin: 10px;
  padding: 20px 0;
  border-radius: 25px;
  transition: background 0.3s ease;
}

header .header-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 30px;
  max-width: 80%;
  margin: 0 auto;
}

header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header .logo img {
  max-width: 100%;
  height: auto;
}

header .header-list ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

header .header-list ul li {
  position: relative;
  cursor: pointer;
  padding: 5px 0;
}

header .header-list ul li::after {
  content: "";
  height: 2px;
  width: 0;
  background: var(--text-primary);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.5s, background 0.3s ease;
}

header .header-list ul li:hover::after {
  width: 100%;
}

header .header-icons {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

header .header-icons img {
  height: 30px;
  cursor: pointer;
}

header .burger-menu {
  display: none;
}

header .mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  header .header-container {
    grid-template-columns: 1fr 1fr;
  }
  header .header-list {
    display: none;
  }
  header .header-icons {
    display: none;
  }
  header .burger-menu {
    display: flex;
    justify-content: flex-end;
    height: 40px;
  }
  header .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: var(--mobile-menu-bg);
    z-index: 9999;
    padding: 20px;
    text-align: center;
    transition: background 0.3s ease;
  }
  header .mobile-menu .close-btn {
    text-align: end;
  }
  header .mobile-menu a {
    background: var(--btn-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  header .mobile-menu .mobile-list {
    display: grid;
    justify-content: center;
    gap: 3rem;
    font-weight: 700;
    margin-top: 5rem;
    font-size: 1.5rem;
  }
  header .mobile-menu .lang-switch {
    width: 80vw;
    font-size: 1rem;
  }
}

main {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

main .banner {
  width: 100%;
  height: auto;
  display: grid;
  gap: 13px;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

main .banner .banner-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 55px -28px rgba(0, 0, 0, 0.65);
}

main .banner .banner-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(12, 9, 24, 0.82), rgba(12, 9, 24, 0));
  pointer-events: none;
}

main .banner .banner-img {
  display: block;
  width: 100%;
  border-radius: 25px;
}

main .banner .banner-event {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  text-align: left;
  color: #ffffff;
}

main .banner .banner-event-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

main .banner .banner-event-badge {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #151020;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

main .banner .banner-event-title {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

main .banner .banner-event p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

main .banner .sukarise-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 104px;
  padding: 16px 22px;
  overflow: hidden;
  border: 1px solid var(--sr-banner-border);
  border-radius: 18px;
  background: var(--sr-banner-bg);
  box-shadow: var(--sr-shadow), var(--sr-glow);
  box-sizing: border-box;
  text-decoration: none;
  color: var(--sr-text);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

main .banner .sukarise-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 47%, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px),
    radial-gradient(circle at 77% 30%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px);
  opacity: 0.7;
  pointer-events: none;
}

main .banner .sukarise-shine {
  position: absolute;
  top: -60%;
  left: -35%;
  width: 38%;
  height: 220%;
  z-index: 1;
  background: linear-gradient(75deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.22) 55%, transparent 100%);
  transform: translateX(-140%) rotate(8deg);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

main .banner .sukarise-banner:hover .sukarise-shine {
  transform: translateX(340%) rotate(8deg);
}

main .banner .sukarise-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 30px 60px -24px rgba(120, 20, 90, 0.78), 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 55px rgba(210, 110, 230, 0.4);
}

main .banner .sukarise-logo-card {
  position: relative;
  z-index: 2;
  flex: none;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 6px;
  border-radius: 14px;
  background: #17101c;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 12px 24px -14px rgba(0, 0, 0, 0.75);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

main .banner .sukarise-banner:hover .sukarise-logo-card {
  transform: rotate(-4deg) scale(1.06);
}

main .banner .sukarise-logo-card span {
  display: none;
}

main .banner .sukarise-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

main .banner .sukarise-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3px;
  min-width: 0;
  flex: 1 1 auto;
  padding-right: 118px;
  text-align: left;
  font-weight: 800;
  line-height: 1.2;
}

main .banner .sukarise-title,
main .banner .sukarise-subtitle {
  display: block;
  color: var(--sr-title);
  font-size: 0.86rem;
  letter-spacing: 0;
}

main .banner .sukarise-subtitle {
  color: var(--sr-text);
  font-weight: 700;
}

main .banner .sukarise-title b {
  background: linear-gradient(90deg, var(--sr-accent-2), var(--sr-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

main .banner .sukarise-countdown {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  margin-top: 8px;
  padding: 6px 13px;
  border: 1px solid var(--sr-countdown-border);
  border-radius: 999px;
  background: var(--sr-countdown-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

main .banner .sukarise-countdown-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sr-accent);
  animation: srPulse 1.8s ease-out infinite;
}

@keyframes srPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 143, 208, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(255, 143, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 143, 208, 0); }
}

main .banner .sukarise-countdown-label {
  color: var(--sr-text);
  opacity: 0.85;
  order: 2;
}

main .banner .sukarise-countdown-value {
  color: var(--sr-title);
  font-size: 0.82rem;
  order: 1;
}

main .banner .sukarise-countdown.is-live .sukarise-countdown-value {
  color: var(--sr-accent);
}

main .banner .sukarise-countdown.is-live .sukarise-countdown-dot {
  background: #3ee08a;
  animation: none;
  box-shadow: 0 0 8px 2px rgba(62, 224, 138, 0.6);
}

main .banner .sukarise-hint {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--sr-chip-bg);
  color: var(--sr-chip-text);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  box-shadow: 0 10px 22px -12px rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

main .banner .sukarise-banner:hover .sukarise-hint {
  opacity: 1;
  transform: translateX(0);
}

main .banner .sukarise-characters {
  position: absolute;
  right: -6px;
  bottom: -20px;
  z-index: 1;
  width: 220px;
  max-width: 46%;
  height: 145%;
  pointer-events: none;
  transform-origin: right bottom;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 100%);
}

main .banner .sukarise-banner:hover .sukarise-characters {
  transform: scale(1.05) translateY(-2px);
}

main .banner .sukarise-characters::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(42, 19, 51, 0.75), transparent);
}

main .banner .sukarise-characters img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

@media (prefers-color-scheme: dark) {
    main .banner .banner-img {
        filter: brightness(0.9);
    }
}

main p {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary);
  text-align: center;
  margin: 13px 0 0;
  transition: color 0.3s ease;
}

main .main_btn {
  border-radius: 28px;
  background: var(--btn-bg);
  padding: 1.05rem 3.15rem;
  margin-top: 20px;
  box-shadow: var(--btn-shadow);
  transition: 0.5s, background 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

main .main_btn span {
  background: var(--btn-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
  font-size: 1.75rem;
}

main .main_btn:hover {
  transform: scale(1.03);
}

@media (max-width: 800px) {
  main {
    top: 51.5%;
    max-width: 560px;
  }

  main h1 {
    font-size: 4rem;
  }
  main p {
    font-size: 0.72rem;
    line-height: 1.35;
  }
  main .banner .banner-card {
    width: 100%;
  }
  main .banner .sukarise-banner {
    width: 100%;
    min-height: 100px;
    padding: 14px 16px;
    gap: 12px;
  }
  main .banner .sukarise-logo-card {
    width: 46px;
    height: 46px;
  }
  main .banner .sukarise-copy {
    padding-right: 86px;
  }
  main .banner .sukarise-title,
  main .banner .sukarise-subtitle {
    font-size: 0.72rem;
    line-height: 1.2;
  }
  main .banner .sukarise-countdown {
    margin-top: 6px;
    padding: 5px 10px;
    font-size: 0.6rem;
  }
  main .banner .sukarise-countdown-value {
    font-size: 0.72rem;
  }
  main .banner .sukarise-hint {
    display: none;
  }
  main .banner .sukarise-characters {
    right: -16px;
    bottom: -12px;
    width: 150px;
    max-width: 42%;
    height: 135%;
  }
  main .banner .banner-event {
    left: 14px;
    right: 14px;
    bottom: 10px;
  }
  main .banner .banner-event-head {
    gap: 6px;
    margin-bottom: 3px;
  }
  main .banner .banner-event-badge {
    padding: 4px 8px;
    font-size: 0.52rem;
  }
  main .banner .banner-event-title {
    font-size: 0.7rem;
  }
  main .banner .banner-event p {
    font-size: 0.56rem;
    line-height: 1.25;
  }
}

@media (max-width: 1280px) {
  main .main_btn {
    margin-top: 24px;
  }
  main .main_btn #buttonText {
    font-size: 1.5rem;
  }
  main .banner-text {
    font-size: 0.8rem;
  }
}

@media (max-height: 850px) and (min-width: 801px) {
  main {
    top: 52%;
    max-width: 620px;
  }

  main .banner {
    gap: 12px;
  }

  main .banner .sukarise-banner {
    min-height: 86px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  main .banner .sukarise-logo-card {
    width: 48px;
    height: 48px;
  }

  main .banner .sukarise-title,
  main .banner .sukarise-subtitle {
    font-size: 0.76rem;
  }

  main .banner .sukarise-countdown {
    margin-top: 5px;
    font-size: 0.62rem;
  }

  main .banner .sukarise-countdown-value {
    font-size: 0.76rem;
  }

  main p {
    font-size: 0.9rem;
    margin-top: 12px;
  }

  main .main_btn {
    padding: 0.95rem 2.9rem;
    margin-top: 18px;
  }

  main .main_btn span {
    font-size: 1.6rem;
  }
}

 .nav-launcher {
        background: rgba(255,255,255,0.22);
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        color: #fff !important;
        -webkit-text-fill-color: #fff !important;
        transition: background 0.25s;
    }
    .nav-launcher:hover {
        background: rgba(255,255,255,0.35);
    }
    @media (prefers-color-scheme: dark) {
        .nav-launcher {
            background: rgba(255,255,255,0.08);
        }
        .nav-launcher:hover {
            background: rgba(255,255,255,0.14);
        }
    }

.site-footer {
  position: absolute;
  bottom: 0;
  text-align: center !important;
  width: 100%;
  padding: 0 18px 30px;
  box-sizing: border-box;
  color: var(--footer-text);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  text-shadow: var(--footer-shadow);
}

.site-footer a {
  color: var(--footer-link);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.footer-legal {
  max-width: 960px;
  margin: 0 auto;
}

.footer-legal > span:first-child {
  margin-right: 12px;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border: 1px solid var(--footer-badge-border);
  border-radius: 50%;
  background: var(--footer-badge-bg);
  color: var(--footer-badge-text);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: middle;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-separator {
  color: var(--footer-text);
  opacity: 0.7;
}

@media (max-width: 1280px) {
  .site-footer {
    height: auto;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding-bottom: 18px;
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .footer-links {
    gap: 5px 8px;
  }
}