/* =============================
   OnekingCreative - base shell
   White bg + full-width header image
   + centered COMING SOON loader
============================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: #ffffff;
  color: #0b0d12;
}

:root {
  /* Layout */
  --pad: 24px;
  --max: 1200px;
  --radius: 16px;

  /* Breakpoint reference */
  --desktop: 1440px;
  --tablet: 768px;
  --mobile: 414px;

  --border: rgba(15, 23, 42, 0.16);
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: #111827;
  color: #ffffff;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* App shell */
.app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Header full-bleed */
.app__header {
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Main and footer contained */
.app__main,
.app__footer {
  width: min(var(--max), 100% - (var(--pad) * 2));
  margin-inline: auto;
}

/* Main area: center COMING SOON vertically + horizontally */
.app__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 24px 32px;
}

/* Footer (empty for now) */
.app__footer {
  padding: 0 0 16px;
}

/* COMING SOON loader */
.coming-soon-wrap {
  position: relative;
  width: min(220px, 60vw);
  height: min(220px, 60vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 4px solid #111827;
  border-top-color: transparent;
  border-right-color: #111827;
  animation: okc-spin 1.2s linear infinite;
}

/* Just text now, no pill outline */
.coming-soon-label {
  position: relative;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(12px, 2.4vw, 16px);
}

/* Spinner keyframes */
@keyframes okc-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Tablet (<= 768px) */
@media (max-width: 768px) {
  :root {
    --pad: 16px;
    --max: 720px;
  }

  .app__main {
    padding-block: 20px 28px;
  }
}

/* Mobile (<= 414px) */
@media (max-width: 414px) {
  :root {
    --pad: 14px;
    --max: 100%;
  }

  .app__main {
    padding-block: 18px 24px;
  }

  .coming-soon-wrap {
    width: min(200px, 70vw);
    height: min(200px, 70vw);
  }

  .coming-soon-label {
    letter-spacing: 0.16em;
  }
}
