@charset "utf-8";

/* 반응형 웹사이트 CSS - 최우선 적용 */

/* 기본 반응형 설정 */
* {
  box-sizing: border-box;
}

/* 모바일 메뉴 버튼 - 기본적으로 숨김 */
.mobile-menu-btn {
  display: none !important;
}

/* 모바일 메뉴 - 기본적으로 숨김 */
.mobile-menu {
  display: none !important;
}

/* 태블릿 (768px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 768px) {
  /* 전체 컨테이너 */
  #wrap {
    min-width: auto !important;
    width: 100% !important;
  }
  
  /* 헤더 반응형 */
  .toparea {
    width: 100% !important;
    max-width: 1000px !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
  }
  
  .toparea h1 {
    left: 20px !important;
  }
  
  .util {
    margin-left: 200px !important;
  }
  
  /* GNB 반응형 */
  #gnb > ul {
    width: 100% !important;
    max-width: 1000px !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
  }
  
  #gnb > ul > li {
    width: 16.666% !important;
    float: left !important;
  }
  
  /* 서브메뉴 반응형 */
  .gnb-sub > .sub-frame {
    width: 100% !important;
    max-width: 1000px !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
  }
  
  .gnb-sub > .sub-bg01,
  .gnb-sub > .sub-bg02,
  .gnb-sub > .sub-bg03,
  .gnb-sub > .sub-bg04,
  .gnb-sub > .sub-bg05,
  .gnb-sub > .sub-bg06 {
    width: 100% !important;
    max-width: 1000px !important;
    height: auto !important;
    min-height: 400px !important;
    margin: 0 auto !important;
  }
  
  .gnb-sub > .sub-bg01 > .col-left,
  .gnb-sub > .sub-bg02 > .col-left,
  .gnb-sub > .sub-bg03 > .col-left,
  .gnb-sub > .sub-bg04 > .col-left,
  .gnb-sub > .sub-bg05 > .col-left,
  .gnb-sub > .sub-bg06 > .col-left {
    width: 50% !important;
    float: left !important;
    padding: 20px !important;
  }
  
  .gnb-sub > .sub-bg01 > .col-right,
  .gnb-sub > .sub-bg02 > .sub-bg06 > .col-right {
    width: 50% !important;
    float: right !important;
    padding: 20px !important;
  }
  
  /* 메인 슬라이드 반응형 */
  .main-slide ul > li {
    min-width: auto !important;
  }
  
  /* 슬라이드 버튼 반응형 */
  .main-slide > button.btn-prev,
  .main-slide > button.btn-next {
    left: 20px !important;
    right: 20px !important;
  }
  
  /* 슬라이드 컨트롤 반응형 */
  .main-slide > div.control,
  .main-slide2 > div.control {
    bottom: 50px !important;
  }
  
  /* 메인 텍스트 반응형 */
  .type0101 .motion,
  .type0102 .motion {
    width: 100% !important;
    max-width: 1000px !important;
    margin: -150px auto 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    transform: none !important;
  }
  
  .type0101 .motion > span,
  .type0102 .motion > span {
    position: relative !important;
    top: auto !important;
    margin-bottom: 10px !important;
    display: block !important;
  }
  
  /* 뉴스 섹션 반응형 */
  #news {
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .news-pic-lg,
  .news-pic-lg2,
  .news-pic {
    width: 100% !important;
    height: auto !important;
  }
  
  .news-list {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .news-bottom .news-small {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  
  /* 방송 섹션 반응형 */
  #broadcating {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .bc-md {
    width: 100% !important;
  }
  
  /* 트레이더 섹션 반응형 */
  #trader .trader-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .trader-list > li {
    padding: 20px !important;
    background: #f5f5f5 !important;
    border-radius: 8px !important;
  }
  
  /* 스크롤링 버튼 */
  .scrolling {
    right: 20px !important;
  }
}

