/* 인포페이지 */
.page-container {
     background-color: var(--surface-color);
	 padding-top: 3rem;
}

.sub-nav-wrapper {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
	padding-bottom: 1rem;

}

.sub-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0.8rem 0;
    gap: 1.5rem;
}

.sub-nav li:not(:last-child)::after {
    content: '|';
    color: var(--border-color);
    margin: 0 1rem;
    font-size: 0.8rem;
}

.sub-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted-color);
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sub-nav a:not(.active):hover {
    color: var(--text-color);
    background-color: var(--bg-color);
}

.purchase-btn-wrapper {
    margin-top: auto;      /* 버튼 그룹을 맨 아래로 내림 */
    display: flex;
    justify-content: flex-end; /* 버튼을 오른쪽으로 정렬 */
}

.sub-nav a.active {
    background: #f18800;
    color: #fff;
}

/* 서브 페이지 반응형 */
@media (max-width: 1024px) {
    .sub-nav-wrapper {
        padding: 1.5rem 24px;
    }
    .sub-nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2열 그리드 유지 */
        padding: 0;
        gap: 0;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        overflow: hidden;
    }

    .sub-nav li {
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    /* ✨ --- 수정된 부분 시작 --- ✨ */

    /* 첫 번째 li가 2칸을 모두 차지하도록 설정 */
    .sub-nav li:first-child {
        grid-column: 1 / -1;
    }
    
    /* 세 번째, 다섯 번째 li에만 왼쪽 테두리 적용 */
    .sub-nav li:nth-child(3),
    .sub-nav li:nth-child(5) {
        border-left: 1px solid var(--border-color);
    }
    
    /* 마지막 두 개의 li에서 하단 테두리 제거 */
    .sub-nav li:nth-child(4),
    .sub-nav li:nth-child(5) {
        border-bottom: none;
    }

    /* ✨ --- 수정된 부분 끝 --- ✨ */

    .sub-nav li:not(:last-child)::after {
        display: none;
    }
    .sub-nav a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
        border-radius: 0;
    }
    .sub-nav a.active {
        background-color: var(--primary-color);
        color: #fff;
        font-weight: 700;
    }
}

.page-banner {
    margin-top: 0;
	text-align:center;
     padding: 2rem 2.5rem;
    border-radius: var(--border-radius) var(--border-radius) var(--border-radius) var(--border-radius); /* ✨ 수정: 하단 모서리를 직각으로 변경 ✨ */
    background-image: var(--bg-color);
    background-size: cover;
    background-position: right center;
    color: #fff;
}

.banner-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-family-display);
	color:  var(--text-color);
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.banner-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
	color:  var(--text-color);
}

