:root {
  --bg: #0f2340;
  --panel: rgba(14, 35, 61, 0.76);
  --panel-strong: rgba(18, 42, 72, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #b4c3d3;
  --accent: #ec9450;
  --accent-2: #7aa6d1;
  --shadow: 0 22px 70px rgba(4, 12, 24, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  font-family: "PingFang SC", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(236, 148, 80, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(122, 166, 209, 0.18), transparent 32%),
    linear-gradient(135deg, #102540 0%, #17365a 52%, #0f2744 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.screen-shell {
  position: relative;
  width: min(calc((100vh - 32px) * 16 / 9), calc(100vw - 32px));
  height: min(calc((100vw - 32px) * 9 / 16), calc(100vh - 32px));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 28px;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.65;
}

.orb-a {
  top: -8vh;
  right: -4vw;
  width: 26vw;
  height: 26vw;
  background: rgba(236, 148, 80, 0.2);
}

.orb-b {
  left: -6vw;
  bottom: -8vh;
  width: 22vw;
  height: 22vw;
  background: rgba(122, 166, 209, 0.18);
}

.board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 22px;
}

.hero-card,
.panel {
  border: 1px solid var(--line);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(16, 39, 67, 0.82), rgba(14, 30, 52, 0.92));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eyebrow,
.panel-label,
.price-note,
.weather-status {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow:empty,
.price-note:empty,
.weather-status:empty,
.room-subnote:empty {
  display: none;
}

.eyebrow,
.panel-label {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
.time-value,
.price {
  margin: 0;
}

h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  max-width: none;
  white-space: nowrap;
}

.room-tagline {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.room-subnote {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.48;
  white-space: nowrap;
}

.hero-media {
  min-height: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

.info-grid {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
}

.panel {
  border-radius: 28px;
  background: var(--panel);
  padding: 22px;
}

.price-panel {
  background:
    linear-gradient(135deg, rgba(236, 148, 80, 0.18), transparent 45%),
    var(--panel-strong);
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.currency {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: var(--accent);
}

.price {
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 0.9;
  font-weight: 800;
}

.price-unit {
  padding-bottom: 10px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 22px);
}

.price-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.time-value {
  margin-top: 12px;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 1;
}

.time-meta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 22px);
}

.weather-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.weather-header h2 {
  margin-top: 8px;
  font-size: clamp(20px, 2vw, 30px);
}

.weather-status {
  color: var(--muted);
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.weather-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.weather-item {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-day {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.weather-date {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
}

.weather-desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.weather-temp {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .board {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 54vh;
  }

  .weather-list {
    grid-template-columns: 1fr;
  }
}
