* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
}

/* 전체 배경 */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #e8e4de;
    color: #663221;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 100vh;
    padding: 0px;
}

/* 컨테이너 */
.container {
    text-align: center;
    background-color: #ede1ce;
    padding: 24px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    margin: 24px auto 24px auto;
}

/* 메인 타이틀 */
h1 {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #532715;
    margin-bottom: 10px;
}

.sub-title {
    font-size: 22px;
    margin-bottom: 30px;
    color: #532715;
}

/* 포스터 이미지 */
.poster img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}


.info-line {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 4px;
}

.info-line .label {
    font-weight: 700;
    color: #4b1e0d;
    margin-right: 6px;
}

.info-line a {
    color: #4b1e0d;
    font-weight: 600;
    text-decoration: none;
}

.info-line a:hover {
    text-decoration: underline;
}

.section-divider {
    border: none;
    border-top: 2px solid #d5c5b3;
    width: 90%;
    margin: 16px auto;
}

.divider {
    width: 2.3px;
    background-color: #1e1e1e;
    opacity: 0.4;
    align-self: stretch;
}


.lineup-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.event-details {
    text-align: left;
    min-width: 180px;
}

.team-name {
    min-width: 140px;
    text-align: right;
}

.team-name span {
    font-family: sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #4b1e0d;
    white-space: nowrap;
}

.members {
    text-align: left;
    min-width: 180px;
}

.members ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.members li {
    font-size: 17px;
    line-height: 1.4;
    color: #333;
    text-align: left;
}

.members li strong {
    display: inline-block;
    width: 24px;
    font-weight: 600;
}

.setlist {
    text-align: left;
    min-width: 220px;
}

.setlist h3 {
    font-size: 22px;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
}

.setlist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.setlist li {
    font-size: 16px;
    color: #444;
    line-height: 1.3;
}

.setlist .more {
    font-style: italic;
    color: #999;
}


/* 팀 → 버튼 사이 공간 */
.after-lineup-spacing {
    height: 48px;
}


/* 수요조사 버튼 */

.survey-link {
    text-align: center;
    padding: 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

/* 기본 활성화된 버튼 스타일 */
.survey-link .btn {
    display: block;
    background-color: #532715;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/* 비활성화된 버튼 스타일 */
.survey-link.disabled .btn {
    background-color: #d3d3d3;
    /* 비활성화된 상태의 회색 배경 */
    color: #a9a9a9;
    /* 비활성화된 상태의 텍스트 색상 */
    cursor: not-allowed;
    /* 비활성화된 커서 */
    pointer-events: none;
    /* 클릭 불가 */
    text-decoration: none;
}

/* 비활성화된 버튼에 hover 스타일을 제거 */
.survey-link.disabled .btn:hover {
    background-color: #d3d3d3;
    /* 호버 시에도 색상 유지 */
}

/* 기본은 데스크탑만 보이게 */
.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
        padding: 16px 0;
    }

    .team-name,
    .members,
    .setlist,
    .event-details {
        min-width: 0 !important;
        width: 100% !important;
    }

    .lineup-block {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .mobile-only .team-name {
        text-align: left;
        margin-bottom: 8px;
    }

    .mobile-only .team-name span {
        font-size: 20px;
        font-weight: bold;
        color: #4b1e0d;
    }

    .lineup-mobile-inner {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .lineup-mobile-inner .col {
        flex: 1;
    }

    .members li,
    .setlist li {
        font-size: 14px;
        line-height: 1.5;
    }

    .setlist h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .container {
        margin: 0 0 56px 0;
        border-radius: 0px;
        padding: 24px 24px 14px 24px;
    }

    .survey-link {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 0;
        width: 100%;
        border-radius: 0px;
    }

    .survey-link .btn {
        border-radius: 0px;
    }
}