/* LOGI-TOWN Landing Page — Frame 427319683 픽셀 매칭 */
.ltlan-page,
.ltlan-page * {
  box-sizing: border-box;
}

.ltlan-page {
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  background: #000;
  color: #e4ecff;
  min-height: 100vh;
  padding: 140px 0 60px;
}

@media screen and (max-width: 768px) {
  .ltlan-page {
    padding-top: 110px;
  }
}

.ltlan-stage-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Top header ===== */
.ltlan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 6px 4px 24px;
}

.ltlan-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ltlan-logo {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1aaee6;
  text-shadow: 0 0 12px rgba(26, 174, 230, 0.4);
}

.ltlan-badge-grade {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 14px;
  background: #d6dbe2;
  color: #1c2533;
  font-size: 12px;
  font-weight: 700;
}

.ltlan-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 14px;
  border-radius: 14px;
  background: #1aaee6;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s;
}

.ltlan-tab:hover {
  filter: brightness(1.12);
}

.ltlan-tab .ic {
  font-size: 12px;
}

.ltlan-top-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ltlan-point-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  background: #1aaee6;
  color: #fff;
  font-weight: 700;
}

.ltlan-point-pill .lbl {
  font-size: 12px;
  opacity: 0.95;
}

.ltlan-point-pill .val {
  font-size: 15px;
  font-weight: 800;
}

.ltlan-point-pill .gem {
  font-size: 12px;
}

.ltlan-mps {
  text-align: right;
  line-height: 1.2;
}

.ltlan-mps small {
  display: block;
  font-size: 11px;
  color: #aab4c4;
  margin-bottom: 2px;
}

.ltlan-mps strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

/* ===== 건설현황 ===== */
.ltlan-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 22px;
  margin-bottom: 14px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ltlan-status-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1c2533;
}

.ltlan-status-label .ic {
  font-size: 17px;
}

.ltlan-status-label strong {
  font-size: 16px;
  font-weight: 800;
}

.ltlan-status-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  max-width: 520px;
  justify-content: flex-end;
}

.ltlan-status-bar .bar {
  flex: 1;
  height: 12px;
  background: #d6dbe2;
  border-radius: 8px;
  overflow: hidden;
  max-width: 360px;
}

.ltlan-status-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #1aaee6, #3aa9ff);
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(26, 174, 230, 0.6);
}

.ltlan-status-bar .cnt {
  font-size: 15px;
  font-weight: 800;
  color: #1c2533;
  min-width: 50px;
  text-align: right;
}

/* ===== 건물 카드 5개 ===== */
.ltlan-bcards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  justify-items: center;
}

.ltlan-bcard {
  display: block;
  width: 100%;
  max-width: 200px;
  transition: transform 0.2s;
}

.ltlan-bcard img {
  display: block;
  width: 100%;
  height: auto;
}

.ltlan-bcard:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 14px rgba(26, 174, 230, 0.35));
}

/* ===== 중앙 스테이지 ===== */
.ltlan-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
  max-width: 980px;
}

.ltlan-stage img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(33, 150, 243, 0.18));
}

/* ===== 액션 버튼 3개 ===== */
.ltlan-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ltlan-action {
  display: block;
  flex: 0 1 300px;
  max-width: 300px;
  transition: transform 0.15s, filter 0.15s;
}

.ltlan-action img {
  display: block;
  width: 100%;
  height: auto;
}

.ltlan-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* ===== 정보 카드 5개 ===== */
.ltlan-infos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.ltlan-info {
  background: linear-gradient(160deg, #16284a 0%, #0f1c36 100%);
  border-radius: 14px;
  padding: 18px 16px 16px;
  position: relative;
  overflow: hidden;
}

.ltlan-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 200, 255, 0.4), transparent);
}

.info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.g-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #2cc4f5 0%, #1aaee6 60%, #0c84b8 100%);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 10px rgba(26, 174, 230, 0.45);
}

