/* ===== 빈 엔터테인먼트 전용 CSS ===== */

/* ===== 헤더 텍스트 스타일 (이미지 대체) ===== */

/* 채널 헤더 텍스트 */
.bean_channel_header {
    background: linear-gradient(135deg, #373530 0%, #4a4843 100%);
    padding: 80px 20px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.bean_channel_header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(45deg);
}

.bean_channel_content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bean_channel_title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.bean_channel_subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-weight: 300;
}

.bean_channel_number {
    display: inline-block;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 10px;
    text-shadow: 0 0 30px rgba(255,215,0,0.3);
}

/* FAQ 헤더 텍스트 */
.bean_faq_text_header {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 60px 20px;
    margin: 60px 0;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.bean_faq_text_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6347);
    border-radius: 20px 20px 0 0;
}

.bean_faq_header_content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bean_faq_main_title {
    font-size: 56px;
    font-weight: 800;
    color: #373530;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.bean_faq_main_title::after {
    content: '?';
    position: absolute;
    right: -50px;
    top: -10px;
    font-size: 80px;
    color: #FFD700;
    opacity: 0.3;
    transform: rotate(-15deg);
}

.bean_faq_subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* 기본 컨테이너 */
.bean_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
  color: #373530;
  line-height: 1.5;
}

/* 서비스 소개 섹션 */
.bean_service_intro,
.bean_service_features,
.bean_service_investment {
  padding: 40px 20px;
}

.bean_main_title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: #373530;
  margin-bottom: 40px;
  text-align: center;
}

.bean_main_title strong {
  font-weight: 600;
}

.bean_service_description {
  font-size: 16px;
  line-height: 1.8;
  color: #373530;
  text-align: center;
}

.bean_service_description p {
  margin-bottom: 20px;
}

/* CTA 버튼 */
.bean_cta_button {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align:center;
}

.bean_apply_btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #373530;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
}

.bean_apply_btn:hover {
  background-color: #2a2925;
  transform: translateY(-2px);
}

/* 헤더 이미지 - 이제 텍스트 기반 헤더 사용 권장 */
.bean_header_image {
  display: none; /* 텍스트 헤더 사용시 이미지 숨김 */
}

/* 소개 섹션 */
.bean_intro_section {
  margin-bottom: 60px;
  text-align: center;
}

.bean_intro_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #373530;
  margin: 0 0 20px 0;
  padding: 0 20px;
}

/* 섹션 타이틀 */
.bean_section_title {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px 0;
  color: #373530;
}

/* 구분선 */
.bean_divider {
  width: 100%;
  height: 1px;
  background-color: rgba(55, 53, 47, 0.09);
  margin-bottom: 30px;
}

/* 플랫폼 섹션 */
.bean_platform_section {
  margin-bottom: 60px;
}

/* 플랫폼 그리드 - 5열 */
.bean_platform_grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.bean_grid_5col {
  grid-template-columns: repeat(5, 1fr);
}

.bean_grid_3col {
  grid-template-columns: repeat(3, 1fr);
}

/* 플랫폼 아이템 */
.bean_platform_item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bean_platform_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bean_platform_item img {
  width: 100%;
  height: auto;
  max-width: 120px;
  object-fit: contain;
}

/* ===== FAQ 섹션 스타일 ===== */
.bean_faq_section {
  margin-top: 80px;
  padding-top: 40px;
}

.bean_faq_header {
  display: none; /* 텍스트 헤더 사용시 이미지 숨김 */
}

.bean_faq_category {
  margin-bottom: 60px;
}

.bean_faq_title {
  font-size: 28px;
  font-weight: 400;
  color: #373530;
  margin-bottom: 30px;
}

.bean_faq_title strong {
  font-weight: 600;
}

.bean_faq_item {
  margin-bottom: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.bean_faq_question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: #f8f8f8;
  border: none;
  font-size: 16px;
  color: #373530;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bean_faq_question:hover {
  background-color: #f0f0f0;
}

.bean_faq_arrow {
  font-size: 12px;
  transition: transform 0.3s;
  display: inline-block;
}

