/*
Theme Name: ICPBL Coming Soon
Theme URI: https://icpbl.kr
Author: Hanyang ERICA IC-PBL
Description: ICPBL 10주년 공식 홈페이지 임시 오픈 화면입니다.
Version: 1.0.0
Requires at least: 6.8
Requires PHP: 8.3
Text Domain: icpbl-holding
*/

:root {
  color-scheme: dark;
  --icpbl-bg: #171027;
  --icpbl-text: #ffffff;
  --icpbl-line: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--icpbl-bg);
}

body {
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
}

.icpbl-holding {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 68%, rgba(198, 51, 212, 0.2), transparent 34%),
    linear-gradient(145deg, #24143f 0%, #171027 100%);
}

.icpbl-holding__visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.icpbl-holding::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 6, 20, 0.04), rgba(10, 6, 20, 0.2));
}

.icpbl-holding__status {
  position: absolute;
  top: clamp(16px, 2.5vw, 36px);
  right: clamp(16px, 3vw, 48px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--icpbl-line);
  border-radius: 999px;
  color: var(--icpbl-text);
  background: rgba(24, 14, 43, 0.54);
  box-shadow: 0 8px 30px rgba(12, 5, 28, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: clamp(11px, 0.85vw, 14px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  animation: icpbl-fade-in 900ms ease-out both;
}

.icpbl-holding__status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e9a5ff;
  box-shadow: 0 0 14px rgba(233, 165, 255, 0.95);
}

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

@keyframes icpbl-fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-aspect-ratio: 4 / 5) {
  .icpbl-holding__visual {
    object-fit: contain;
  }

  .icpbl-holding__status {
    top: auto;
    right: 50%;
    bottom: max(22px, env(safe-area-inset-bottom));
    transform: translateX(50%);
    white-space: nowrap;
    animation-name: icpbl-fade-in-mobile;
  }

  @keyframes icpbl-fade-in-mobile {
    from {
      opacity: 0;
      transform: translate(50%, 6px);
    }
    to {
      opacity: 1;
      transform: translate(50%, 0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .icpbl-holding__status {
    animation: none;
  }
}

