@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: #ffffff;
  color: #0f172a;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1280px;
  height: 74px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 22px;
  font-weight: 900;
}

.brand b {
  color: #ffd21a;
  font-size: 14px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd21a, #1d4ed8);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
}

.nav {
  display: none;
  align-items: center;
  gap: 34px;
  color: white;
  font-size: 15px;
  font-weight: 700;
}

.header-cta {
  display: none;
  height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
  font-weight: 900;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 23px;
}

.mobile-nav {
  display: none;
  background: #020617;
  padding: 12px 22px 20px;
}

.mobile-nav.active {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  color: white;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: white;
  padding: 54px 18px 36px;
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.42), transparent 30%),
    radial-gradient(circle at 10% 75%, rgba(245, 158, 11, 0.24), transparent 32%),
    linear-gradient(135deg, #020617 0%, #07111f 45%, #0f172a 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 260px;
  opacity: 0.16;
  background:
    linear-gradient(to top, #020617, transparent),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.14) 0 1px,
      transparent 1px 80px
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: #facc15;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.35);
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
}

.hero-copy h1 span {
  color: #fbbf24;
}

.hero-desc {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-points div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 14px;
}

.hero-points strong {
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.hero-points p {
  color: #94a3b8;
  font-size: 13px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.primary-btn,
.secondary-btn {
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.primary-btn {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.3);
}

.secondary-btn {
  border: 1px solid rgba(250, 204, 21, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

/* DASHBOARD PREVIEW */

.dashboard-preview {
  position: relative;
}

.dashboard-card {
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 26px;
  padding: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-head strong {
  font-size: 18px;
}

.dashboard-head strong span {
  color: #3b82f6;
  font-size: 13px;
}

.dashboard-head em {
  color: #94a3b8;
  font-style: normal;
  font-size: 13px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.stats-grid div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
}

.stats-grid p {
  color: #94a3b8;
  font-size: 13px;
}

.stats-grid strong {
  display: block;
  color: #facc15;
  font-size: 22px;
  margin: 8px 0;
}

.stats-grid span {
  color: #22c55e;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-card h3 {
  font-size: 17px;
  margin-bottom: 14px;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px;
}

.ticket-img {
  width: 54px;
  height: 54px;
  border-radius: 13px;
}

.ticket-img.baseball {
  background: linear-gradient(135deg, #f97316, #1e293b);
}

.ticket-img.concert {
  background: linear-gradient(135deg, #8b5cf6, #1e293b);
}

.order-item strong {
  display: block;
  margin-bottom: 5px;
}

.order-item p {
  color: #94a3b8;
  font-size: 12px;
}

.status {
  white-space: nowrap;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
}

.status.done {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
}

.status.progress {
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
}

.status.wait {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
}

/* INCOME STRIP */

.hero-income-box {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 36px auto 0;
  border: 1px solid rgba(250, 204, 21, 0.45);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.hero-income-box div {
  padding: 24px;
  border-bottom: 1px solid rgba(250, 204, 21, 0.18);
}

.hero-income-box div:last-child {
  border-bottom: 0;
}

.hero-income-box p {
  color: #e5e7eb;
  font-weight: 800;
}

.hero-income-box strong {
  display: block;
  color: #facc15;
  font-size: 42px;
  margin-top: 8px;
  letter-spacing: -0.07em;
}

.hero-income-box strong span {
  font-size: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 8px;
  border-radius: 999px;
}

.hero-income-box small {
  display: block;
  color: #cbd5e1;
  margin-top: 12px;
  line-height: 1.6;
}

.notice-text {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 24px auto 0;
    color: #94a3b8;
    font-size: 12px;
    opacity: 0.75;
    line-height: 1.6;
}

/* COMMON SECTION */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 18px 34px;
}

.section-title {
  text-align: center;
  margin-bottom: 28px;
}

.section-title p {
  color: #ffd21a;
  font-weight: 900;
}

.section-title h2 {
  font-size: 30px;
  margin: 8px 0 10px;
  letter-spacing: -0.06em;
}

.section-title span {
  color: #64748b;
}

/* CASE */

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.case-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.case-card em {
  display: inline-flex;
  background: #f8fafc;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  font-style: normal;
}

.case-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.case-card p {
  color: #64748b;
  margin-bottom: 18px;
}

.case-card span {
  display: block;
  color: #64748b;
  margin-bottom: 8px;
}

.case-card strong {
  display: block;
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.06em;
}

.case-card small {
  color: #475569;
}

.case-card.green strong {
  color: #16a34a;
}

.case-card.blue strong {
  color: #ffd21a;
}

.case-card.purple strong {
  color: #8b5cf6;
}

.case-card.orange strong {
  color: #f97316;
}

.case-note {
  text-align: center;
  color: #64748b;
  font-size: 12px;
  margin-top: 16px;
}

/* WHY */

.why-section {
  padding: 24px 18px;
}

.why-box {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #020617, #111827);
  color: white;
  border-radius: 28px;
  padding: 28px;
}

.why-title {
  margin-bottom: 24px;
}

.why-title h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.why-title p {
  color: #cbd5e1;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.why-grid div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}

.why-grid span {
  color: #facc15;
  font-weight: 900;
}

.why-grid h3 {
  font-size: 20px;
  margin: 10px 0;
}

.why-grid p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.process-grid div {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 24px;
}

.process-grid strong {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #0f172a;
  color: #facc15;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.process-grid h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.process-grid p {
  color: #64748b;
  line-height: 1.6;
}

/* APPLY */

.apply-section {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 24px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.apply-copy {
  position: relative;
  overflow: hidden;

  background-image:
    linear-gradient(
      rgba(2,6,23,.82),
      rgba(15,23,42,.88)
    ),
    url("../images/apply-bg.jpg");

  background-size: cover;
  background-position: center;

  color: white;
  border-radius: 28px;
  padding: 30px;
}

.apply-copy h2 {
  font-size: 31px;
  line-height: 1.25;
  margin-bottom: 22px;
}

.apply-copy h2 span {
  color: #facc15;
}

.apply-copy ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.apply-copy li::before {
  content: "✓";
  color: #facc15;
  font-weight: 900;
  margin-right: 8px;
}

.apply-form {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 28px;
}

.apply-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.apply-form p {
  color: #64748b;
  margin-bottom: 18px;
}

.apply-form input,
.apply-form select {
  width: 100%;
  height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 13px;
  padding: 0 14px;
  margin-bottom: 10px;
  font-size: 15px;
  background: white;
}

.apply-form button {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  font-weight: 900;
  color: #111827;
  margin-top: 8px;
}

/* FOOTER */

.footer {
  background: #020617;
  color: white;
  padding: 28px 18px;
  display: grid;
  gap: 20px;
  text-align: center;
}

.footer p {
  color: #94a3b8;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: #94a3b8;
  font-weight: 900;
}

/* EFFECTS */

.primary-btn,
.secondary-btn,
.header-cta,
.apply-form button,
.case-card,
.process-grid div {
  transition: 0.22s ease;
}

.primary-btn:hover,
.secondary-btn:hover,
.header-cta:hover,
.apply-form button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.case-card:hover,
.process-grid div:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .hero {
    padding: 72px 28px 42px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .hero-actions {
    grid-template-columns: 280px 220px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-income-box {
    grid-template-columns: 1fr 1fr 1.2fr;
  }

  .hero-income-box div {
    border-bottom: 0;
    border-right: 1px solid rgba(250, 204, 21, 0.18);
  }

  .hero-income-box div:last-child {
    border-right: 0;
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .apply-section {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 640px;
  }

  .hero-copy h1 {
    font-size: 72px;
  }

  .case-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.28;
  z-index: -1;
}

.hero::after {
  z-index: 0;
  pointer-events: none;
}

.hero-inner,
.hero-income-box,
.notice-text {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-bg-image {
    opacity: 0.34;
    object-position: center top;
  }
}

/* =========================
   INCOME IMAGE CARDS
========================= */

.case-card {
    overflow: hidden;
    padding: 0;
}

.case-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.case-content {
    padding: 24px;
}

.income1 {
    background-image:
    linear-gradient(
      rgba(0,0,0,.15),
      rgba(0,0,0,.15)
    ),
    url("../images/income-1.jpg");
}

.income2 {
    background-image:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.18)
    ),
    url("../images/income-2.jpg");
}

.income3 {
    background-image:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.18)
    ),
    url("../images/income-3.jpg");
}

.income4 {
    background-image:
    linear-gradient(
      rgba(0,0,0,.18),
      rgba(0,0,0,.18)
    ),
    url("../images/income-4.jpg");
}

/* =========================
   LIVE SUPPLY TICKETS
========================= */

.live-ticket-section {
  background: #020617;
  padding: 46px 18px;
  color: white;
}

.live-ticket-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.live-ticket-title {
  text-align: center;
  margin-bottom: 28px;
}

.live-ticket-title p {
  color: #facc15;
  font-weight: 900;
  margin-bottom: 8px;
}

.live-ticket-title h2 {
  font-size: 30px;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}

.live-ticket-title span {
  color: #94a3b8;
}

.live-ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.live-ticket-card {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.live-thumb {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.live-thumb.baseball {
  background-image:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.35)),
    url("../images/income-2.jpg");
}

.live-thumb.baseball.second {
  background-image:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.35)),
    url("../images/hero-bg.jpg");
}

.live-thumb.concert {
  background-image:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.35)),
    url("../images/income-3.jpg");
}

.live-info {
  padding: 20px;
}

.category {
  display: inline-flex;
  background: rgba(34, 197, 94, 0.13);
  color: #22c55e;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.concert-label {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.live-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.live-info p {
  color: #94a3b8;
  margin-bottom: 18px;
}

.live-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-meta b {
  color: #facc15;
}

.live-meta strong {
  color: white;
  background: rgba(255,255,255,0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

@media (min-width: 900px) {
  .live-ticket-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .live-ticket-title h2 {
    font-size: 38px;
  }
}

/* =========================
   REVIEW SECTION
========================= */

.review-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 58px 18px 34px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.review-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.review-card.featured {
  background: linear-gradient(135deg, #020617, #111827);
  color: white;
  border-color: rgba(250, 204, 21, 0.35);
}

.review-profile {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.review-profile h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.review-profile p {
  color: #64748b;
  font-size: 14px;
}

.review-card.featured .review-profile p {
  color: #94a3b8;
}

.review-text {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

.review-card.featured .review-text {
  color: #e5e7eb;
}

.review-result {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.review-card.featured .review-result {
  background: rgba(255, 255, 255, 0.08);
}

.review-result span {
  color: #64748b;
  font-weight: 700;
}

.review-card.featured .review-result span {
  color: #cbd5e1;
}

.review-result strong {
  color: #ffd21a;
  font-size: 18px;
}

.review-card.featured .review-result strong {
  color: #facc15;
}

@media (min-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .review-card {
    min-width: 0;
  }

  .review-profile {
    align-items: flex-start;
  }

  .review-profile h3 {
    word-break: keep-all;
    line-height: 1.35;
  }

  .review-text {
    word-break: keep-all;
  }

  .review-result {
    gap: 10px;
  }

  .review-result span,
  .review-result strong {
    white-space: nowrap;
  }
}

/* =========================
   PATCH 01 - MOBILE / APPLY FIX
========================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-inner {
    padding: 0 14px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 42px 16px 30px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .order-item {
    grid-template-columns: 48px 1fr;
  }

  .order-item .status {
    grid-column: 2;
    width: fit-content;
  }

  .process-grid,
  .review-grid,
  .case-grid,
  .live-ticket-grid,
  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .apply-section {
    grid-template-columns: 1fr !important;
    max-width: 100%;
    width: 100%;
    margin: 36px auto;
    padding: 0 18px;
  }

  .apply-copy,
  .apply-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .apply-copy {
    min-height: auto;
    padding: 30px 22px;
  }

  .apply-copy h2 {
    font-size: 28px;
  }

  .apply-form {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .apply-section {
    max-width: 1280px;
    margin: 70px auto;
    grid-template-columns: 1fr 460px;
    align-items: stretch;
  }

  .apply-copy {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .apply-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* =========================
   PATCH 02 - FLOATING CHAT
========================= */

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  font-family: inherit;
}

.chat-floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  background: #111827;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.chat-floating-btn:hover {
  transform: translateY(-2px);
}

.chat-floating-icon {
  font-size: 20px;
}

.chat-panel {
  display: none;
  width: 380px;
  height: 600px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.chat-panel.active {
  display: flex;
  flex-direction: column;
}

.chat-widget.open .chat-floating-btn {
  display: none;
}

.chat-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #111827;
  color: #ffffff;
}

.chat-panel-header strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.chat-panel-header p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.chat-close-btn {
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.chat-panel-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  background: #f3f4f6;
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  margin-bottom: 12px;
  word-break: break-word;
}

.chat-message.user {
  margin-left: auto;
  background: #0f172a;
  color: #fff;
}

.chat-message.bot {
  margin-right: auto;
  background: #ffffff;
  color: #111827;
}

.chat-bubble {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.chat-message.bot .chat-bubble {
  background: #ffffff;
  color: #111827;
  border-bottom-left-radius: 4px;
}

.chat-message.user .chat-bubble {
  background: #111827;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.chat-input-area input {
  flex: 1;
  min-width: 0;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}

.chat-input-area input:focus {
  border-color: #111827;
}

.chat-input-area button {
  border: none;
  border-radius: 999px;
  padding: 0 18px;
  background: #111827;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 480px) {
  .chat-widget {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .chat-floating-btn {
    margin-left: auto;
  }

  .chat-panel {
    width: 100%;
    height: 72vh;
    border-radius: 22px;
  }

  .chat-bubble {
    max-width: 86%;
  }
}

/* =========================
   PATCH 03 - CHAT HEADER ACTIONS
========================= */

.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-reset-btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.chat-reset-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   PATCH 04 - CHAT PAGE
========================= */

.chat-page-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(37, 99, 235, 0.35), transparent 30%),
    radial-gradient(circle at 10% 80%, rgba(250, 204, 21, 0.22), transparent 30%),
    linear-gradient(135deg, #020617, #0f172a);
}

.chat-page {
  min-height: 100vh;
  padding: 28px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-page-card {
  width: 100%;
  max-width: 1100px;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.chat-page-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background: #111827;
  color: #ffffff;
}

.chat-page-header p {
  color: #facc15;
  font-weight: 900;
  margin-bottom: 8px;
}

.chat-page-header h1 {
  font-size: 32px;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.chat-page-header span {
  color: #cbd5e1;
}

.chat-page-back {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #111827;
  font-weight: 900;
}

.chat-page-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 620px;
}

.chat-page-info {
  padding: 28px;
  background: #f8fafc;
  border-right: 1px solid #e5e7eb;
}

.chat-page-info strong {
  display: block;
  font-size: 20px;
  margin-bottom: 18px;
}

.chat-page-info ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.chat-page-info li {
  color: #475569;
  line-height: 1.6;
}

.chat-page-info li::before {
  content: "✓";
  color: #ffd21a;
  font-weight: 900;
  margin-right: 8px;
}

.chat-page-status {
  margin-top: 28px;
  padding: 14px;
  border-radius: 16px;
  background: #ecfdf5;
  color: #15803d;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-page-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
}

.chat-room {
  display: flex;
  flex-direction: column;
  background: #f3f4f6;
}

.chat-room-messages {
  flex: 1;
  padding: 28px;
  overflow-y: auto;
}

.chat-room-form {
  display: flex;
  gap: 10px;
  padding: 18px;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

.chat-room-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.chat-room-form input:focus {
  border-color: #111827;
}

.chat-room-form button {
  width: 90px;
  height: 52px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
}

@media (max-width: 768px) {
  .chat-page {
    padding: 0;
    align-items: stretch;
  }

  .chat-page-card {
    border-radius: 0;
    min-height: 100vh;
  }

  .chat-page-header {
    flex-direction: column;
    padding: 22px;
  }

  .chat-page-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .chat-page-info {
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .chat-room {
    min-height: 520px;
  }
}

.chat-direct-link {
  display: inline-flex;
  margin-top: 6px;
  color: #facc15;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
}

/* =========================
   PATCH 05 - MOBILE MENU FIX
========================= */

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10001;
}

@media (max-width: 1099px) {
  .menu-btn {
    display: flex !important;
  }

  .nav,
  .header-cta {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .menu-btn {
    display: none !important;
  }
}

/* =========================
   PATCH 14.2 - CHAT WIDGET ACTIVE FIX
========================= */

.chat-widget.active .chat-panel {
  display: flex;
  flex-direction: column;
}

.chat-widget.active .chat-floating-btn {
  display: none;
}

/* =========================
   PATCH 25 - PREMIUM MAIN UI / RANKING / CHAT CONTRAST
========================= */

/* 전체 UI 톤 업그레이드 */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
}

.header {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
}

.brand-icon {
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

.header-cta,
.primary-btn,
.apply-form button {
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.32);
}

/* HERO 고급화 */
.hero {
  padding-top: 72px;
  padding-bottom: 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.86), rgba(15, 23, 42, 0.74)),
    radial-gradient(circle at 75% 30%, rgba(250, 204, 21, 0.18), transparent 34%);
  pointer-events: none;
}

.hero-copy h1 {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.hero-sub-brand{
    display:block;
    margin-top:18px;
    font-size:0.55em;
    font-weight:700;
    color:rgba(255,255,255,.75);
    letter-spacing:-0.02em;
}

.hero-desc {
  font-size: 18px;
}

.dashboard-card {
  border: 1px solid rgba(250, 204, 21, 0.22);
  transform: none;
}

.dashboard-card:hover {
  transform: translateY(-4px);
}

/* 공급 카드 개선 */
.live-ticket-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.22), transparent 30%),
    linear-gradient(135deg, #020617, #0f172a);
}

.live-ticket-card {
  position: relative;
  transition: 0.24s ease;
}

.live-ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.45);
}

/* PARTNER RANKING */
.partner-ranking-section {
  background: #f8fafc;
  padding: 64px 18px;
}

.ranking-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ranking-title {
  text-align: center;
  margin-bottom: 30px;
}

.ranking-title p {
  color: #f59e0b;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.ranking-title h2 {
  font-size: 32px;
  margin: 8px 0 10px;
  letter-spacing: -0.06em;
}

.ranking-title span {
  color: #64748b;
}

.ranking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ranking-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.ranking-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  opacity: 0.18;
}

.ranking-card.first::after {
  background: #facc15;
}

.ranking-card.second::after {
  background: #94a3b8;
}

.ranking-card.third::after {
  background: #f97316;
}

.rank-badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: #0f172a;
  color: #facc15;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 16px;
}

.ranking-card h3 {
  font-size: 25px;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.ranking-card p {
  color: #64748b;
  margin-bottom: 20px;
}

.ranking-stats {
  display: grid;
  gap: 10px;
}

.ranking-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 13px 14px;
}

.ranking-stats span {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.ranking-stats strong {
  color: #0f172a;
  font-size: 17px;
  font-weight: 950;
}

.ranking-note {
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 16px;
}

/* 상담 신청 영역 프로 느낌 강화 */
.apply-section {
  position: relative;
}

.apply-copy {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.apply-form {
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.1);
}

.apply-form input,
.apply-form select {
  transition: 0.18s ease;
}

.apply-form input:focus,
.apply-form select:focus {
  outline: none;
  border-color: #ffd21a;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* 상담창 구분 강화 */
.chat-widget {
  right: 26px;
  bottom: 26px;
}

.chat-floating-btn {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 18px 42px rgba(245, 158, 11, 0.38),
    0 0 0 6px rgba(250, 204, 21, 0.12);
}

.chat-panel {
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #ffffff;
  box-shadow:
    0 30px 90px rgba(2, 6, 23, 0.38),
    0 0 0 8px rgba(15, 23, 42, 0.06);
}

.chat-panel-header {
  background:
    radial-gradient(circle at 85% 15%, rgba(250, 204, 21, 0.25), transparent 28%),
    linear-gradient(135deg, #020617, #111827);
  border-bottom: 1px solid rgba(250, 204, 21, 0.24);
}

.chat-panel-body {
  background:
    linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
}

.chat-message.user {
  background: linear-gradient(135deg, #111827, #020617);
}

.chat-message.bot {
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.chat-input-area {
  border-top: 1px solid #dbe3ef;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.05);
}

.chat-input-area button {
  background: linear-gradient(135deg, #111827, #020617);
}

/* 모바일 앱형 UI */
@media (max-width: 767px) {
  .hero {
    padding-top: 46px;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }

  .hero-copy h1 span {
    display: block;
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .badge {
    font-size: 12px;
  }

  .ranking-title h2 {
    font-size: 28px;
  }

  .ranking-card {
    border-radius: 24px;
    padding: 22px;
  }

  .ranking-stats div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .chat-floating-btn {
    margin-left: auto;
  }

  .chat-panel {
    height: 74vh;
    border-radius: 26px;
  }
}

@media (min-width: 900px) {
  .ranking-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: stretch;
  }

  .ranking-card.first {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .hero-points {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-points div {
    border-left: 0;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .hero-points strong {
    font-size: 13px;
  }

  .hero-points p {
    font-size: 12px;
    line-height: 1.4;
  }
}


/* =========================
   PATCH 25.1 - HERO METRIC BOX REDESIGN
========================= */

.partner-metric-box {
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.9));
  border: 1px solid rgba(250, 204, 21, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.partner-metric-box .metric-card {
  padding: 26px 24px;
  border-bottom: 1px solid rgba(250, 204, 21, 0.16);
}

.partner-metric-box .metric-card:last-child {
  border-bottom: 0;
}

.metric-label {
  display: block;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
}

.metric-value {
  display: block;
  color: #facc15;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.metric-value.text {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.03em;
}

.metric-desc {
    color: #cbd5e1;
    opacity: .9;
    font-size: 13px;
    line-height: 1.55;
}

@media (min-width: 768px) {
  .partner-metric-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
  }

  .partner-metric-box .metric-card {
    border-bottom: 0;
    border-right: 1px solid rgba(250, 204, 21, 0.16);
  }

  .partner-metric-box .metric-card:last-child {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .partner-metric-box {
    margin-top: 28px;
  }

  .partner-metric-box .metric-card {
    padding: 24px 22px;
  }

  .metric-value {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .notice-text {
    padding: 0 8px;
    line-height: 1.5;
    margin-top: 14px;
  }

  .metric-desc {
    font-size: 12px;
    line-height: 1.6;
  }

  .metric-value.text {
    font-size: 24px;
    line-height: 1.35;
    word-break: keep-all;
  }
}

/* =========================
   PATCH 26 - SUPPLY BOARD REDESIGN
========================= */

.supply-board-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.22), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(250, 204, 21, 0.13), transparent 28%),
    linear-gradient(135deg, #020617, #0f172a);
  padding: 68px 18px;
}

.supply-board-title {
  margin-bottom: 34px;
}

.supply-board-title p {
  color: #facc15;
  letter-spacing: 0.05em;
}

.supply-board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.supply-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.supply-card.featured {
  border-color: rgba(250, 204, 21, 0.42);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(250, 204, 21, 0.08);
}

.supply-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
}

.supply-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.supply-type {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.supply-type.baseball {
  background: rgba(34, 197, 94, 0.13);
  color: #4ade80;
}

.supply-type.concert {
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
}

.supply-status {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.supply-status.available {
  color: #facc15;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.22);
}

.supply-status.pending {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.supply-card h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.055em;
  margin-bottom: 8px;
}

.supply-place {
  position: relative;
  z-index: 2;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.supply-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.supply-meta div {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  padding: 14px;
}

.supply-meta span {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.supply-meta strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.supply-cta {
  position: relative;
  z-index: 2;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: #111827;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.22);
}

.supply-board-notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
}

.supply-board-notice span {
  color: #22c55e;
  margin-right: 6px;
}

@media (min-width: 900px) {
  .supply-board-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }

  .supply-card.featured {
    transform: translateY(-8px);
  }
}

@media (max-width: 767px) {
  .supply-board-section {
    padding: 54px 16px;
  }

  .supply-card {
    border-radius: 24px;
    padding: 20px;
  }

  .supply-card h3 {
    font-size: 20px;
  }

  .supply-meta {
    grid-template-columns: 1fr 1fr;
  }

  .supply-meta div {
    padding: 12px;
  }

  .supply-cta {
    height: 48px;
  }
}

.supply-meta strong {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.supply-meta strong .trend-up {
  color: #22c55e !important;
  font-size: 0.8em;
  font-weight: 950;
}

.supply-meta strong .trend-down {
  color: #ef4444 !important;
  font-size: 0.8em;
  font-weight: 950;
}

/* =========================
   PATCH 28 - RECENT ORDER AUTO THUMBNAILS
========================= */

.order-item {
  overflow: hidden;
}

.ticket-img {
  position: relative;
  overflow: hidden;
}

.ticket-img::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
}

.ticket-img.baseball {
  background:
    linear-gradient(135deg, #f97316, #7c2d12 55%, #111827);
}

.ticket-img.concert {
  background:
    linear-gradient(135deg, #8b5cf6, #4c1d95 58%, #111827);
}

.ticket-img.sports {
  background:
    linear-gradient(135deg, #22c55e, #14532d 58%, #111827);
}

/* PATCH 29 - PARTNER BENEFITS */

.partner-benefit-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(250, 204, 21, 0.25);
}

.partner-benefit-box h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #facc15, #f97316);
  font-size: 20px;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.benefit-item p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  word-break: keep-all;
}

.commission-summary{
    margin-top:18px;
    text-align:center;
}

.commission-main{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.commission-start{
    padding:10px 16px;
    border-radius:999px;
    background:rgba(250,204,21,.12);
    color:#facc15;
    font-weight:800;
    font-size:14px;
}

.commission-arrow{
    color:#64748b;
    font-size:18px;
    font-weight:700;
}

.commission-max{
    padding:10px 18px;
    border-radius:999px;
    background:linear-gradient(135deg,#facc15,#f97316);
    color:#111827;
    font-weight:900;
    font-size:15px;
}

.commission-desc{
    margin-top:10px;
    color:#94a3b8;
    font-size:13px;
}

.commission-highlight{
    margin-top:16px;
    padding:14px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(250,204,21,.15);
    text-align:center;
}

.commission-main{
    font-size:20px;
    font-weight:900;
    color:#facc15;
}

.commission-desc{
    margin-top:6px;
    color:#94a3b8;
    font-size:13px;
}

.supply-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.supply-board-card {
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(255, 199, 0, 0.28);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.supply-board-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.supply-board-head span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd21a, #ff9500);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.supply-board-head h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.supply-board-head p {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 13px;
}

.supply-board-list {
  display: grid;
  gap: 12px;
}

.supply-row {
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 16px;
}

.supply-row-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
}

.supply-row-sub {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 10px;
}

.supply-seat-lines {
  display: grid;
  gap: 6px;
}

.supply-seat-line {
  display: flex;
  justify-content: space-between;
  color: #e5e7eb;
  font-size: 13px;
}

.supply-example-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 199, 0, 0.16);
  color: #ffd21a;
  font-size: 11px;
  font-weight: 800;
}

.concert-board-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: start;
}

.concert-thumb {
  width: 74px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
  background: #111827;
}

.supply-board-empty {
  color: #94a3b8;
  font-size: 14px;
  padding: 20px;
  text-align: center;
}

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

  .supply-board-card {
    padding: 18px;
  }
}

.baseball-date-group {
  display: grid;
  gap: 10px;
}

.baseball-game-row {
  padding: 14px;
}

.supply-more-btn {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(255, 210, 26, 0.4);
  border-radius: 14px;
  background: rgba(255, 210, 26, 0.12);
  color: #ffd21a;
  font-weight: 900;
  cursor: pointer;
}

.concert-slider {
  display: grid;
  gap: 14px;
}

.concert-slide-card {
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}

.concert-slide-thumb {
  width: 120px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
  background: #111827;
}

.concert-slide-body {
  min-width: 0;
}

.concert-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.concert-slider-controls button {
  border: 1px solid rgba(255, 210, 26, 0.4);
  background: rgba(255, 210, 26, 0.12);
  color: #ffd21a;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  cursor: pointer;
}

.concert-slider-controls span {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 800;
}

.baseball-matchup {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-weight: 900;
}

.team-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.vs-text {
  color: #ffd21a;
  font-size: 12px;
  font-weight: 900;
  margin: 0 2px;
}

.stadium-text {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

/* PATCH - 공급현황 카드 하단 과도한 여백 제거 */

.supply-board-list {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

.baseball-date-group {
  height: auto !important;
  min-height: 0 !important;
}

.baseball-game-row {
  min-height: 0 !important;
}

/* PATCH FINAL - 콘서트 카드 야구 카드 높이 균형 */
.concert-slide-grid {
  display: grid !important;
  gap: 18px !important;
}

.concert-slide-card {
  height: 178px !important;
  min-height: 178px !important;
  padding: 16px 18px !important;
  display: grid !important;
  grid-template-columns: 118px 1fr !important;
  gap: 18px !important;
  align-items: start !important;
}

.concert-slide-thumb {
  width: 118px !important;
  height: 146px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
}

.concert-slider-controls {
  margin-top: 20px !important;
}

.concert-slide-title,
.concert-slide-body .supply-row-top {
  font-size: 17px !important;
  line-height: 1.3 !important;
  margin-bottom: 7px !important;
}

.concert-slide-meta,
.concert-slide-body .supply-row-sub {
  font-size: 12px !important;
  margin-bottom: 10px !important;
}

.concert-seat-summary-line,
.concert-slide-body .supply-seat-line {
  font-size: 12px !important;
  line-height: 1.45 !important;
}

@media (max-width: 720px) {
  .concert-slide-card {
    height: auto !important;
    min-height: 150px !important;
    grid-template-columns: 94px 1fr !important;
  }

  .concert-slide-thumb {
    width: 94px !important;
    height: 124px !important;
  }
}

/* PATCH FINAL - 공급현황 좌우 카드 높이 통일 */
.supply-board-grid {
  align-items: stretch !important;
}

.supply-board-card {
  height: 100% !important;
  min-height: 0 !important;
  align-self: stretch !important;
  display: flex !important;
  flex-direction: column !important;
}

.supply-board-list {
  flex: 1 !important;
}

.concert-slider {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.concert-slide-grid {
  flex: 1 !important;
  display: grid !important;
  gap: 18px !important;
}

.concert-slider-controls {
  margin-top: 20px !important;
}

/* PATCH - 모바일 야구 날짜 배지 줄바꿈 방지 */
.supply-example-badge {
  white-space: nowrap !important;
  min-width: max-content !important;
}

@media (max-width: 520px) {
  .supply-row-top {
    align-items: flex-start !important;
  }

  .baseball-matchup {
    max-width: calc(100% - 118px);
  }

  .supply-example-badge {
    font-size: 10px !important;
    padding: 5px 8px !important;
  }
}

/* PATCH - 모바일 콘서트 카드 배열 개선 */
@media (max-width: 520px) {
  .concert-slide-card {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .concert-slide-thumb {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    max-height: 260px !important;
    object-fit: cover !important;
    margin-bottom: 14px !important;
  }

  .concert-slide-title,
  .concert-slide-body .supply-row-top {
    font-size: 17px !important;
    line-height: 1.35 !important;
  }

  .concert-slide-meta,
  .concert-slide-body .supply-row-sub {
    font-size: 12px !important;
  }
}

@media (max-width: 520px) {

  .concert-slide-card {
    display: block !important;
    min-height: 0 !important;
    padding: 16px !important;
  }

  .concert-slide-thumb {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    margin-bottom: 14px !important;
  }

}

/* PATCH FINAL - 모바일 가로 밀림 방지 */
@media (max-width: 767px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .hero,
  .hero-inner,
  .dashboard-preview,
  .dashboard-card,
  .partner-benefit-box,
  .supply-board-section,
  .supply-board-grid,
  .supply-board-card,
  .apply-section,
  .apply-copy,
  .apply-form {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-points,
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .dashboard-card {
    padding: 16px !important;
  }

  .metric-value,
  .stats-grid strong {
    font-size: 28px !important;
    word-break: break-all !important;
  }

  .hero-copy h1 {
    font-size: 34px !important;
    word-break: keep-all !important;
  }

  .hero-desc {
    word-break: keep-all !important;
  }
}

@media (max-width: 520px) {
  .benefit-item p {
    line-height: 1.6;
    word-break: keep-all;
  }
}

/* PATCH - Header / Dashboard brand tone */
.brand b,
.dashboard-head strong span {
  color: #ffd21a !important;
}

.brand-icon {
  background: linear-gradient(135deg, #ffd21a, #ff9500) !important;
  color: #071327 !important;
  box-shadow: 0 10px 26px rgba(255, 210, 26, 0.32) !important;
}

.menu-btn {
  background: rgba(255, 210, 26, 0.12) !important;
  border: 1px solid rgba(255, 210, 26, 0.28) !important;
  color: #ffd21a !important;
}

.header {
  background: rgba(2, 6, 23, 0.94) !important;
  border-bottom: 1px solid rgba(255, 210, 26, 0.16) !important;
}

.dashboard-head em {
  color: #ffd21a !important;
  font-weight: 800 !important;
}

/* PATCH - Hero metric box premium redesign */
.partner-metric-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 210, 26, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96));
  border: 1px solid rgba(255, 210, 26, 0.28);
}

.partner-metric-box .metric-card {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.partner-metric-box .metric-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(255, 210, 26, 0.09);
}

.metric-label {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 900;
}

.metric-value {
  margin: 10px 0 12px;
  color: #ffd21a;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.metric-value.text {
  font-size: 30px;
  line-height: 1.25;
}

.metric-desc {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 767px) {
  .partner-metric-box {
    padding: 12px;
  }

  .partner-metric-box .metric-card {
    padding: 20px;
  }
}