.banner-text p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* --- ✨ 이용안내 상세 콘텐츠 (최종 디자인) ✨ --- */
/* --- ✨ 이용안내 상세 콘텐츠 (더 예쁘게 + 배경 통일) ✨ --- */
.final-guide-section {
    padding: 5rem 0;
    background-color: var(--surface-color); /* ✨ 수정: 배경색 통일 ✨ */
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-family-display);
    color: var(--text-color);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.section-title p {
    color: var(--text-muted-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-title .highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.final-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    max-width: 1280px; /* ✨ 추가: 최대 너비 설정 ✨ */
    margin: 0 auto; /* ✨ 추가: 가운데 정렬 ✨ */
    padding: 0 24px; /* ✨ 추가: 좌우 여백 ✨ */
}

.final-step {
    background-color: var(--bg-color); /* ✨ 수정: 배경색 변경 ✨ */
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 5;
    position: relative;
    display: flex; /* ✨ 추가: 내부 정렬을 위해 flex 사용 ✨ */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.final-step:not(.agent) {
    box-shadow: 0 4px 15px var(--shadow-color);
}
.final-step:not(.agent):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.final-step .step-number-badge { /* ✨ 추가: 번호 뱃지 스타일 ✨ */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
    flex-shrink: 0;
}

/* .final-step .step-title { 제거하고 .step-number-badge 사용 */
/* display: block;
    color: var(--text-muted-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem; */

.final-step .step-icon {
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.final-step .step-icon img {
    max-height: 100%;
    filter: grayscale(1); /* ✨ 추가: 이미지 회색 처리 (기본) ✨ */
    opacity: 0.6;
    transition: all 0.3s ease;
}
.final-step:not(.agent):hover .step-icon img {
    filter: grayscale(0); /* ✨ 추가: 호버 시 컬러로 변경 ✨ */
    opacity: 1;
}

.final-step p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* 대행사 그룹 스타일 */
.agent-steps-wrapper {
    grid-column: 1 / -1;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem 2rem; /* ✨ 수정: 패딩 증가 ✨ */
    margin-top: 2rem; /* ✨ 수정: 위쪽 여백 증가 ✨ */
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem; /* ✨ 수정: 간격 증가 ✨ */
    position: relative;
    z-index: 1;
    background-color: var(--surface-color); /* ✨ 추가: 대행사 박스 배경색 지정 ✨ */
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.2); /* ✨ 추가: 그림자 강조 ✨ */
}

.final-step.agent {
    border: none;
    background: transparent; /* ✨ 수정: 배경 투명으로 변경 ✨ */
    padding: 0; /* ✨ 수정: 패딩 제거 ✨ */
    opacity: 0.8; /* ✨ 수정: 기본 불투명도 조정 ✨ */
    box-shadow: none; /* ✨ 추가: 그림자 제거 ✨ */
    transform: none; /* ✨ 추가: 호버 효과 제거 ✨ */
    pointer-events: none; /* ✨ 추가: 클릭 방지 ✨ */
}
.final-step.agent .step-icon img {
    filter: grayscale(0); /* ✨ 대행사 단계 아이콘은 항상 컬러 ✨ */
    opacity: 1;
}

/* 점선 연결선 (삭제, 번호 뱃지가 대체) */
.final-grid::after {
    display: none;
}

/* 반응형 */
@media (max-width: 1280px) { /* ✨ 추가: 1280px 미만에서 패딩 조정 ✨ */
    .final-grid {
        padding: 0 40px;
    }
}
@media (max-width: 992px) {
    .final-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 24px; /* ✨ 추가: 좌우 여백 조정 ✨ */
    }
    .agent-steps-wrapper {
        grid-template-columns: repeat(3, 1fr);
        padding: 2rem 1.5rem; /* ✨ 수정: 패딩 조정 ✨ */
        margin-top: 1.5rem; /* ✨ 수정: 여백 조정 ✨ */
        gap: 1rem; /* ✨ 수정: 간격 조정 ✨ */
    }
}
@media (max-width: 768px) {
    .final-grid { grid-template-columns: 1fr; }
    .agent-steps-wrapper { grid-template-columns: repeat(2, 1fr); padding: 1.5rem 1rem; }
    .final-step { padding: 1.2rem 0.8rem; } /* ✨ 추가: 모바일 패딩 조정 ✨ */
    .final-step p { font-size: 1rem; } /* ✨ 추가: 모바일 폰트 크기 조정 ✨ */
}
@media (max-width: 500px) {
    .agent-steps-wrapper { grid-template-columns: 1fr; }
}


/* --- ✨ 이용절차 플로우 차트 섹션 (디자인 수정) ✨ --- */
.flowchart-section {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0;
}
.flowchart-section .section-title {
    margin-bottom: 4rem;
}
.flowchart-section .section-title h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
}
.flowchart-section .section-title p {
    font-size: 1.2rem;
    color: var(--text-color);
}

.flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.flow-row {
    display: flex;
    justify-content: center;
    align-items: stretch; /* 아이템 높이를 동일하게 */
    gap: 1.5rem;
}

.flow-item {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px; /* 고정 너비 */
}
.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.step-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.step-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-color);
    font-size: 2.5rem;
}

.flow-arrow-downward {
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .flow-row {
        flex-direction: column;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    .flow-arrow-downward {
        margin: 1.5rem 0;
    }
}

@media (max-width: 500px) {
    .flow-row {
        flex-direction: column;
    }
	
	.flow-arrow {
		display: none;
	}
   
}

/* --- ✨ 이용안내 상세 콘텐츠 스타일 ✨ --- */

/* 심플 가이드 섹션 */
.simple-guide-section {
    padding: 4rem 0;
    text-align: center;
}
.section-title-simple .dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1rem;
}
.section-title-simple .dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}
.section-title-simple h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}
.section-title-simple h2 strong {
    font-weight: 700;
}

.simple-steps-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 3rem;
}
.simple-steps-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted-color);
}
.simple-steps-list li span {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), #ff5200);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 32px;
    margin-right: 10px;
}
.simple-steps-list li:not(:last-child)::after {
    content: '>';
    margin-left: 1rem;
    color: var(--border-color);
}

