/* =============================================
* 1. 메인 비주얼
* ============================================= */
.main-visual {
    background-color: #1a1a1a;
    padding: 60px 0;
}
.main-visual__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 400px;
}
.main-content__left { flex: 1; }
.main-content__headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #fff;
}
.main-content__subtext {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}
.visual-box__button {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.visual-box__button a {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}
.visual-box__button--apply {
    background-color: #009393;
    color: #121212;
}
.visual-box__button--apply:hover { background-color: #009393; }
.visual-box__button--sell {
    background-color: #333;
    color: #fff;
}
.visual-box__button--sell:hover { background-color: #444; }
.main-content__notice {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}
.main-content__right {
    flex: 0 0 40%;
    text-align: center;
}
.main-visual__icon {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* =============================================
* 2. 코인 시세 테이블
* ============================================= */
.virtual-assets__wrap {
    background-color: #121212;
}
.virtual-assets__container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.virtual-assets__title { text-align: center; font-size: 32px; margin-bottom: 40px; }
.tab-list { display: flex; list-style: none; padding: 0; border-bottom: 1px solid #333; margin-bottom: 20px; }
.tab-list__item a { padding: 10px 20px; text-decoration: none; color: #888; font-weight: 600; display: block; }
.tab-list__item.active a { color: #fff; border-bottom: 3px solid #009393; }

.virtual-assets__table { width: 100%; border-collapse: collapse; }
.virtual-assets__table th, .virtual-assets__table td { padding: 15px; text-align: right; }
.virtual-assets__table th { font-size: 14px; color: #888; border-bottom: 1px solid #333; }
.virtual-assets__table td { border-bottom: 1px solid #222; }
.virtual-assets__table th:first-child, .virtual-assets__table td:first-child { text-align: left; }
.coin-info__box { display: flex; align-items: center; gap: 10px; }
.coin-image img { width: 32px; height: 32px; }
.coin-name { font-weight: 600; color: #fff; }
.coin-name span { color: #888; margin-left: 5px; }
.coin-percent { display: flex; align-items: center; justify-content: flex-end; gap: 5px; font-weight: 600; color: #26a69a; }
.coin-percent.minus { color: #ef5350; }
.coin-percent img { width: 12px; }

/* =============================================
* 3. 대시보드 (접수현황 & 공지사항)
* ============================================= */
.dashboard { background-color: #1a1a1a; }
.dashboard__container { display: flex; gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.dashboard__box { flex: 1; background-color: #222; border-radius: 12px; padding: 25px; }
.dashboard__title { margin: 0 0 20px 0; font-size: 20px; }

.status-rolling { height: 250px; overflow: hidden; position: relative; }
.dashboard-status__list { list-style: none; padding: 0; margin: 0; position: absolute; width: 100%; animation: vertical-roll 30s linear infinite; }
.dashboard-status__item { display: flex; align-items: center; padding: 10px 0; font-size: 15px; }
.dashboard-status__badge { padding: 4px 8px; border-radius: 5px; font-size: 12px; font-weight: 600; margin-right: 10px; }
.dashboard-status__badge--구매신청 { background-color: #ef5350; color: #fff; }
.dashboard-status__badge--판매신청 { background-color: #26a69a; color: #fff; }
.dashboard-status__text { flex-grow: 1; }
.dashboard-status__date { font-size: 14px; color: #888; }
@keyframes vertical-roll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.dashboard-notice__list { list-style: none; padding: 0; margin: 0; }
.dashboard-notice__item { display: flex; align-items: center; gap: 20px; padding: 10px 0; border-bottom: 1px solid #333; }
.dashboard-notice__item:last-child { border-bottom: none; }
.dashboard-notice__date { text-align: center; }
.dashboard-notice__day { font-size: 24px; font-weight: 700; color: #fff; display: block; }
.dashboard-notice__month { font-size: 12px; color: #888; display: block; }
.dashboard-notice__title a { color: #e0e0e0; text-decoration: none; font-weight: 600; transition: color 0.3s; }
.dashboard-notice__title a:hover { color: #009393; }
.dashboard-notice__summary { font-size: 14px; color: #888; margin: 5px 0 0; }

/* =============================================
* 4. 안전 거래 섹션
* ============================================= */
.safe-section { background-color: #121212; }
.safe-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }
.safe-title { font-size: 32px; margin-bottom: 15px; }
.safe-subtitle { color: #b0b0b0; margin-bottom: 50px; }
.safe-box { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.safe-item { background-color: #1a1a1a; padding: 30px; border-radius: 12px; }
.safe-icon img { height: 50px; margin-bottom: 20px; }
.safe-item__title { font-size: 18px; margin: 0 0 10px; }
.safe-item__desc { font-size: 14px; color: #b0b0b0; line-height: 1.6; }

/* =============================================
* 5. FAQ 섹션
* ============================================= */
.faq-section { background-color: #1a1a1a; }
.faq-container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.faq-title { text-align: center; font-size: 32px; margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid #333; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; }
.faq-question span { font-weight: 600; font-size: 18px; }
.faq-icon { width: 14px; height: 14px; transition: transform 0.3s ease; }
.faq-icon .arrow-down { border: solid #888; border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(45deg); }
.faq-icon .arrow-up { border: solid #fff; border-width: 0 2px 2px 0; display: inline-block; padding: 3px; transform: rotate(-135deg); }
.faq-item.active .faq-question span { color: #009393; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-answer p { padding: 20px 10px; margin: 0; color: #b0b0b0; line-height: 1.7; background-color: #222; /*border-radius: 8px;*/ }

/* =============================================
* 반응형
* ============================================= */
@media (max-width: 992px) {
    section { padding: 60px 0; }
    .main-visual__content { flex-direction: column; text-align: center; }
    .main-content__right { margin-top: 40px; }
    .dashboard__container { flex-direction: column; }
    .safe-box { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .main-content__headline { font-size: 36px; }
    .virtual-assets__table { display: block; overflow-x: auto; white-space: nowrap; }
    .safe-box { grid-template-columns: 1fr; }
    .dashboard-status__item {
        font-size: 12px;
    }
}