html {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#root {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.loading-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fff0f6 0%, #fce4ef 50%, #ef4388 100%);
  z-index: 10;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.cc-reward-hero {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cc-market {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.cc-market-header {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.cc-market-brandline {
  margin: 0;
  color: #c61d62;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.cc-market-header .cc-land-nav {
  display: none;
}

.cc-market-title {
  margin: 12px 0 6px;
  color: #10162f;
  font-size: clamp(40px, 9vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-align: left;
}

.cc-market-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cc-market-region {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 26px;
  border: 1px solid rgba(16, 22, 47, 0.1);
  background: #fff;
  color: #10162f;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-market-region__suffix {
  flex-shrink: 0;
  color: rgba(16, 22, 47, 0.55);
  font-size: 13px;
}

.cc-market-register {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ef4388, #ff6aa8);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(239, 67, 136, 0.18);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.cc-market-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 26px;
  border: 1px solid rgba(16, 22, 47, 0.08);
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 22, 47, 0.05);
}

.cc-market-search__icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  opacity: 0.55;
}

.cc-market-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #10162f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.cc-market-search__input::placeholder {
  color: rgba(16, 22, 47, 0.42);
  font-weight: 600;
}

.cc-market-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px 0 4px;
}

.cc-market-chips::-webkit-scrollbar {
  display: none;
}

.cc-market-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 22, 47, 0.1);
  background: #fff;
  color: #10162f;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cc-market-chip.is-active {
  border-color: #ef4388;
  color: #c61d62;
  background: rgba(239, 67, 136, 0.06);
  box-shadow: inset 0 0 0 1px rgba(239, 67, 136, 0.18);
}

.cc-market-results {
  display: grid;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(16, 22, 47, 0.08);
}