.simple-flowchart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.simple-flow-step {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 220px;
    box-shadow: 0 4px 15px var(--shadow-color);
}
.step-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    font-weight: 700;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.step-body {
    padding: 2rem 1rem;
}
.simple-flow-step .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}
.simple-flow-step .step-icon img {
    max-width: 100%;
}
.simple-flow-step .step-label {
    font-size: 1.2rem;
    font-weight: 600;
}
.simple-flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
}

/* 상세 가이드 섹션 */
.detailed-guide-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}
.detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 4rem;
}
.detailed-step {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}
.detailed-step:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 4rem; /* gap과 동일하게 */
    height: 2px;
    background-image: linear-gradient(to right, var(--border-color) 60%, transparent 40%);
    background-size: 10px 2px;
}

.detailed-step .step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}
.detailed-step .step-icon img {
    max-width: 100%;
}
.step-text .step-title {
    display: block;
    color: var(--text-muted-color);
    font-weight: 700;
    font-size: 0.9rem;
}
.step-text p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

/* 이용안내 상세 콘텐츠 반응형 */
@media (max-width: 992px) {
    .simple-steps-list li::after { display: none; }
    .simple-flowchart { flex-direction: column; }
    .simple-flow-arrow { transform: rotate(90deg); }
    .detailed-grid { grid-template-columns: repeat(2, 1fr); }
    .detailed-step:not(:nth-child(3n))::after { display: none; }
    .detailed-step:not(:nth-child(2n))::after {
        content: '';
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        width: 4rem;
        height: 2px;
        background-image: linear-gradient(to right, var(--border-color) 60%, transparent 40%);
        background-size: 10px 2px;
    }
}
@media (max-width: 768px) {
    .simple-steps-list { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .detailed-grid { grid-template-columns: 1fr; }
    .detailed-step::after, .detailed-step:not(:nth-child(2n))::after { display: none; }
}

/* ============ 하이라이트 리본 섹션 ============ */
.highlight-ribbon-section {
  background-color: var(--surface-color);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.ribbon-headline h3 {
  margin: 0 0 2rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text-color);
  font-weight: 700;
}
.ribbon-headline .accent {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ribbon-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 18px;
}

/* 공통 스텝 카드 */
.ribbon-grid .step {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 4px 15px var(--shadow-color);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  text-align: left;
}

.ribbon-grid .step .no {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--primary-color);
}
.ribbon-grid .step .tx {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.35;
}

/* 희미한(비강조) 단계 */
.ribbon-grid .step.ghost {
  opacity: .20;
  filter: grayscale(.2);
}

/* 강조 단계 */
.ribbon-grid .step.focus {
  position: relative;
  z-index: 2; /* 파란 리본 위로 */
  box-shadow: 0 8px 24px rgba(79,70,229,.18);
}

/* 레이아웃 배치:
   1행: 01 | 02 | 03
   2행: 04 | 05 | 06
   3행: 07 | 08 | 09  */
.ribbon-grid .step:nth-of-type(1)  { grid-row: 1; grid-column: 1; }
.ribbon-grid .step:nth-of-type(2)  { grid-row: 1; grid-column: 2; }
.ribbon-grid .step:nth-of-type(3)  { grid-row: 1; grid-column: 3; }

.ribbon-grid .step:nth-of-type(4)  { grid-row: 2; grid-column: 1; } /* 04 */
.ribbon-grid .step:nth-of-type(5)  { grid-row: 2; grid-column: 2; } /* 05 */
.ribbon-grid .step:nth-of-type(6)  { grid-row: 2; grid-column: 3; } /* 06 */

.ribbon-grid .step:nth-of-type(7)  { grid-row: 3; grid-column: 1; } /* 07 */
.ribbon-grid .step:nth-of-type(8)  { grid-row: 3; grid-column: 2; } /* 08 */
.ribbon-grid .step:nth-of-type(9)  { grid-row: 3; grid-column: 3; } /* 09 */

/* STEP07 카드 크기 살짝 키워 강조 연결감 */
.ribbon-grid .step.focus.long {
  grid-row: 3;
  grid-column: 1;
}

/* 파란 윤곽(리본) — 2행(04~06)을 감싸고 3행 좌측(07)까지 꼬리 확장  */
.ribbon-outline,
.ribbon-tail {
  position: absolute;
  border: 6px solid #3b82f6; /* 파란색 */
  border-radius: 20px;
  z-index: 1;
}

