/* 기본 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  word-break: keep-all;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'suit';
}

body {
  color: #222;
}

li {
  list-style: none;
}

table {
    border-collapse: collapse;
}

.reward-event-section .inner {
  width: 1030px;
  margin: 0 auto;
}

.live-banner {
  display: none;
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
  background: #0f172a;
  color: #cbd5f5;
  font-size: 14px;
  overflow: hidden;
  z-index: 9;
}

.live-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 40px;
  padding: 0 24px;
}

/* 라이브 텍스트 */
.live-label {
  color: #22c55e;
  font-weight: 600;
  white-space: nowrap;
}

/* 트랙 */
.live-track {
  overflow: hidden;
  flex: 1;
}

/* 움직이는 영역 */
.live-list {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

/* 아이템 */
.live-list span {
  white-space: nowrap;
}

/* 애니메이션 */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 배너 */
.top-banner {
  background: linear-gradient(127deg, #ddedff, #ffe9d3);
  background: linear-gradient(127deg, #eef5ff 0%, #fff4e6 100%);
  background: linear-gradient(180deg, #a8d5ff 0%, #ffffff 100%);
  background: linear-gradient(180deg, #96baff  0%, #fbfbfb 100%);
  padding: 60px 0 0;
}


.top-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(rgba(255,255,255,0.9) 0.5px, transparent 0.5px),
    radial-gradient(rgba(0,0,0,0.6) 0.5px, transparent 0.5px);
  background-size: 8px 8px, 11px 11px;
  background-position: 0 0, 4px 3px;
  mix-blend-mode: overlay;
}

.top-banner .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-left {
  position: relative;
  width: fit-content;
}

.banner-left .coin-img img {
  position: absolute;
  right: -100px;
  opacity: 0.8;
}

.banner-left .coin-img img.reward-coin-1 {
  right: -140px;
}

.banner-left .coin-img img.reward-coin-2 {
  bottom: 16px;
}

.top-banner .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  color: #005AD1;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 18px;
}

.top-banner h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -1.2px;
  line-height: 1.4;
}

.top-banner h1 strong {
  color: #005AD1;
background: linear-gradient(90deg, #2563eb, #092fbf, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1.2px;
}

.main-reward-top-banner h1 {
  font-size: 48px;
}

.top-banner .desc {
  color: #333;
  font-weight: 500;
  font-size: 18px;
}

.top-banner .desc em {
  color: #2E88FF;
  font-style: normal;
  font-weight: 600;
}

/* 참여자 */
.live-count {
margin-bottom: 32px;
  font-size: 18px;
  font-weight: 500;
}
.live-count.highlight {
  margin: 16px 0;
  font-size: 18px;
  font-weight: 700;
  color: #ff6b00;
}
.reward-top-text {
  margin-bottom: 24px;
  padding: 8px 18px;
  background: linear-gradient(90deg, #ffe8b0, #ffd36b);
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #8a5a00;
  box-shadow: 0 4px 10px rgba(255, 180, 0, 0.3);
}

/* 버튼 */
.btn-group {
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
  margin-top: 32px;
}
.btn {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px
}

.btn.primary.big:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(46,136,255,0.4);
}
.btn img {
  width: 20px;
}
.btn.primary {
  background: linear-gradient(342deg, #003b89 0.51%, #0063e5 100%);
  color: #fff;
}
.btn.secondary {
  border: 2px solid #8bbdff;
  color: #2E88FF;
  background: rgba(255, 255, 255, 0.3);
}

.btn.svy-registration {
    width: 66%;
    height: 56px;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto;
    background-color: #111;
    border: 0;
    border-radius: 50px;
    color: #fff;
}

.sub-text {
    font-size: 14px;
    color: #666;
}

/* 트로피 */
.banner-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trophy-list {
  position: relative;
  width: auto;
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.trophy-list::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 300px;
  transform: translate(-50%, -50%);
  
    background: radial-gradient(circle, rgb(112 0 255 / 68%) 0%, rgb(0 104 237 / 32%) 30%, rgb(37 151 235) 55%, rgba(37, 99, 235, 0.08) 70%, transparent 85%);
    filter: blur(60px);
  z-index: 1;
}

.trophy {
  position: absolute;
  width: auto;
  height: auto;
  border-radius: 20px;
  /* background: #181818; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #eef6fe;
  box-shadow: 0px 0px 10px #7793adcc;
  padding: 20px 16px;
}

.trophy img {
    height: 86px;
    max-height: 100%;
}

.trophy.first {
  left: 50%;
  transform: translateX(-50%) scale(1.15);
  z-index: 3;
  border: 4px solid #f18800;
  /* background: linear-gradient(0deg, #FFEDD0 0%, #FFFFFF 100%);
  box-shadow: 0 0px 20px rgba(255, 180, 0, 0.4); */
  box-shadow: 0px 0px 10px #0084ff85;
}

.trophy.second {
  left: 45%;
  transform: translateX(-146%)scale(0.95);
  z-index: 1;
  border: 5px solid #8E8E8E;
  /* background: linear-gradient(180deg, #FFFFFF 0%, #D8D8D8 100%); */
}

.trophy.third {
  left: 50%;
  transform: translateX(48%)scale(0.95);
  z-index: 1;
  border:  5px solid #BF7600;
  /* background: linear-gradient(0deg, #ffe1c1 0%, #FFFFFF 100%); */
}

.trophy .rank {
    padding: 2px 16px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.trophy.first .rank {
/* background: linear-gradient(76.41deg, #FFAA21 6.85%, #E48C00 98.59%); */
background-color: #f18800;
font-size: 20px;
}

.trophy.second .rank {
/* background: linear-gradient(180deg, #8696A2 0%, #43525D 100%); */
background-color: #425767;
}

.trophy.third .rank {
/* background: linear-gradient(180deg, #C58344 0.38%, #743900 99.39%); */
background-color: #7E3E00;
}

.trophy .reward-price {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.trophy .reward-price small {
    font-size: 14px;
    font-weight: 500;
}

.trophy.first .reward-price {
    color: #f18800;
      /* background: linear-gradient(90deg, #E98F07, #F6C42A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
} 

.trophy.second .reward-price {
    color: #414141;
} 

.trophy.third .reward-price {
    color: #6D3500;
} 

/* 트로피 애니메이션 */

/* 공통 */
.trophy {
  transition: all 0.25s ease;
}

/* 1등 */
.trophy.first:hover {
  transform: translateX(-50%) scale(1.2) translateY(0);
}

/* 2등 */
.trophy.second:hover {
  transform: translateX(-130%) scale(1) translateY(0);
}

/* 3등 */
.trophy.third:hover {
  transform: translateX(46%) scale(1) translateY(0);
}


.banner-right .info-box {
    width: calc(100% + 52px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgb(255 255 255 / 52%);
    box-shadow: 0 8px 10px rgb(219 202 183 / 18%);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.banner-right .info-box .info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.banner-right .info-box .info .img-box {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.banner-right .info-box .info.date .img-box {
    background: #d6f1e0;
}

.banner-right .info-box .info.price .img-box {
    background: #FBEECE;
}

.banner-right .info-box .info.number .img-box {
    background: #ECE1FD;
}

.banner-right .info-box .info .img-box img {
    height: 20px;
}

/* 정보 카드 */
/* .content {
  padding: 40px 0;
} */
.info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  gap: 20px;
}

.info-item {
  text-align: center;
}
.info-item .label {
  display: block;
  font-size: 14px;
  color: #888;
}
.info-item strong {
  font-size: 20px;
  color: #2E88FF;
}

.divider {
  width: 1px;
  height: 30px;
  background: #eee;
}

.info-txt span {
    font-size: 14px;
    font-weight: 500;
}

.info-txt p {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-stats-bar {
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  /* border: 3px solid rgb(226 237 255); */
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  box-shadow: 0px -10px 20px #c0d5e93b;
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 0;
  margin-top: 40px;
}

.hstat-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

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

.hstat-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.hstat img {
  width: 28px;
}

.hstat-label {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
}

.hstat-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.hstat-value {
    font-size: 24px;
    font-weight: 800;
    color: #222;
    display: flex;
    line-height: 1;
    align-items: anchor-center;    
    justify-content: flex-start;
    width: 100%;
}

.hstat-value em {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-left: 2px;
    opacity: 0.85;
}

.hstat--countdown .hstat-body {
  flex-direction: column;
  align-items: center;
}

.hstat--countdown .hstat-label {
    font-size: 18px;
    font-weight: 700;
    color: #3e81e5;
}

.countdown-row {
    display: flex;
    align-items: start;
    gap: 4px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.cd-unit {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.cd-num {
  font-size: 28px;
  font-weight: 600;
  color: #a6d0ff;
  background: #000;
  border-radius: 8px;
  padding: 6px 8px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -2px 6px rgba(0, 0, 0, 0.1);
}

.cd-num--seconds {
    color: #ffffff;
    animation: second-flash-9ad67eb8 1s step-start infinite;
}

.cd-colon {
  padding-top: 8px; 
  font-size: 24px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}


/* 섹션 */
.rank-section {
  padding: 60px 0;
  background: #f6f8fb;
}

.rank-section .inner {
    padding: 0 60px;
}

/* 헤더 */
.rank-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.tab {
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #4c4f55;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
    border: 0;
    background: #f0f0f0;
}

.tab.active {
    color: #ffffff;
    border: 1px solid #6c9af5;
    background: linear-gradient(342deg, #529cff 0.51%, #004bad 100%);
    font-weight: 600;
}

.rank-wrap,
.how-wrap {
  transition: opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  padding: 32px;
  border-radius: 0 0 16px 16px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

.hide {
  display: none;
  opacity: 0;
}

.update-info {
font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    background: #ecfdf5;
    border: 1px solid #C3EEDB;
    padding: 8px 12px;
    border-radius: 20px;
}

/* 설명 */
.rank-desc {
    font-size: 14px;
  color: #666;
}

/* 테이블 감싸기 */
.rank-table-wrap {
  /* border-radius: 12px; */
  overflow: hidden;
  /* box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb; */
}

/* 테이블 */
.rank-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  table-layout: fixed;
}

.rank-table th:nth-child(1),
.rank-table td:nth-child(1) {
  width: 80px;
}

.rank-table th:nth-child(4),
.rank-table td:nth-child(4) {
  width: 120px;
  padding: 16px 24px 16px 16px;
  text-align: center;
}

/* 헤더 */
.rank-table thead {
  background: #eceff3;
}

.rank-table th {
  text-align: left;
  padding: 16px 24px;
  font-size: 14px;
  color: #525A6B;
  font-weight: 500;
}

/* 바디 */
.rank-table td {
  padding: 16px 24px;
  border-top: 1px solid #EAECF0;
}

.rank-table td:first-child {
  font-size: 16px;
  font-weight: 500;
  color: #667085;
  text-align: center;
}

.rank-table tr:first-child td.rank span:first-child,
.rank-table tr:nth-child(2) td.rank span:first-child,
.rank-table tr:nth-child(3) td.rank span:first-child {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50px;
  color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto;
}


.rank-table tr:first-child td.rank span:first-child {
  background: #F7C661;

}

.rank-table tr:nth-child(2) td.rank span:first-child {
  background: #A6B0C0;
}

.rank-table tr:nth-child(3) td.rank span:first-child {
  background: #BC7745;
}

/* hover */
.rank-table tbody tr:hover {
  background: #f8fbff;
}

/* 순위 */
.rank {
  font-size: 18px;
}

/* 유저 */
.user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.user .change img {
  margin-right: 8px;
}

.user .profile_thumb.no_img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    background: #e7e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user .profile_thumb.no_img span {
  font-size: 14px;
  color: #666;
      font-weight: 500;
}

.user .name {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

.change {
  display: flex;
  align-items: baseline;
  font-size: 12px;
  font-weight: 600;
  /* padding: 2px 6px; */
  border-radius: 50px;
}

.change.up {
  color: #027A48;
  /* background: #ECFDF3; */
}

.change.down {
  color: #B42318;
  /* background: #FEF3F2; */
}

.change.up img {
  transform: rotate(180deg);
  filter: invert(56%) sepia(32%) saturate(3028%) hue-rotate(112deg) brightness(92%) contrast(86%);
}

.change.down img {
filter: invert(48%) sepia(79%) saturate(5629%) hue-rotate(343deg) brightness(99%) contrast(90%);
}

.change img {
  width: 12px;
  height: 12px;
}

/* 점수 */
.score strong {
  color: #2b6ef2;
  display: block;
  font-size: 14px;
  font-weight: 700;
  float: inline-start;
}

.score .sub {
  font-size: 12px;
  color: #aaa;
}

.score > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score > div span {
  font-size: 12px;
  color: #888;
}

/* 프로그레스바 */
.progress-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

 #progress {
    appearance: none;
    width: 80px;
    height: 6px;
}
#progress::-webkit-progress-bar {
    background:#fdfeff;
    border-radius:10px;
    box-shadow: inset 3px 3px 10px #ccc;
}
#progress::-webkit-progress-value {
    border-radius:50px;
    background: #68aaff;
    background: linear-gradient(90deg, #99c3fa 0%, #68aaff 100%);
}

/* Chrome, Safari */
#progress::-webkit-progress-value {
  background: linear-gradient(90deg, #99c3fa 0%, #68aaff 100%);
}

/* Firefox */
#progress::-moz-progress-bar {
  background: linear-gradient(90deg, #99c3fa 0%, #68aaff 100%);
}


/* 오늘 점수 */
.today>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.today>div img {
  width: 14px;
  height: 14px;
  filter: invert(48%) sepia(79%) saturate(5629%) hue-rotate(343deg) brightness(99%) contrast(90%);

}

.today>div span {
  font-weight: 500;
  font-size: 14px;
  color: #EB002F;
}

.rank-noti {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 16px;
}

/* 이벤트 설명 */
.event-info {
  padding: 60px 0;
}

.event-info .inner .container {
    padding: 0 60px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.section-header .section-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header .section-title img {
  width: 24px;
}

.section-icon-wrap {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.info-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 16px;
}

.info-box-title  {
    font-size: 16px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 14px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #1e1b4b;
    background: #f6f6f6;
    text-align: left;
    transition: background 0.15s ease;
}

.accordion-line {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 4px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}


.accordion-line .num {
  font-size: 20px;
  font-weight: 300;
  color: #2e88ff;
}

.accordion-item{
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item--open {
    border-color: #9ec8ff;
}


.accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordion-item--open .accordion-body {
  max-height: 500px; /* 충분히 크게 */
  opacity: 1;
}

.accordion-chevron {
  transition: transform 0.3s ease;
}

/* 열렸을 때 */
.accordion-item--open .accordion-chevron {
  transform: rotate(180deg);
  color: #2E88FF;
}


.accordion-body .body-txt {
    padding: 24px 24px 20px;
}

.info-list li {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    padding-left: 0;
}

.accordion-body table {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}

.accordion-body th,
.accordion-body td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

.accordion-body th {
  background: #f5f7fa;
  font-weight: 600;
}

/* 참여방법 */
.how-wrap {
  display: none;
}

.how-cards {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin: 24px 0;
}

.how-card {
    flex: 1;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px 22px;
    transition: all 0.25s ease;
    cursor: default;
}

.how-num {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
    background: #C7DFFF;
    color: #005AD1;
}

.how-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.how-card .num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #2e89ff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 16px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.how-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.how-step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #005AD1;
    flex-shrink: 0;
}

.how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-plus img{
    width: 40px;
    height: 40px;
    filter: invert(50%) sepia(70%) saturate(3699%) hue-rotate(197deg) brightness(99%) contrast(103%);
}

.formula-box {
    background: linear-gradient(174deg, #e2efff, #ffffff);
    border: 1px solid #d2e3f7;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 28px;
}

.formula-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: #2e89ff;
    color: #fff;
    width: fit-content;
    padding: 2px 12px;
    border-radius: 50px;
}

.formula {
    font-size: 15px;
    color: #1e1b4b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.formula-bullets {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.formula-bullet {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.bullet-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #005AD1;
    flex-shrink: 0;
    margin-top: 6px;
}

.min-score-viz {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #c3d5ed;
}

.min-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.min-score-rank {
    font-size: 14px;
    font-weight: 700;
    color: #1e1b4b;
    width: 28px;
    flex-shrink: 0;
}

.min-score-bar-wrap {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    overflow: hidden;
}

.min-score-bar {
    height: 100%;
    border-radius: 100px;
    transition: width 1s ease;
}

.min-score-val {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    width: 80px;
    text-align: right;
    flex-shrink: 0;
}

/* 설문광장 리워드 마이페이지 */
.reward-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* 랭킹 카드 */
.rank_card {
  background: linear-gradient(356deg, #3879db, #5fa0f5);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
  margin-bottom: 40px;
}

.rank_top .badge {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.6);
  color: #005AD1;
  font-weight: 600;
  padding: 6px 12px;
}

.rank_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 20px;
}

.rank_left h2 {
  font-size: 28px;
}

/* 프로그레스 */
.progress_wrap {
  position: relative;
  height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

.progress_bar {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #ffb100, #ff5c5c);
  border-radius: 10px;
}

.progress_dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}

.progress_dot:nth-child(2) { left: 80%; }
.progress_dot:nth-child(3) { left: 90%; }
.progress_dot:nth-child(4) { left: 100%; transform: translate(-12px, -8px);}

/* 오른쪽 */
.rank_right {
  text-align: right;
}

.rank_right .score {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rank_right .score-txt {
  opacity: 0.6;
  font-size: 18px;
}

.rank_right h1 {
  font-size: 32px;
  margin: 0;
}

/* 설문 영역 */
.survey_section {
  margin-bottom: 60px;
}

.survey_section:last-child {
  margin-bottom: 0;
}

.survey_section h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.survey_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 카드 */
.survey_card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border: 1px solid #E5E7EB;
}

.survey_card:hover {
  background: #f8f8f8;
}

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

.survey_header .header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.survey_header h4 {
  width: 100%;
  font-size: 18px;
}

.survey_header .badge {
  margin-bottom: 0;
}

.status {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: end;
}

.status a {
  color: #2E88FF;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status a img {
  width: 10px;
  transform: rotate(-90deg);
  filter: invert(60%) sepia(97%) saturate(4822%) hue-rotate(201deg) brightness(104%) contrast(101%);
}

.badge {
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.badge.green {
  background: #DCFCE7;
  color: #008236;
}

.survey_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.survey_info > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.survey_card .label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

.blue {
  color: #4a90e2;
  font-size: 20px;
}

/* 페이지네이션 */
.pagination {
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pagination span {
    cursor: pointer;
    display: inline-block;
    width: 28px;
    height: 28px;
    font-weight: 500;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .active {
    background: #4a90e2;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
}

/* 설문 응답 내역 */
.survey_section table .score img {
  width: 12px;
}

.survey_section .area-table  .score > div span {
    font-weight: 500;
    font-size: 14px;
    color: #EB002F;
}

.survey_section table .score > div img {
      width: 14px;
    height: 14px;
    filter: invert(48%) sepia(79%) saturate(5629%) hue-rotate(343deg) brightness(99%) contrast(90%);
}


.area-table {margin-top: 20px;}
.area-table .table { display: table; width: 100%; table-layout: fixed; }
.area-table .table ul { display: table-row; }
.area-table .table ul li:nth-child(1),
.area-table .table ul li:nth-child(4) {
  width: 120px;
}
.area-table .table ul li { display: table-cell; text-align: center; height: 30px; vertical-align: middle; border-bottom: 1px solid #dbdbdb; font-size: 15px; color: #555; line-height: 1.4; padding: 10px 0; }
.area-table .table ul.title li { font-size: 15px ; color: #333b43 ; font-weight: 700 ; text-align: center; }
.area-table .table ul li .btn { display: inline-block; }
.area-table .table ul li .btn a { padding: 5px 10px; border: none;}
.area-table .table ul:hover { background: #f4f4f4; }
.area-table .table ul.title:hover { background: #fff; }
.area-table .no-data {display: block; text-align: center; padding:50px 0; vertical-align: middle; border-bottom: 1px solid #dbdbdb; font-size: 15px; color: #555; line-height: 50px;}

.area-table .table ul li.score img {
    width: 14px;
  height: 14px;
    filter: invert(48%) sepia(79%) saturate(5629%) hue-rotate(343deg) brightness(99%) contrast(90%);
}

.area-table .table ul li.score> div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.area-table .table ul li.score span {
      font-weight: 500;
    color: #EB002F;
}

/* 메인페이지 배너 */
.main-reward-top-banner {
  padding: 40px 0;
  border-bottom: 2px solid #e7efff;
}

 .main-reward-top-banner .inner.max-width {
  width: 100%;
  max-width: 1200px;
}

.main-reward-top-banner .inner .btn-challenging {
  font-size: 20px;
  border-radius: 50px;
  min-width: 300px;
  min-height: 56px;
  font-weight: 700;
}

.main-reward-top-banner .inner .btn-challenging img {
  filter: brightness(10);
  width: 18px;
}

.main-reward-top-bannerr h1 {
  display: flex;
  margin-bottom: 0;
  font-size: 46px;
}

/* 반응형 작업 */
@media all and (max-width: 1200px) {
  .main-reward-top-banner .inner {
    padding: 0 16px;
  }
}


@media all and (max-width: 1030px) {
  .reward-event-section .inner {
    width: 100%;
    padding: 24px;
  }

  .rank-section .inner {
    padding: 0 24px;
  }

  .main-reward-top-banner .inner h1,
  .reward-event-page .top-banner h1 {
    font-size: 42px;
  }

  .trophy img {
    height: 60px;
  }

  .trophy .reward-price {
    font-size: 22px;
  }
}

@media all and (max-width: 768px) {
  .reward-event-section .inner {
    padding: 16px;
  }

  .top-banner {
    padding: 32px 0 0;
  }

  .main-reward-top-banner {
    padding: 32px 0;
  }

  .top-banner .inner {
    flex-direction: column;
    gap: 40px;
  }

  .banner-right {
    width: 100%;
  }

  .banner-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top-banner .badge,
  .top-banner .desc {
    font-size: 16px;
  }

  .main-reward-top-banner .inner h1,
  .reward-event-page .top-banner h1 {
    font-size: 32px;
  }

  .banner-left .coin-img img.reward-coin-1,
  .banner-left .coin-img img {
    right: 0;
    width: 60px;
  }

  .banner-left .coin-img img.reward-coin-2 {
      bottom: 48px;
  }

  .top-banner h1 {
    text-align: center;
  }

  .btn-group {
    margin-top: 0;
  }

  .main-reward-top-banner .inner .btn-challenging {
    font-size: 18px;
    width: 100%;
  }

  .trophy-list {
    height: 200px;
  }

  .trophy-list::before {
    width: 100%;
    background: none;
  }

  .trophy {
    border-radius: 16px;
    padding: 20px 12px;
  }

  .trophy.first .rank {
    font-size: 18PX;
  }

  .trophy img {
    height: 68px;
  }

  .trophy .reward-price {
    font-size: 20px;
  }

  .hstat-wrap {
    gap: 24px;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
  }

  .hstat--countdown {
    flex: 1;
  }

  .hero-stats-bar {
    margin-top: 0;
  }

  .rank-section .inner {
    padding: 0;
  }

  .tab {
    font-size: 16px;
  }

  .section-header {
    padding-right: 16px;
  }

  .rank-wrap, .how-wrap {
    box-shadow: none;
    border-radius: 0;
    padding: 32px 0;
  }

  .how-wrap {
    padding: 32px 16px;
  }

  .rank-wrap .section-header {
    padding-left: 16px;
  }

  .rank-table th {
    text-align: center;
  }

  .rank-table th,
  .rank-table td {
    padding: 12px;
    flex-direction: column;
    gap: 4px;
  }

  .rank-table th:nth-child(4),
  .rank-table td:nth-child(4) {
    width: 80px;
    padding: 12px;
  }

  .rank-table th:nth-child(1), .rank-table td:nth-child(1) {
    width: 56px;
}

.rank-table-wrap .score > div {
  flex-direction: column;
}

.btn.svy-registration {
  width: 100%;
}

  .rank-noti {
    padding: 0 16px;
    font-size: 14px;
  }

  .how-cards {
    flex-direction: column;
  }

  .event-info .inner .container {
    padding: 0;
  }

  .event-info {
    padding: 32px 0;
  }

  .accordion-body .body-txt {
    padding: 16px;
  }

  /* 마이페이지 > 설문광장 리워드 */
  .survey_card {
    padding: 16px;
  }

  .survey_header {
    gap: 12px;
    align-items: flex-start;
  }

  .survey_header h4 {
    width: 100%;
    font-size: 14px;
  }
  .area-table .table ul.title li,
  .area-table .table ul li {
    font-size: 14px;
  }
  .area-table .table ul.title li:nth-child(1) {
    width: 48px;
  }

  .area-table .table ul.title li:nth-child(4) {
    width: 78px;
  }
  
}

@media all and (max-width: 480px) {
  .trophy .reward-price {
    font-size: 18px;
  }
}