@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #050609;
  --bg-soft: #090b10;
  --panel: #101218;
  --panel-2: #151721;
  --line: rgba(255, 255, 255, .18);
  --line-strong: rgba(145, 105, 255, .52);
  --text: #f7f7fb;
  --muted: #9b9ca8;
  --blue: #1797ff;
  --violet: #7738ff;
  --purple: #b12cff;
  --gradient: linear-gradient(120deg, var(--blue), var(--violet) 55%, var(--purple));
  --shadow: 0 25px 70px rgba(0, 0, 0, .45);
  --radius: 18px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 15%, rgba(93, 49, 255, .07), transparent 26rem),
    radial-gradient(circle at 80% 44%, rgba(0, 137, 255, .045), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: 'Noto Sans KR', system-ui, sans-serif;
  line-height: 1.55;
  word-break: keep-all;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: '';
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 48px 48px;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.shell.narrow { width: min(1030px, calc(100% - 48px)); }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(3,4,7,.92), rgba(3,4,7,.68));
  backdrop-filter: blur(14px);
  transition: background .25s, box-shadow .25s;
}
.site-header.is-scrolled { background: rgba(4,5,8,.96); box-shadow: 0 12px 36px rgba(0,0,0,.34); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: grid; grid-template-columns: 42px auto; grid-template-rows: 25px 16px; align-items: center; flex: none; }
.brand-mark { grid-row: 1 / 3; width: 38px; height: 38px; }
.brand > span { font-weight: 900; font-size: 21px; letter-spacing: -1px; line-height: 1; }
.brand > span span { color: #8f3cff; }
.brand small { color: #8f909b; font-size: 10px; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.site-nav > a { color: #d7d7dd; transition: color .2s; }
.site-nav > a:hover, .site-nav > a:focus-visible { color: #a570ff; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: transparent; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 4px auto; background: #fff; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 9px;
  background: var(--gradient);
  box-shadow: 0 10px 34px rgba(91, 51, 255, .28);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 42px rgba(91,51,255,.42); filter: brightness(1.08); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }

.hero { position: relative; min-height: 610px; padding-top: 76px; overflow: hidden; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.hero-media { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(3,4,7,.98) 0%, rgba(3,4,7,.92) 29%, rgba(3,4,7,.38) 58%, rgba(3,4,7,.05) 100%), linear-gradient(0deg, #050609 0%, transparent 28%), url('../img/hero-premium-lounge.png'); background-position: center; background-size: cover; transform: scale(1.01); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 75% 80%, rgba(102,49,255,.18), transparent 22rem); }
.hero-content { position: relative; z-index: 1; padding-block: 72px 64px; }
.eyebrow { margin: 0 0 18px; color: #8d6bff; font-size: 12px; font-weight: 800; letter-spacing: .19em; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 4.4vw, 64px); line-height: 1.12; letter-spacing: -.055em; font-weight: 900; text-shadow: 0 5px 30px rgba(0,0,0,.68); }
.hero h1 span, .section-heading h2 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { margin: 23px 0 27px; color: #dedee4; font-size: 18px; font-weight: 600; }
.hero-copy strong { color: #fff; font-size: 21px; font-weight: 900; }
.hero-button { min-width: 230px; }
.private-note { display: flex; align-items: center; gap: 9px; margin: 18px 0 0; color: #8e8f99; font-size: 12px; }
.private-note span { color: #b0a7c7; }

.trust-band { position: relative; z-index: 2; margin-top: -42px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: rgba(11,13,18,.92); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.trust-grid article { display: flex; align-items: center; gap: 15px; min-height: 102px; padding: 20px 22px; background: linear-gradient(145deg, rgba(18,20,28,.96), rgba(9,10,15,.96)); }
.trust-grid article + article { border-left: 1px solid var(--line); }
.line-icon { display: grid; place-items: center; width: 40px; height: 40px; flex: none; color: #a674ff; font-size: 28px; }
.trust-grid strong { display: block; margin-bottom: 4px; color: #fff; font-size: 15px; font-weight: 800; }
.trust-grid p { margin: 0; color: #b1b2bc; font-size: 12px; line-height: 1.5; }

.proof-section { padding: 78px 0 70px; border-bottom: 1px solid rgba(255,255,255,.08); background: radial-gradient(circle at 50% 0, rgba(111,54,255,.13), transparent 33rem); }
.proof-heading { margin-bottom: 35px; text-align: center; }
.proof-heading .eyebrow { margin-bottom: 10px; }
.proof-heading h2 { margin: 0; color: #fff; font-size: clamp(38px,4.2vw,57px); line-height: 1.17; letter-spacing: -.055em; font-weight: 900; }
.proof-heading h2 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof-heading > p:last-child { margin: 15px 0 0; color: #c1c2ca; font-size: 16px; font-weight: 600; }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 15px; background: linear-gradient(145deg,rgba(20,22,31,.98),rgba(8,9,13,.98)); box-shadow: 0 20px 55px rgba(0,0,0,.28); }
.proof-grid article { min-height: 180px; padding: 26px 22px 24px; }
.proof-grid article + article { border-left: 1px solid rgba(255,255,255,.14); }
.proof-grid strong { display: block; margin-bottom: 5px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 34px; line-height: 1.2; font-weight: 900; letter-spacing: -.04em; }
.proof-grid strong small { font-size: 16px; }
.proof-grid span { display: block; margin-bottom: 9px; color: #fff; font-size: 16px; font-weight: 900; }
.proof-grid p { margin: 0; color: #a9aab4; font-size: 12px; line-height: 1.6; }

.section { position: relative; padding: 70px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.section:nth-of-type(even) { background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(111,61,255,.018), rgba(255,255,255,.008)); }
.section-heading { margin-bottom: 28px; text-align: center; }
.section-heading.compact { margin-bottom: 31px; }
.section-heading .eyebrow { margin-bottom: 8px; }
.section-heading h2 { margin: 0; color: #fff; font-size: clamp(32px, 3vw, 41px); line-height: 1.18; letter-spacing: -.045em; font-weight: 900; text-shadow: 0 4px 24px rgba(0,0,0,.55); }
.section-heading h2::after { display: block; width: 34px; height: 3px; margin: 14px auto 0; border-radius: 10px; background: var(--gradient); content: ''; }
.section-heading > p:last-child { margin: 10px 0 0; color: #b1b2bc; font-size: 14px; font-weight: 500; }

.video-section { padding-top: 86px; }
.video-card { position: relative; width: 100%; aspect-ratio: 2.55/1; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius); background: #08090c; box-shadow: var(--shadow); cursor: pointer; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.video-card:hover img { transform: scale(1.025); }
.video-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85), transparent 60%), rgba(0,0,0,.16); }
.play-button { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 84px; height: 84px; padding-left: 6px; border: 2px solid rgba(255,255,255,.85); border-radius: 50%; background: rgba(0,0,0,.45); font-size: 27px; transform: translate(-50%,-50%); backdrop-filter: blur(8px); transition: transform .2s, background .2s; }
.video-card:hover .play-button { transform: translate(-50%,-50%) scale(1.07); background: rgba(92,45,255,.62); }
.video-label { position: absolute; left: 28px; bottom: 23px; text-align: left; }
.video-label strong { display: block; font-size: 16px; }
.video-label small { color: #b4b4bd; }
.video-timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 20px; color: #e1e1e6; font-size: 13px; }
.video-timeline span { position: relative; padding: 12px 0 0 18px; border-top: 2px solid #30313a; }
.video-timeline span::before { content: ''; position: absolute; left: 0; top: -6px; width: 10px; height: 10px; border: 2px solid #6a35ff; border-radius: 50%; background: #08090d; }
.video-timeline .active { border-color: #6733ff; }
.video-timeline small { display: block; color: #777984; }

.game-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.game-card { overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: linear-gradient(150deg, #14161e, #0d0f14); box-shadow: 0 12px 30px rgba(0,0,0,.18); transition: transform .2s, border-color .2s; }
.game-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.game-card img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; background: #13141a; }
.game-card h3 { margin: 0; padding: 13px 15px 15px; color: #fff; font-size: 15px; font-weight: 800; }
.policy-note { margin: 20px 0 0; color: #6f7079; font-size: 11px; text-align: center; }

.steps-grid { display: grid; grid-template-columns: 1fr 32px 1fr 32px 1fr; align-items: center; }
.steps-grid > i { color: #8b8c95; font-size: 35px; font-style: normal; text-align: center; }
.step-card { position: relative; min-height: 215px; padding: 27px 24px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: linear-gradient(145deg, rgba(20,22,31,.98), rgba(9,10,15,.98)); box-shadow: 0 14px 38px rgba(0,0,0,.2); text-align: center; }
.step-card > span { position: absolute; left: 18px; top: 12px; color: rgba(255,255,255,.08); font-size: 36px; font-weight: 900; }
.step-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 13px auto 13px; border: 1px solid rgba(146,103,255,.55); border-radius: 50%; color: #b88cff; font-size: 30px; box-shadow: inset 0 0 28px rgba(100,55,255,.13), 0 0 26px rgba(99,54,255,.09); }
.step-card h3 { margin: 0 0 7px; color: #fff; font-size: 19px; font-weight: 800; }
.step-card p { margin: 0; color: #b2b3bd; font-size: 13px; }
.centered { justify-content: center; }

.environment-section { background: linear-gradient(180deg, rgba(255,255,255,.015), transparent); }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.feature-grid article { overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: linear-gradient(160deg, #151720, #0c0e13); box-shadow: 0 14px 35px rgba(0,0,0,.2); }
.feature-grid img { width: 100%; aspect-ratio: 16/9; object-fit: cover; opacity: .82; }
.feature-grid article:nth-child(2) img { object-position: right bottom; }
.feature-grid article:nth-child(4) img { object-position: center; }
.feature-grid article > div { position: relative; padding: 20px 18px 23px; }
.feature-grid article span { position: absolute; top: -19px; left: 17px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #7c44ff; border-radius: 10px; background: #161021; color: #b17bff; }
.feature-grid h3 { margin: 2px 0 6px; color: #fff; font-size: 18px; font-weight: 800; }
.feature-grid p { margin: 0; color: #b1b2bc; font-size: 13px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.price-card { position: relative; padding: 29px 22px 24px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; background: linear-gradient(160deg, rgba(21,23,32,.98), rgba(9,10,15,.98)); box-shadow: 0 14px 35px rgba(0,0,0,.18); text-align: center; }
.price-card.popular { border-color: #753cff; box-shadow: inset 0 0 36px rgba(106,53,255,.07); }
.popular-label { position: absolute; left: 50%; top: 0; padding: 5px 20px; border-radius: 0 0 9px 9px; background: #6b36f3; font-size: 10px; transform: translateX(-50%); }
.price-card h3 { margin: 0 0 13px; color: #fff; font-size: 16px; font-weight: 800; }
.price { margin: 0 0 4px; font-size: 13px; }
.price strong { margin-right: 3px; color: #fff; font-size: 34px; font-weight: 900; }
.price-card > p:not(.price) { margin: 0 0 22px; color: #777984; font-size: 11px; }
.outline-button { min-height: 43px; width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 7px; background: rgba(255,255,255,.02); color: #d8d8de; cursor: pointer; transition: border-color .2s, background .2s; }
.outline-button:hover, .outline-button:focus-visible { border-color: #7543ff; background: rgba(102,52,255,.12); }

.support-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.faq-list { border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: linear-gradient(160deg, #14161e, #0c0e13); }
.faq-list details + details { border-top: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; list-style: none; color: #f5f5f8; font-size: 14px; font-weight: 700; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 20px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -3px 20px 19px; color: var(--muted); font-size: 12px; }
.contact-card { display: grid; grid-template-columns: 70px 1fr; gap: 10px 18px; align-items: center; padding: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: radial-gradient(circle at 20% 50%, rgba(104,52,255,.22), transparent 46%), linear-gradient(150deg,#151720,#0d0f14); }
.contact-icon { grid-row: 1; display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid #794cff; border-radius: 50%; color: #bc98ff; font-size: 31px; }
.contact-card h3 { margin: 0 0 6px; font-size: 18px; }
.contact-card p { margin: 0; color: var(--muted); font-size: 12px; }
.contact-card .outline-button { grid-column: 1 / 3; margin-top: 10px; }

.site-footer { padding: 36px 0; background: #040508; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 15px 30px; }
.footer-inner nav { display: flex; gap: 27px; color: #92939d; font-size: 12px; }
.footer-inner > p { grid-column: 1 / -1; margin: 4px 0 0; color: #53545c; font-size: 10px; }

.floating-support { position: fixed; right: max(18px, calc((100vw - 1420px) / 2)); top: 50%; z-index: 80; display: grid; gap: 10px; transform: translateY(-18%); }
.floating-support-button { position: relative; display: grid; place-items: center; width: 62px; min-height: 68px; padding: 8px 5px 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 17px; background: rgba(15,17,24,.94); box-shadow: 0 14px 34px rgba(0,0,0,.42); color: #dedee5; cursor: pointer; backdrop-filter: blur(14px); transition: transform .2s, border-color .2s, background .2s; }
.floating-support-button.primary { border-color: rgba(133,75,255,.65); background: linear-gradient(145deg,#6734ff,#9f24ed); color: #fff; }
.floating-support-button:hover, .floating-support-button:focus-visible { z-index: 2; transform: translateX(-4px); border-color: #9a68ff; background-color: #191c26; }
.floating-support-button svg { width: 30px; height: 30px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-support-button.primary svg path:first-child { fill: rgba(255,255,255,.15); }
.floating-support-button .bubble-lines { fill: none !important; }
.floating-support-button > span { font-size: 11px; font-weight: 800; }
.floating-support-button::before { position: absolute; right: calc(100% + 11px); top: 50%; width: max-content; padding: 8px 11px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: #13151c; box-shadow: 0 8px 24px rgba(0,0,0,.35); color: #fff; content: attr(data-tooltip); font-size: 12px; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(8px,-50%); transition: opacity .18s, transform .18s; }
.floating-support-button::after { position: absolute; right: calc(100% + 5px); top: 50%; width: 8px; height: 8px; border-top: 1px solid rgba(255,255,255,.16); border-right: 1px solid rgba(255,255,255,.16); background: #13151c; content: ''; opacity: 0; transform: translate(7px,-50%) rotate(45deg); transition: opacity .18s, transform .18s; }
.floating-support-button:hover::before, .floating-support-button:focus-visible::before, .floating-support-button:hover::after, .floating-support-button:focus-visible::after { opacity: 1; transform: translate(0,-50%); }
.floating-support-button:hover::after, .floating-support-button:focus-visible::after { transform: translate(0,-50%) rotate(45deg); }

.modal { width: min(560px, calc(100% - 32px)); padding: 42px; border: 1px solid rgba(126,82,255,.5); border-radius: 18px; background: #0d0f15; color: var(--text); box-shadow: 0 35px 100px rgba(0,0,0,.7); text-align: center; }
.modal::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.modal-close { position: absolute; right: 14px; top: 10px; border: 0; background: transparent; color: #8d8e98; font-size: 30px; cursor: pointer; }
.modal-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 18px; border: 1px solid #7745ff; border-radius: 50%; background: rgba(108,53,255,.1); color: #b186ff; font-size: 28px; }
.modal h2 { margin: 0 0 12px; font-size: 24px; }
.modal > p { margin: 0 auto 25px; color: var(--muted); font-size: 14px; }
.modal-flow { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 25px; color: #b7b7c0; font-size: 11px; }
.modal-flow span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; }
.modal-flow i { color: #8150ff; font-style: normal; }

@media (max-width: 980px) {
  .site-nav { gap: 18px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .proof-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.14); }
  .trust-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .game-grid, .feature-grid, .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .hero { min-height: 590px; }
}

@media (max-width: 760px) {
  .shell, .shell.narrow { width: min(100% - 32px, 600px); }
  .site-header { height: 66px; }
  .brand { grid-template-columns: 37px auto; }
  .brand-mark { width: 34px; height: 34px; }
  .brand > span { font-size: 19px; }
  .menu-button { display: block; }
  .site-nav { position: absolute; left: 16px; right: 16px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: rgba(9,10,15,.98); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 13px 12px; }
  .site-nav .button { margin-top: 6px; }
  .hero { min-height: 650px; padding-top: 66px; align-items: end; }
  .hero-media { background-image: linear-gradient(0deg, rgba(3,4,7,1) 6%, rgba(3,4,7,.72) 55%, rgba(3,4,7,.14) 100%), url('../img/hero-premium-lounge.png'); background-position: 65% center; }
  .hero-content { padding-block: 255px 78px; }
  .hero h1 { font-size: clamp(39px, 12vw, 57px); }
  .hero-copy { font-size: 16px; }
  .hero-button { width: 100%; }
  .trust-band { margin-top: -30px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 92px; }
  .trust-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .proof-section { padding: 62px 0; }
  .proof-heading h2 { font-size: clamp(34px,9.5vw,48px); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid article { min-height: 0; padding: 23px 22px; }
  .proof-grid article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .proof-grid strong { font-size: 30px; }
  .section { padding: 62px 0; }
  .video-card { aspect-ratio: 16/10; }
  .play-button { width: 66px; height: 66px; font-size: 21px; }
  .video-label { left: 18px; bottom: 15px; }
  .video-timeline { grid-template-columns: repeat(2,1fr); }
  .game-grid { gap: 10px; }
  .game-card h3 { padding: 10px 11px 12px; font-size: 12px; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid > i { display: none; }
  .step-card { min-height: 205px; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid img { aspect-ratio: 16/7; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner nav { flex-wrap: wrap; gap: 12px 20px; }
  .footer-inner > p { grid-column: auto; }
  .floating-support { right: 12px; top: auto; bottom: 16px; display: flex; transform: none; }
  .floating-support-button { width: 54px; min-height: 56px; border-radius: 15px; }
  .floating-support-button svg { width: 25px; height: 25px; }
  .floating-support-button > span { display: none; }
  .floating-support-button::before, .floating-support-button::after { display: none; }
}

@media (max-width: 440px) {
  .game-grid { grid-template-columns: 1fr 1fr; }
  .game-card img { aspect-ratio: 16/10; }
  .modal { padding: 38px 20px 28px; }
  .modal-flow { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