/* 메인 박스: 2행 전체 영역(04~06)을 감싸기 */
.ribbon-outline {
  position: absolute;
  border: 6px solid #3b82f6;
  border-radius: 22px;
  box-shadow: 0 8px 18px rgba(59,130,246,.22);
  background: transparent;
  z-index: 1;

  /* 04~07 묶음을 한 번에 감쌈 */
  top: calc(-10px);      /* 2행 시작 */
  left: -10px;
  right: -10px;
  height: calc(120px * 3 + 25px + 20px);  /* 2행 + 3행 높이 */
}
/* 꼬리 따로 그릴 필요 없음 */
.ribbon-tail { display: none !important; }

/* STEP 07 자체 테두리도 필요 없음 */
.ribbon-grid .step.focus.long::after { display: none !important; }
/* 꼬리: 2행 좌하 → 3행 좌측 카드(07)로 내려가는 곡선 느낌 */
.ribbon-tail {
  width: 33%;
  height: calc(120px + 26px);
  left: -6px;
  top: calc(120px*2 + 18px*2 - 20px);           /* 3행 시작점 근처 */
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 26px;
}

/* 원형 배지(로고 대체) */
.ribbon-badge {
  position: absolute;
  right: 4%;
  bottom: -25px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.25), transparent 45%),
              var(--surface-color);
  border-radius: 50%;
  border: 8px solid #3b82f6;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.ribbon-badge .badge-inner {
  font-family: var(--font-family-display);
  text-align: center;
  font-weight: 900;
  letter-spacing: .04em;
  color: #1e293b;
  line-height: 1.05;
  transform: rotate(-12deg);
}
.ribbon-badge .badge-inner em {
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .9em;
}


/* 다크모드 대비 */
.dark-mode .ribbon-badge .badge-inner { color: #e2e8f0; }

/* 반응형 */
@media (max-width: 992px) {
  .ribbon-grid { grid-auto-rows: 110px; }
  .ribbon-badge { width: 140px; height: 140px; right: 1%; }
}
@media (max-width: 768px) {
  .ribbon-headline h3 { font-size: 1.4rem; }
  .ribbon-grid {
    grid-template-columns: 1fr;    /* 단일 열로 쌓기 */
    grid-auto-rows: auto;
  }
  .ribbon-grid .step { padding: 14px; }
  .ribbon-grid .step .tx { font-size: 1rem; }

  /* 모바일에서는 파란 윤곽을 간단한 박스로 축소 */
  .ribbon-outline,
  .ribbon-tail { display: none; }

  /* 강조 단계에만 파란 보더 */
  .ribbon-grid .step.focus { border: 2px solid #3b82f6; }

  .ribbon-badge {
    position: static;
    margin: 16px auto 0;
    width: 120px; height: 120px;
  }
}

/* --- ✨ 다크 모드에서 심플 가이드 박스 흰색으로 변경 ✨ --- */
.dark-mode .simple-flow-step {
    background-color: #ffffff; /* 배경을 흰색으로 강제 지정 */
    border-color: #e2e8f0; /* 테두리는 밝은 회색으로 */
}

/* 흰색 배경에 맞춰 내부 텍스트 색상 변경 */
.dark-mode .simple-flow-step .step-label {
    color: #1e293b; /* 어두운 글자색으로 변경 */
}


/* 여기서부터 메가설명 시작 */
/* --- ✨ 메가밀리언 소개 페이지 스타일 (레이아웃 수정) ✨ --- */

.intro-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: var(--bg-color);
    color: #fff;
    border-radius: var(--border-radius);
    margin-top: 2.5rem;
}

.banner-logo {
    flex-shrink: 0;
}
.banner-logo img {
    height: 60px;
}

.banner-description p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
	color: var(--text-muted-color);
}
.banner-description p:first-child {
    margin-bottom: 0.5rem;
}


.game-info-section {
    padding: 3rem 0;
}

/* ✨ 수정: game-grid를 하나의 큰 카드로 변경 */
.game-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 동일한 크기의 2개 열 */
    gap: 0; /* 내부에서 패딩으로 간격 조절 */
    align-items: start;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-color);
}