.bean_faq_question.active .bean_faq_arrow {
  transform: rotate(90deg);
}

/* FAQ 답변 스타일 */
.bean_faq_answer {
  display: none;
  padding: 20px;
  background: white;
  border-top: 1px solid #e5e5e5;
  animation: fadeIn 0.3s ease-in-out;
}

.bean_faq_answer p {
  margin-top:10px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.bean_faq_answer p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bean_faq_divider {
  width: 100%;
  height: 1px;
  background-color: rgba(55, 53, 47, 0.09);
  margin: 40px 0;
}

.bean_link {
  color: inherit;
  text-decoration: underline;
  opacity: 0.7;
}

.bean_link:hover {
  opacity: 1;
}

/* ===== 반응형 디자인 ===== */

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
  .bean_grid_5col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 헤더 텍스트 반응형 - 태블릿 */
@media (max-width: 768px) {
  .bean_channel_header {
    padding: 60px 15px;
  }
  
  .bean_channel_title {
    font-size: 36px;
  }
  
  .bean_channel_number {
    font-size: 56px;
  }
  
  .bean_channel_subtitle {
    font-size: 18px;
  }
  
  .bean_faq_text_header {
    padding: 50px 15px;
  }
  
  .bean_faq_main_title {
    font-size: 42px;
  }
  
  .bean_faq_main_title::after {
    font-size: 60px;
    right: -35px;
  }
}

/* 태블릿 (768px 이하) */
@media (max-width: 768px) {
  .bean_container {
    padding: 15px;
  }

  .bean_intro_text {
    font-size: 16px;
    padding: 0 15px;
  }

  .bean_section_title {
    font-size: 20px;
  }

  .bean_grid_5col {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .bean_platform_item {
    padding: 15px;
  }
  
  .bean_faq_title {
    font-size: 24px;
  }
  
  .bean_faq_question {
    font-size: 14px;
    padding: 15px;
  }
  
  .bean_service_intro,
  .bean_service_features,
  .bean_service_investment {
    padding: 30px 15px;
    margin-bottom: 60px;
  }
  
  .bean_main_title {
    font-size: 24px;
  }
}

/* 헤더 텍스트 반응형 - 모바일 */
@media (max-width: 480px) {
  .bean_channel_header {
    padding: 40px 10px;
    margin: 40px 0;
  }
  
  .bean_channel_title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .bean_channel_number {
    font-size: 42px;
    display: block;
    margin: 10px 0;
  }
  
  .bean_channel_subtitle {
    font-size: 16px;
  }
  
  .bean_faq_text_header {
    padding: 40px 10px;
    margin: 40px 0;
  }
  
  .bean_faq_main_title {
    font-size: 32px;
  }
  
  .bean_faq_main_title::after {
    font-size: 45px;
    right: -25px;
    top: -5px;
  }
  
  .bean_faq_subtitle {
    font-size: 16px;
  }
}

/* 모바일 (480px 이하) */
@media (max-width: 480px) {
  .bean_container {
    padding: 10px;
  }

  .bean_intro_section {
    margin-bottom: 40px;
  }

  .bean_intro_text {
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .bean_section_title {
    font-size: 18px;
    margin: 30px 0 15px 0;
  }

  .bean_grid_5col {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .bean_grid_3col {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .bean_platform_item {
    padding: 12px;
  }

  .bean_platform_item img {
    max-width: 100px;
  }
  
  .bean_faq_title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .bean_faq_question {
    font-size: 13px;
    padding: 12px;
  }
  
  .bean_faq_answer {
    padding: 15px;
  }
  
  .bean_faq_answer p {
    font-size: 13px;
  }
  
  .bean_faq_category {
    margin-bottom: 40px;
  }
  
  .bean_main_title {
    font-size: 20px;
  }
  
  .bean_service_description {
    font-size: 14px;
  }
}

/* 아주 작은 모바일 (360px 이하) */
@media (max-width: 360px) {
  .bean_intro_text {
    font-size: 13px;
  }

  .bean_section_title {
    font-size: 16px;
  }

  .bean_grid_5col,
  .bean_grid_3col {
    grid-template-columns: 1fr;
  }
}