.g-icon::after {
  content: 'G';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.info-title {
  font-size: 12px;
  font-weight: 600;
  color: #aab8d0;
  margin-bottom: 4px;
  line-height: 1.3;
}

.info-rate {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.info-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #c0cce0;
  border-top: 1px solid rgba(120, 160, 220, 0.18);
  padding-top: 12px;
  margin-bottom: 16px;
  min-height: 80px;
}

.info-foot {
  border-top: 1px solid rgba(120, 160, 220, 0.18);
  padding-top: 10px;
}

.info-lv {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #c0cce0;
  margin-bottom: 6px;
}

.info-lv strong {
  color: #fff;
  font-weight: 800;
}

.info-bar {
  height: 5px;
  background: #1a2540;
  border-radius: 3px;
  overflow: hidden;
}

.info-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #1aaee6, #3ad1ff);
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(26, 174, 230, 0.5);
}

/* ===== 일일 생산 현황 / 통계 / 팁 / 도움말 ===== */
.ltlan-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.ltlan-stats-card,
.ltlan-help {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 22px;
  color: #1c2533;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.stats-title {
  font-size: 15px;
  font-weight: 800;
  color: #2c3a52;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-title .ic {
  font-size: 16px;
}

.stats-title .caret {
  font-size: 10px;
  color: #8a96aa;
  margin-left: auto;
}

/* 일일 생산 리스트 */
.prod-list,
.stat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prod-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  font-size: 13px;
}

.prod-name {
  flex: 0 0 165px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2c3a52;
  font-weight: 600;
}

.prod-ic {
  font-size: 15px;
}

.prod-bar {
  flex: 1;
  height: 8px;
  background: #ffd8d8;
  border-radius: 5px;
  overflow: hidden;
  display: block;
  min-width: 80px;
}

.prod-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff6b6b, #ff4d4d);
  border-radius: 5px;
}

.prod-val {
  flex: 0 0 110px;
  text-align: right;
  font-weight: 800;
  color: #2c3a52;
  font-size: 13px;
}

/* 통계 */
.stat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.stat-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2c3a52;
  font-weight: 600;
}

.stat-ic {
  font-size: 15px;
}

.stat-val {
  font-size: 18px;
  font-weight: 800;
}

.stat-green {
  color: #2ecc71;
}

.stat-blue {
  color: #2196f3;
}

/* 팁 박스 */
.ltlan-tip {
  background: #d6ecff;
  border-radius: 16px;
  padding: 16px 22px;
  font-size: 13px;
  color: #2c3a52;
  line-height: 1.7;
}

.ltlan-tip strong {
  font-weight: 800;
  color: #2c3a52;
}

.ltlan-tip .ic {
  margin-right: 4px;
}

/* 도움말 */
.ltlan-help {
  cursor: pointer;
  padding: 16px 22px;
}

.ltlan-help .stats-title {
  margin-bottom: 0;
}

/* ===== 반응형 ===== */
@media (max-width: 1100px) {
  .ltlan-bcards {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .bcard-name {
    font-size: 10px;
  }
  .ltlan-infos {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .ltlan-info {
    padding: 14px 12px 12px;
  }
  .info-desc {
    font-size: 11px;
    min-height: 92px;
  }
}

@media (max-width: 820px) {
  .ltlan-top {
    gap: 10px;
  }
  .ltlan-logo {
    font-size: 22px;
  }
  .ltlan-bcards {
    grid-template-columns: repeat(3, 1fr);
  }
  .ltlan-infos {
    grid-template-columns: repeat(2, 1fr);
  }
  .ltlan-actions {
    gap: 14px;
  }
  .ltlan-action {
    min-width: 0;
    padding: 10px 20px;
  }
}

@media (max-width: 520px) {
  .ltlan-stage-wrap {
    padding: 0 14px;
  }
  .ltlan-bcards {
    grid-template-columns: repeat(2, 1fr);
  }
  .ltlan-infos {
    grid-template-columns: 1fr;
  }
  .ltlan-action {
    min-width: 0;
    width: 100%;
  }
}