/* ✨ 수정: 이미지 자체의 테두리/그림자 제거 */
.game-image-area {
    padding-right: 2rem;
    border-right: 1px solid var(--border-color);
}
.game-image-area img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* ✨ 수정: 독립적인 카드 스타일 제거 */
.game-rules-area {
    padding-left: 2rem;
}

.game-rules-area h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-color);
}
.game-rules-area h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--primary-color);
}
.game-rules-area > p {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    color: var(--text-color);
}

.rules-list {
    padding-left: 1.5rem;
    margin: 0 0 1rem;
}
.rules-list li {
    margin-bottom: 0.3rem;
    line-height: 1.7;
	font-size: 0.9rem;
    color: var(--text-muted-color);
}

.draw-schedule {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}
.draw-schedule h5 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text-color);
}
.draw-schedule p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-muted-color);
}
.draw-schedule .label {
    display: inline-block;
    width: 40px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 1rem;
}
.draw-schedule .label.ind { color: #2be944; }
.draw-schedule .label.usa { color: #ef4444; }

.purchase-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
	display: block; /* ✨ 이 한 줄을 추가해주세요 ✨ */
    text-align: center; /* 텍스트를 가운데 정렬합니다 */


}

/* 메가밀리언 페이지 반응형 */
@media (max-width: 992px) {
    .game-grid {
        grid-template-columns: 1fr; /* 모바일에서 세로로 쌓음 */
        padding: 1.5rem;
    }
    .game-image-area {
        padding-right: 0;
        border-right: none;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    .game-rules-area {
        padding-left: 0;
        padding-top: 1.5rem;
    }
}
@media (max-width: 768px) {
    .intro-banner {
        flex-direction: column;
        text-align: center;
    }
}
/* --- ✨ 멀티플라이어 시스템 섹션 스타일 (최종 수정) ✨ --- */
.multiplier-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.prize-table-section {
    padding-top: 3rem;
    border-top: 1px solid var(--border-color); /* ✨ 이 한 줄을 추가해주세요 ✨ */
	padding-bottom: 3rem;
}

.prize-table th, .prize-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color); /* ✨ 이 줄을 추가해주세요 ✨ */
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 2.5rem;
}

.multiplier-grid {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr; /* 3:7 비율 유지 */
    gap: 2.5rem;
    align-items: center;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.multiplier-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px var(--shadow-color);
    object-fit: contain; /* ✨ 추가: 이미지가 잘리지 않도록 설정 */
}

.multiplier-description {
    background-color: #1e3a8a; /* ✨ 수정: 더 진하고 신뢰감 있는 파란색 */
    color: #e0e7ff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
}
.dark-mode .multiplier-description {
    background-color: #3b4d8a; /* ✨ 수정: 다크모드 배경색 */
}

.multiplier-description h3 {
    font-size: 1.3rem; /* ✨ 수정: 폰트 크기 조정 */
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin: 0 0 1.5rem;
}

.multiplier-description ul {
    list-style-type: '· ';
    padding-left: 1.2rem;
    margin: 0 0 1.5rem;
}

.multiplier-description li {
    padding-left: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem; /* ✨ 수정: 폰트 크기 조정 */
    line-height: 1.7;
}

.multiplier-note {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.multiplier-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #c7d2fe;
}
.multiplier-note p strong {
    color: #fff;
}

/* 멀티플라이어 섹션 반응형 */
@media (max-width: 992px) {
    .multiplier-grid {
        grid-template-columns: 1fr;
    }
}

.prize-table {
    width: 100%;
    border-collapse: collapse; /* 테두리 한 줄로 합치기 */
    font-size: 0.95rem;
    white-space: nowrap; /* 내용이 줄바꿈되지 않도록 */
}

.prize-table th, .prize-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}
.prize-table tbody tr:last-child td {
    border-bottom: none; /* 마지막 줄의 하단 테두리 제거 */
}

.prize-table thead th {
    background-color: #374151; /* 어두운 헤더 배경 */
    color: #fff;
    font-weight: 600;
}
.dark-mode .prize-table thead th {
    background-color: #4b5563;
}

.prize-table tbody tr:nth-child(even) {
    background-color: var(--bg-color); /* 짝수 행에 배경색 적용 */
}

.prize-table td:first-child {
    text-align: center;
    font-weight: 700;
    color: var(--text-color);
}

.prize-table td:nth-child(3), .prize-table td:nth-child(4) {
    font-weight: 500;
    color: var(--text-color);
}

.prize-claim-guide {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.claim-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.claim-block {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-color);
    overflow: hidden; /* 내부 title의 둥근 모서리 적용을 위해 */
}