.cc-market-results__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.cc-market-results__category {
  margin: 0;
  color: #10162f;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cc-market-sort {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #10162f;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cc-market-results__count {
  margin: 0;
  color: rgba(16, 22, 47, 0.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.cc-home-tabs {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.cc-home-tab {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(16, 22, 47, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #10162f;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cc-home-tab.is-active {
  border-color: #ef4388;
  background: rgba(239, 67, 136, 0.08);
  color: #c61d62;
}

.cc-home-panels {
  display: grid;
  gap: 24px;
}

.cc-home-panel[hidden] {
  display: none !important;
}

.cc-market-sort-group {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cc-market-sort {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 22, 47, 0.1);
  border-radius: 999px;
  background: rgba(16, 22, 47, 0.04);
  color: #10162f;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cc-market-sort.is-active {
  border-color: #ef4388;
  background: #ef4388;
  color: #fff;
  box-shadow: 0 10px 20px rgba(239, 67, 136, 0.18);
}

.cc-nearby-rail,
.cc-local-rail {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.cc-rail-head {
  display: grid;
  gap: 4px;
}

.cc-rail-kicker {
  margin: 0;
  color: #ef4388;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-rail-title {
  margin: 0;
  color: #10162f;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.cc-nearby-list,
.cc-local-list {
  display: grid;
  gap: 12px;
}

.cc-spot-card,
.cc-local-card {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 22, 47, 0.08);
  box-shadow: 0 10px 24px rgba(16, 22, 47, 0.05);
}

.cc-spot-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cc-spot-card__badge,
.cc-local-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(239, 67, 136, 0.1);
  color: #c61d62;
  font-size: 12px;
  font-weight: 800;
}

.cc-spot-card__distance {
  color: rgba(16, 22, 47, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.cc-spot-card__title,
.cc-local-card__title {
  margin: 0;
  color: #10162f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.cc-spot-card__meta,
.cc-local-card__meta,
.cc-spot-card__desc {
  margin: 0;
  color: rgba(16, 22, 47, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.cc-spot-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: #ef4388;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.reward-scope-label {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  color: #071022;
}

.reward-section-title {
  margin: 0 0 12px;
  color: #10162f;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.reward-section-desc {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #5b5566;
}

.cc-reward-empty {
  margin: 0;
  padding: 28px 16px;
  border-radius: 20px;
  background: rgba(16, 22, 47, 0.04);
  color: rgba(16, 22, 47, 0.72);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}

.cc-reward-empty[hidden] {
  display: none;
}

.cc-reward-head {
  margin-bottom: 16px;
}

.cc-reward-kicker {
  margin: 0 0 10px;
  color: #ef4388;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cc-reward-head h1 {
  margin: 0;
  color: #10162f;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.cc-reward-subcopy {
  margin: 12px 0 0;
  color: rgba(13, 16, 32, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.cc-reward-list {
  display: grid;
  gap: 14px;
}

.cc-reward-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 22, 47, 0.08);
  box-shadow: 0 10px 24px rgba(16, 22, 47, 0.06);
  text-decoration: none;
  color: inherit;
}

.cc-reward-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 168px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #ffe3ef, #ffd0e3);
}

.reward-event-image-wrap.is-fallback {
  background: linear-gradient(135deg, #ffd4e7, #f7b8d7);
}

.cc-reward-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reward-event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-reward-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 22, 47, 0.16) 100%);
  pointer-events: none;
}

.cc-reward-card__body {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.cc-reward-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-reward-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.cc-reward-badge--dc {
  background: rgba(239, 67, 136, 0.12);
  color: #c61d62;
}

.cc-reward-badge--points {
  background: rgba(16, 22, 47, 0.08);
  color: #10162f;
}

.cc-reward-card__brand {
  margin: 0;
  color: rgba(13, 16, 32, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.cc-reward-card__title {
  margin: 0;
  color: #10162f;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.cc-reward-card__meta {
  margin: 0;
  color: rgba(13, 16, 32, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.cc-reward-card__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  color: #10162f;
}

.cc-reward-card__price-now {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.cc-reward-card__price-origin {
  color: rgba(13, 16, 32, 0.45);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 700;
}

.cc-reward-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cc-reward-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4388, #ff6aa8);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(239, 67, 136, 0.18);
}

.cc-reward-card__detail {
  color: rgba(13, 16, 32, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.cc-reward-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(13, 16, 32, 0.62);
  z-index: 999;
}

.cc-reward-modal.is-open {
  display: flex;
}

.cc-reward-modal__panel {
  width: min(680px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.cc-reward-modal__hero {
  padding: 18px 18px 0;
}

.cc-reward-modal__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 200px;
  background: linear-gradient(135deg, #ffe1ee, #ffd0e3);
}

.cc-reward-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-reward-modal__media .reward-event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-reward-modal__body {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.cc-reward-modal__title {
  margin: 0;
  color: #10162f;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.cc-reward-modal__copy {
  margin: 0;
  color: rgba(13, 16, 32, 0.78);
  line-height: 1.7;
}

.cc-reward-modal__section {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #f8f9fd;
}

.cc-reward-modal__section h3 {
  margin: 0;
  color: #10162f;
  font-size: 15px;
  font-weight: 900;
}

.cc-reward-modal__section p,
.cc-reward-modal__section li,
.cc-reward-modal__section label {
  color: rgba(13, 16, 32, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.cc-reward-quiz {
  display: grid;
  gap: 10px;
}

.cc-reward-quiz__options {
  display: grid;
  gap: 10px;
}

.cc-reward-quiz__option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(16, 22, 47, 0.1);
  background: #fff;
  cursor: pointer;
}

.cc-reward-quiz__option input {
  margin: 0;
}

.cc-reward-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cc-reward-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #ef4388, #ff6aa8);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.cc-reward-modal__button--ghost {
  background: #eef1f8;
  color: #10162f;
}

.cc-reward-modal__status {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(239, 67, 136, 0.1);
  color: #c61d62;
  font-size: 14px;
  font-weight: 800;
}

.cc-reward-modal__status.is-visible {
  display: block;
}

.cc-hidden-marketing .cc-hero,
.cc-hidden-marketing .cc-flow-strip,
.cc-hidden-marketing .cc-section,
.cc-hidden-marketing .cc-mid-banner,
.cc-hidden-marketing .cc-land-footer {
  display: none;
}
