/* 기본 설정 */
body {
    margin: 0; padding: 0;
    font-family: 'Pretendard', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
}

/* 상단바: STUDIO_SUJIN 스타일 */
header {
    height: 70px;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.main-logo {
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    letter-spacing: 2px;
}

.nav-links a {
    margin: 0 20px;
    text-decoration: none;
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
}

.nav-links a:hover { color: #000; }

/* 유저 섹션: 자연스러운 결합 */
.user-section { display: flex; align-items: center; gap: 20px; }

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 30px;
    transition: background 0.2s;
}

.user-profile:hover { background: #f5f5f5; }

.user-text { text-align: right; }

.nickname {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: #ff6b00; /* 닉네임 오렌지색 포인트 */
}

.mypage-label {
    font-size: 0.7rem;
    color: #999;
}

.profile-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eee;
    border: 1px solid #ddd;
    overflow: hidden;
}

.exit-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

/* 메인 대시보드 구조 */
.dashboard-container {
    max-width: 1400px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    padding: 0 50px;
}

/* 왼쪽 슬라이더 */
.hero-section {
    height: 600px;
    background: #f0f0f0;
    border: 1px solid #000;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-tag {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* 오른쪽 정보 섹션 */
.side-section { display: flex; flex-direction: column; gap: 30px; }

.welcome-card {
    padding: 40px;
    border: 1px solid #000;
}

.welcome-card h2 { margin: 0; font-size: 1.8rem; font-weight: 900; }
.welcome-card p { color: #666; margin: 10px 0 0; }

.ticket-list-card {
    border: 1px solid #e0e0e0;
    padding: 30px;
    flex: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h3 { font-size: 1rem; font-weight: 900; margin: 0; }

.more-btn { font-size: 0.7rem; color: #999; text-decoration: none; border-bottom: 1px solid #999; }

.ticket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
}

.ticket-item:last-child { border: none; }

.t-info h4 { margin: 0; font-size: 0.95rem; }
.t-info p { margin: 5px 0 0; font-size: 0.75rem; color: #999; }

.t-status {
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid #000;
    padding: 5px 10px;
}

/* 푸터 */
footer {
    margin-top: auto;
    padding: 40px 50px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
}