.claim-title {
    background-color: rgba(79, 70, 229, 0.05);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.dark-mode .claim-title {
    background-color: rgba(165, 180, 252, 0.05);
}

.claim-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.claim-content {
    padding: 1.5rem;
}

.claim-content ul {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin: 0;
}

.claim-content li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    color: var(--text-muted-color);
    line-height: 1.8;
}
.claim-content li:last-child {
    margin-bottom: 0;
}

.text-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.membership-tiers-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 2.5rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.tier-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px var(--shadow-color);
}
.tier-card.diamond:hover { border-color: #7dd3fc; }
.tier-card.gold:hover { border-color: #fcd34d; }
.tier-card.silver:hover { border-color: #e5e7eb; }
.tier-card.bronze:hover { border-color: #f97316; }

/* ✨ 보석 아이콘 스타일 수정 ✨ */
.gem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    /* ✨ 3D 효과 및 반짝임 추가 */
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.2)) saturate(1.2) brightness(1.1);
    transform: perspective(1000px) rotateX(15deg) rotateY(-10deg); /* 약간의 3D 기울기 */
    transition: all 0.3s ease;
}
.tier-card:hover .gem-icon {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) scale(1.05); /* 호버 시 약간 회전 및 확대 */
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3)) saturate(1.4) brightness(1.2) hue-rotate(5deg);
}


.tier-card h4 {
    font-family: var(--font-family-display);
    font-size: 1.25rem;
    margin: 0 0 0.25rem;
    color: var(--text-color);
}
.tier-card p {
    font-size: 1rem;
    color: var(--text-muted-color);
    margin: 0 0 1rem;
}
.tier-desc {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 0.9rem;
    min-height: 50px;
}

/* ✨ 라이트/다크 모드별 배경색을 명확히 지정하는 코드 추가 */
.light-mode .tier-desc {
    color: #000; /* 연한 회색 */
}
.dark-mode .tier-desc {
    color: #fff; /* 살짝 밝은 회색 */
}


.tier-details-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tier-detail-box {
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}
.tier-detail-box.diamond { border-color: #38bdf8; }
.tier-detail-box.gold { border-color: #fbbf24; }
.tier-detail-box.silver { border-color: #d1d5db; }
.tier-detail-box.bronze { border-color: #f97316; }


.detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.gem-icon-small {
    width: 32px;
    height: 32px;
    /* ✨ 작은 아이콘에도 필터 적용 (필요시) */
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}
.detail-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.tier-detail-box ul {
    list-style-type: '* ';
    padding-left: 1.2rem;
    margin: 0;
}

.tier-detail-box li {
    padding-left: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted-color);
}
.tier-detail-box li:last-child {
    margin-bottom: 0;
}

/* 회원 등급 안내 반응형 */
@media (max-width: 992px) {
    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .tier-details-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ✨ 다이아몬드 등급 카드 특별 효과 ✨ --- */

/* 카드 자체에 숨 쉬는 듯한 그림자 애니메이션 적용 */
@keyframes pulse-shadow-diamond {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
    }
}

.tier-card.diamond {
    position: relative; /* 가상요소 배치를 위한 기준점 */
    overflow: hidden; /* 테두리 애니메이션이 넘치지 않도록 */
    animation: pulse-shadow-diamond 3s infinite ease-in-out;
}

/* 빛나는 테두리를 위한 가상 요소 생성 */
.tier-card.diamond::before {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    background: conic-gradient(
        transparent,
        rgba(129, 140, 248, 0.7), /* 연한 보라 */
        rgba(99, 102, 221, 0.8),  /* 기본 파랑 */
        rgba(236, 72, 153, 0.7), /* 핑크 하이라이트 */
        transparent 30%
    );
    animation: rotate-glow 4s linear infinite;
}

/* 테두리 회전 애니메이션 */
@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 카드 콘텐츠가 테두리 위로 오도록 설정 */
.tier-card.diamond > * {
    position: relative;
    z-index: 2;
}

/* 보석 아이콘 반짝임 애니메이션 */
@keyframes sparkle-diamond {
    0%, 100% { filter: brightness(1.1) saturate(1.2); }
    50% { filter: brightness(1.4) saturate(1.5); }
}

.tier-card.diamond .gem-icon {
    animation: sparkle-diamond 2.5s infinite ease-in-out;
}








