/* ======================================================
   Petal Runtime CSS（最終形）
   ====================================================== */

html, body {
  margin: 0;
  padding: 0;
  background: #e5f6ff; /* OJapp淡い水色 */
  font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #222;
}

/* 画面全体 */
#runtime-wrap{
  min-height: 100vh;
  position: relative;
}
body {
  background: #e5f6ff;
}

/* ===============================
   左上 OJapp ブランド
=============================== */
.brand {
  position: absolute;
  top: 30px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: #222;
}

.brand-icon {
  width: 22px;
  height: 22px;
}

/* ===============================
   上ゾーン（共有・安心）
=============================== */
.card-preview {
  padding-top: 64px; /* ロゴ分の余白 */
  padding-bottom: 24px;
  text-align: center;
}

.card-img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  margin-bottom: 12px;
}

.card-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-url{
  font-size: 13px;
  color: #555;
  word-break: break-all;
  padding: 0 20px;
  margin-bottom: 18px;
}

/* ===============================
   QRコード
=============================== */
#qr-wrap {
  display: flex;
  justify-content: center;
}

#qr {
  width: 160px;
  height: 160px;
  background: #fff;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* ===============================
   カットライン
=============================== */
#cut-line {
  height: 1px;
  background: rgba(255,255,255,.7);
  margin-top: 24px;
}

/* ===============================
   下ゾーン（名刺・説明）
=============================== */
#bottom-area {
  background: #ffffff;
  padding: 16px 18px 18px;
  text-align: center;
}

#bottom-area p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 10px;
}

/* カウントダウン説明 */
.count-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

/* 秒数（主役） */
#countdown {
  font-size: 32px;
  font-weight: 700;
  color: #ff4fa0;
}