/* 모바일 (767px 이하) */
@media screen and (max-width: 767px) {
  /* 모바일 메뉴 버튼 - 햄버거 애니메이션 */
  .mobile-menu-btn {
    display: block !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 100001 !important;
    background: rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    padding: 12px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.05) !important;
  }
  
  .mobile-menu-btn.active {
    background: rgba(0, 0, 0, 0.2) !important;
    transform: scale(1.05) !important;
  }
  
  /* 세련된 점 3개 메뉴 아이콘 - 최고 우선순위 */
  .mobile-menu-btn .menu-dots {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    width: 20px !important;
    height: 20px !important;
    position: relative !important;
  }
  
  .mobile-menu-btn .dot {
    display: block !important;
    width: 4px !important;
    height: 4px !important;
    background: white !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
  }
  
  /* 각 점을 개별적으로 강제 표시 */
  .mobile-menu-btn .dot:nth-child(1) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .mobile-menu-btn .dot:nth-child(2) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .mobile-menu-btn .dot:nth-child(3) {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* 활성 상태 애니메이션 - 점들이 X로 변환 */
  .mobile-menu-btn.active .dot:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 1px !important;
  }
  
  .mobile-menu-btn.active .dot:nth-child(2) {
    opacity: 0 !important;
    transform: scale(0) !important;
  }
  
  .mobile-menu-btn.active .dot:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
    width: 18px !important;
    height: 2px !important;
    border-radius: 1px !important;
  }
  
  /* 호버 효과 */
  .mobile-menu-btn:hover .dot {
    background: white !important;
    transform: scale(1.1) !important;
  }
  
  /* 모든 span 태그 강제 표시 - 최고 우선순위 */
  .mobile-menu-btn span,
  .mobile-menu-btn div span,
  .mobile-menu-btn .menu-dots span {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 4px !important;
    height: 4px !important;
    background: white !important;
    border-radius: 50% !important;
  }
  
  .mobile-menu-btn:active {
    transform: scale(0.95) !important;
  }
  
  /* GNB 숨기기 */
  #gnb {
    display: none !important;
  }
  
  /* 모바일 드로어 스타일 */
  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    height: 100% !important;
    background: white !important;
    z-index: 100002 !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
  }
  
  .mobile-drawer.open {
    transform: translateX(0) !important;
  }
  
  /* 드로어 헤더 */
  .drawer-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px !important;
    border-bottom: 1px solid #eee !important;
    background: #f8f9fa !important;
  }
  
  .drawer-header h2 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
  }
  
  .drawer-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
    color: #666 !important;
    padding: 5px !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
  }
  
  .drawer-close:hover {
    background: #f0f0f0 !important;
    color: #333 !important;
  }
  
  /* 드로어 네비게이션 */
  .drawer-nav {
    padding: 0 !important;
  }
  
  .drawer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .drawer-menu li {
    border-bottom: 1px solid #f0f0f0 !important;
  }
  
  .drawer-link {
    display: flex !important;
    align-items: center !important;
    padding: 16px 20px !important;
    text-decoration: none !important;
    color: #333 !important;
    transition: all 0.2s ease !important;
    position: relative !important;
  }
  
  .drawer-link:hover {
    background: #f8f9fa !important;
    color: #3c5589 !important;
  }
  
  .drawer-link:active {
    background: #e9ecef !important;
  }
  
  .menu-icon {
    font-size: 20px !important;
    margin-right: 12px !important;
    width: 24px !important;
    text-align: center !important;
  }
  
  .menu-text {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
  
  /* 드로어 백드롭 */
  .drawer-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 100001 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
  }
  
  .drawer-backdrop.active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* 헤더 반응형 */
  .toparea {
    height: auto !important;
    padding: 10px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
  }
  
  .toparea h1 {
    position: static !important;
    margin-bottom: 10px !important;
    left: auto !important;
  }
  
  .utilarea {
    float: none !important;
    text-align: center !important;
    padding-top: 0 !important;
  }
  
  .util,
  .util.ver2 {
    float: none !important;
    margin: 10px 0 !important;
    text-align: center !important;
  }
  
  .inp-pop1 {
    float: none !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
  
  .inp-pop1 input {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* 슬라이드 반응형 - 모바일 */
  .main-type01 .main-slide {
    position: relative !important;
    min-width: auto !important;
    width: 100% !important;
    height: 100vh !important;
    min-height: 400px !important;
  }
  
  .main-slide ul {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  .main-type01 .main-slide ul > li {
    width: 100% !important;
    min-width: auto !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
  }
  
  .main-type01 .main-slide ul > li > a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  /* 슬라이드 버튼 반응형 */
  .main-slide > button,
  .main-slide2 > button {
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    cursor: pointer !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 18px !important;
  }
  
  .main-slide > button.btn-prev,
  .main-slide2 > button.btn-prev {
    left: 10px !important;
  }
  
  .main-slide > button.btn-next,
  .main-slide2 > button.btn-next {
    right: 10px !important;
  }
  
  /* 슬라이드 컨트롤 반응형 */
  .main-slide > div.control,
  .main-slide2 > div.control {
    height: auto !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 20px !important;
    margin-left: -50px !important;
    padding: 10px !important;
    z-index: 1000 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 20px !important;
  }
  
  .main-slide > div.control:before,
  .main-slide2 > div.control:before {
    display: none !important;
  }
  
  .main-slide > div.control button,
  .main-slide2 > div.control button {
    width: 8px !important;
    height: 8px !important;
    display: inline-block !important;
    vertical-align: top !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    border-radius: 50% !important;
    margin: 0 2px !important;
  }
  
  .main-slide > div.control button.on,
  .main-slide2 > div.control button.on {
    background: white !important;
  }
  
  /* 메인 텍스트 반응형 */
  .type0101 .motion,
  .type0102 .motion {
    font-size: 32px !important;
    margin: -100px auto 0 !important;
    width: 90% !important;
    max-width: 400px !important;
    transform: none !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  
  .type0101 .motion > span,
  .type0102 .motion > span {
    position: relative !important;
    top: auto !important;
    margin-bottom: 10px !important;
    display: block !important;
    font-size: 24px !important;
    margin-left: 0 !important;
    left: 0 !important;
  }
  
  /* 뉴스 섹션 반응형 - 모바일 */
  #container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 10px !important;
  }
  
  #news {
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    border-right: none !important;
  }
  
  /* 뉴스 탭 반응형 */
  .tab-area3 {
    width: 100% !important;
    float: none !important;
  }
  
  .tab2 {
    display: flex !important;
    flex-wrap: wrap !important;
    height: auto !important;
  }
  
  .tab2 > li {
    float: none !important;
    width: auto !important;
    flex: 1 1 auto !important;
    min-width: 80px !important;
  }
  
  .tab2 > li > a {
    width: auto !important;
    height: auto !important;
    padding: 8px 6px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
  
  /* 뉴스 상단 반응형 */
  .news-top {
    border-bottom: 1px solid #eaeaea !important;
    overflow: hidden !important;
    margin-right: 0 !important;
  }
  
  .headline {
    margin-right: 0 !important;
    float: none !important;
    width: 100% !important;
  }
  
  .headline > .news-col {
    width: 100% !important;
  }
  
  .headline > .news-col .news-pic-lg {
    width: 100% !important;
    height: auto !important;
    border: 1px solid #dedede !important;
    margin-right: 0 !important;
  }
  
  .headline > .news-col .caption {
    display: block !important;
    width: 100% !important;
    padding-top: 10px !important;
  }
  
  .headline > .news-col .caption > .title {
    display: block !important;
    line-height: 1.3em !important;
    padding-bottom: 2px !important;
  }
  
  /* 뉴스 리스트 박스 반응형 */
  .news-list-box {
    display: block !important;
    margin-top: 10px !important;
    margin-left: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .news-list {
    border-bottom: 1px solid #eaeaea !important;
    line-height: 2.7em !important;
    overflow: hidden !important;
    padding: 8px 0 !important;
  }
  
  .news-list > a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  .news-list span {
    display: inline-block !important;
    width: calc(100% - 30px) !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
  }
  
  .news-list img {
    float: none !important;
    vertical-align: middle !important;
    padding-top: 0 !important;
    flex-shrink: 0 !important;
  }
  
  /* 뉴스 하단 반응형 */
  .headline-second {
    float: none !important;
    width: 100% !important;
    overflow: hidden !important;
    margin-top: 20px !important;
  }
  
  .second-pic {
    width: 100% !important;
    height: auto !important;
    background: #000 !important;
  }
  
  .second-pic > a > .caption {
    display: inline-block !important;
    position: absolute !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 10 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.7), transparent) !important;
  }
  
  .second-pic > a > .caption > .title {
    display: block !important;
    line-height: 1.3em !important;
    padding: 150px 10px 2px !important;
    vertical-align: bottom !important;
  }
  
  .second-pic > .news-pic-lg2 {
    height: auto !important;
    width: 100% !important;
  }
  
  /* 뉴스 하단 섹션 반응형 */
  .news-bottom {
    overflow: hidden !important;
    margin-top: 20px !important;
  }
  
  .news-small {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .news-col {
    width: 100% !important;
    overflow: hidden !important;
    float: none !important;
    padding: 0 !important;
  }
  
  .news-col .news-pic {
    width: 100% !important;
    height: auto !important;
    border: 1px solid #dedede !important;
    margin-right: 0 !important;
  }
  
  .news-col .caption {
    display: block !important;
    width: 100% !important;
    vertical-align: top !important;
    margin-top: 10px !important;
  }
  
  .news-col .caption > .title {
    display: block !important;
    line-height: 1.3em !important;
    padding-bottom: 15px !important;
  }
  
  .news-col .caption > .sourcename {
    display: block !important;
    font-size: 12px !important;
    color: #999 !important;
  }
  
  .news-col .caption > .sourcename > img {
    margin-right: 5px !important;
  }
  
  /* 증시 섹션 반응형 */
  #stock {
    width: 100% !important;
    float: none !important;
    margin: 20px 0 0 0 !important;
    overflow: hidden !important;
  }
  
  #stock > h3 {
    font-size: 14px !important;
    line-height: 3.5em !important;
  }
  
  #stock > h3 > span {
    display: inline-block !important;
    float: right !important;
    font-size: 11px !important;
    color: #999 !important;
  }
  
  /* 방송 섹션 반응형 - 모바일 */
  #broadcating {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    font-size: 14px !important;
  }
  
  #broadcating iframe {
    border: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  #broadcating > div.first {
    margin-bottom: 7px !important;
  }
  
  .bc-lg {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
    float: none !important;
    overflow: hidden !important;
    background: #2a2a2a !important;
  }
  
  .bc-lg iframe {
    width: 100% !important;
    height: 200px !important;
  }
  
  .bc-md {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
    float: none !important;
    overflow: hidden !important;
    background: #2a2a2a !important;
  }
  
  .bc-md iframe {
    width: 100% !important;
    height: 150px !important;
  }
  
  /* 광고 배너 섹션 반응형 */
  #ad-banner {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
  }
  
  .banner-lg {
    width: 100% !important;
    height: auto !important;
    margin-bottom: 12px !important;
    background: #2a2a2a !important;
  }
  
  .banner-lg img {
    width: 100% !important;
    height: auto !important;
  }
  
  .banner-md {
    width: 100% !important;
    height: auto !important;
    background: #2a2a2a !important;
  }
  
  .banner-md img {
    width: 100% !important;
    height: auto !important;
  }
  
  /* 트레이더 섹션 반응형 - 모바일 */
  #trader {
    width: 100% !important;
    padding: 0 !important;
  }
  
  #trader > ul.trader-list:hover {
    background: rgba(48, 51, 60, 0.85) !important;
  }
  
  .trader-list {
    width: 100% !important;
    background: url('../images/bg/bg_trader.png') repeat left top !important;
    padding: 20px 15px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    float: none !important;
    line-height: 1.3em !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .trader-list > li {
    display: block !important;
    padding: 10px 0 !important;
    vertical-align: top !important;
    line-height: 1.3em !important;
    text-align: center !important;
  }
  
  .trader-list > li.profile-pic {
    text-align: center !important;
  }
  
  .trader-list > li.profile-pic > img.profile2 {
    width: 60px !important;
    height: 60px !important;
    border: 1px solid #333 !important;
  }
  
  .trader-list > li.desc {
    width: 100% !important;
    overflow: hidden !important;
    text-align: center !important;
  }
  
  .trader-list > li.desc > p.user {
    background: url('../images/ico/ico_know.png') no-repeat left -38px !important;
    padding-left: 20px !important;
    font-size: 1.2em !important;
    color: #eaeaea !important;
    margin-bottom: 10px !important;
  }
  
  .trader-list > li.graph {
    width: 100% !important;
    text-align: center !important;
    overflow: hidden !important;
  }
  
  .trader-list > li.graph > span {
    font-size: 0.75em !important;
  }
  
  .trader-list > li.graph > img {
    width: 100% !important;
    height: auto !important;
    max-width: 200px !important;
  }
  
  .trader-list > li.tit {
    width: 100% !important;
    overflow: hidden !important;
    text-align: center !important;
  }
  
  .trader-list > li.tit > p {
    font-size: 1.4em !important;
    font-weight: 300 !important;
    color: #eaeaea !important;
  }
  
  .trader-list > li.tit > p > span.badge {
    display: inline-block !important;
    padding: 7px !important;
    font-size: 11px !important;
    text-align: center !important;
    line-height: 100% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid #666 !important;
    margin: 5px 3px 0 0 !important;
  }
  
  .trader-list > li.num1 {
    width: 100% !important;
    text-align: center !important;
  }
  
  .trader-list > li.num2 {
    width: 100% !important;
    text-align: center !important;
  }
  
  .trader-list > li.num2 > p.up {
    background: url('../images/ico/ico_trader_arrow.png') no-repeat left 10px !important;
    padding-left: 35px !important;
  }
  
  .trader-list > li.num2 > p.down {
    background: url('../images/ico/ico_trader_arrow.png') no-repeat left -35px !important;
    padding-left: 35px !important;
  }
  
  .trader-list > li.num1 > p > i,
  .trader-list > li.num2 > p > i {
    font-style: normal !important;
    font-size: 0.6em !important;
    padding-left: 5px !important;
    font-weight: 200 !important;
  }
  
  .trader-list p.num {
    font-size: 2.5em !important;
    font-weight: 300 !important;
    color: #eaeaea !important;
    line-height: 1.3em !important;
  }
  
  .trader-list p.note {
    font-size: 0.9em !important;
    opacity: 0.5 !important;
    text-align: center !important;
  }
  
  /* 스크롤링 버튼 숨기기 */
  .scrolling {
    display: none !important;
  }
  
  /* 팝업 반응형 */
  .pop-wrap {
    width: 90% !important;
    max-width: 400px !important;
  }
  
  /* 푸터 */
  .footer01 {
    padding: 20px 10px !important;
    text-align: center !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* 작은 모바일 (480px 이하) */
@media screen and (max-width: 480px) {
  .type0101 .motion,
  .type0102 .motion {
    font-size: 24px !important;
  }
  
  .type0101 .motion > span,
  .type0102 .motion > span {
    font-size: 18px !important;
  }
  
  .bc-lg iframe {
    height: 150px !important;
  }
  
  .bc-md iframe {
    height: 120px !important;
  }
  
  .mobile-menu-content {
    padding: 20px !important;
  }
  
  .mobile-menu-list a {
    padding: 12px !important;
    font-size: 14px !important;
  }
  
  /* 슬라이드 버튼 더 작게 */
  .main-slide > button,
  .main-slide2 > button {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
  }
  
  /* 뉴스 탭 더 작게 */
  .tab2 > li > a {
    font-size: 11px !important;
    padding: 6px 4px !important;
  }
  
  /* 뉴스 리스트 텍스트 더 작게 */
  .news-list {
    font-size: 13px !important;
    line-height: 2.5em !important;
  }
  
  /* 트레이더 프로필 이미지 더 작게 */
  .trader-list > li.profile-pic > img.profile2 {
    width: 50px !important;
    height: 50px !important;
  }
  
  /* 트레이더 숫자 더 작게 */
  .trader-list p.num {
    font-size: 2em !important;
  }
}

/* 접근성 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  .mobile-menu-btn,
  .mobile-menu-list a {
    border: 2px solid currentColor !important;
  }
}
