@charset "utf-8";

:root {
  --bg: #08060d;
  --surface: rgba(18, 16, 27, 0.76);
  --surface-strong: rgba(23, 20, 34, 0.94);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f8f5f0;
  --muted: #a9a4b3;
  --orange: #ff8a32;
  --orange-light: #ffc470;
  --pink: #f05da8;
  --green: #8ae7aa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
.hero__eyebrow,
.section-kicker,
.brand-card__label,
.brand-card__number,
.brand-card__status,
footer p:first-child {
  cursor: default;
  user-select: none;
}

.site {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 3, 9, 0.24) 0%, rgba(8, 6, 13, 0.74) 40%, #08060d 72%),
    url("../img/bg.jpg") center top / max(100%, 1500px) auto no-repeat;
}

.site::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.site::after {
  position: fixed;
  z-index: 10;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  pointer-events: none;
}

.ambient--one {
  top: 510px;
  left: -170px;
  width: 500px;
  height: 500px;
  background: #7d2092;
}

.ambient--two {
  top: 760px;
  right: -220px;
  width: 600px;
  height: 600px;
  background: #b84915;
}

.hero {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 640px;
  padding: 105px 24px 155px;
  text-align: center;
}

.hero__eyebrow,
.section-kicker,
.brand-card__label,
footer p:first-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  padding: 9px 15px;
  color: #ddd4ca;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  background: rgba(7, 5, 10, 0.42);
  backdrop-filter: blur(12px);
  animation: fade-up 0.75s ease-out both;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(138, 231, 170, 0.11), 0 0 14px var(--green);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.2vw, 88px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 5px 40px rgba(0, 0, 0, 0.5);
  animation: fade-up 0.85s 0.08s ease-out both;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 8%, #ffd09a 38%, #ff7b3f 65%, #f26ab1 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero__description {
  max-width: 580px;
  margin: 24px 0 0;
  color: #c8c1c6;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  animation: fade-up 0.85s 0.16s ease-out both;
}

.scroll-cue {
  position: relative;
  width: 26px;
  height: 42px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  animation: fade-up 0.85s 0.24s ease-out both;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: #fff;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 95px;
}

.domain-section {
  padding: 3px 0 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 29px;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--orange-light);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-note {
  max-width: 360px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-card {
  --accent: #ff8a32;
  position: relative;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 36%),
    linear-gradient(145deg, rgba(30, 27, 42, 0.9), rgba(13, 11, 19, 0.92));
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.brand-card::before {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  content: "";
  opacity: 0.85;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.brand-card::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px color-mix(in srgb, var(--accent) 3%, transparent),
    0 0 0 25px color-mix(in srgb, var(--accent) 10%, transparent);
  pointer-events: none;
}

.brand-card:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4), 0 0 50px color-mix(in srgb, var(--accent) 8%, transparent);
  transform: translateY(-7px);
}

.brand-card--vikbet {
  --accent: #f1599b;
}

.brand-card--vbet {
  --accent: #7d8cff;
}

.brand-card--luna {
  --accent: #c48cff;
}

.brand-card--volvik {
  --accent: #59c9bd;
}

.brand-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-card__number {
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.brand-card__status {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-card__status::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--green);
}

.brand-card__body {
  margin: 42px 0 30px;
}

.brand-card__label {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 9px;
}

.brand-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand-card__links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.brand-card__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #e8e4e8;
  background: rgba(255, 255, 255, 0.045);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.brand-card__links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  opacity: 0.45;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brand-card__links a:hover,
.brand-card__links a:focus-visible {
  color: #130e12;
  border-color: var(--accent);
  outline: none;
  background: var(--accent);
  transform: translateY(-2px);
}

.brand-card__links a:hover svg,
.brand-card__links a:focus-visible svg {
  opacity: 1;
  transform: translate(2px, -2px);
}

.login-notice {
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 23px 0 29px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

footer p {
  margin: 0;
}

footer p:first-child {
  font-size: 9px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  25% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 760px) {
  .site {
    background-size: auto 620px;
    background-position: 52% top;
  }

  .site::before {
    background-size: 48px 48px;
  }

  .hero {
    min-height: 570px;
    padding: 80px 20px 110px;
  }

  .hero__eyebrow {
    margin-bottom: 21px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 1.13;
  }

  .hero__description {
    max-width: 320px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .scroll-cue {
    margin-top: 34px;
  }

  .content {
    width: min(100% - 28px, 560px);
    padding-bottom: 65px;
  }

  .section-heading {
    display: block;
    margin-bottom: 22px;
  }

  .section-note {
    margin-top: 13px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand-card {
    min-height: 305px;
    padding: 21px;
    border-radius: 20px;
  }

  .brand-card__body {
    margin: 35px 0 27px;
  }

  .brand-card h3 {
    font-size: 42px;
  }

  .brand-card__links a {
    min-height: 55px;
    padding: 0 14px;
    font-size: 14px;
  }

  .login-notice {
    margin-top: 28px;
    font-size: 13px;
  }

  footer {
    display: block;
    width: calc(100% - 28px);
    padding: 20px 0 24px;
    line-height: 1.6;
    text-align: center;
  }

  footer p + p {
    margin-top: 7px;
  }
}

@media (max-width: 390px) {
  .brand-card__links {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 350px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
