/**
 * 물때표 - 메인 스타일시트
 * 컬러 스킴:
 * - 메인: 딥블루 #1565C0
 * - 보조1: 에메랄드 #26C6DA
 * - 보조2: 코랄 오렌지 #FF7043
 * - 배경: 화이트 #FFFFFF
 * - 포인트/텍스트: 차콜 #263238
 */

:root {
    --primary: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #42A5F5;
    --secondary: #26C6DA;
    --secondary-dark: #00ACC1;
    --accent: #FF7043;
    --accent-dark: #E64A19;
    --bg-main: #FFFFFF;
    --bg-gray: #F5F7FA;
    --bg-dark: #263238;
    --text-primary: #263238;
    --text-secondary: #546E7A;
    --text-light: #90A4AE;
    --text-white: #FFFFFF;
    --border: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --high-tide: #1565C0;
    --low-tide: #26C6DA;
    --sunrise: #FF9800;
    --sunset: #E91E63;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-gray);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   헤더
   =================================== */
.site-header {
    background: var(--bg-main);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.5rem;
}

.main-nav {
    position: relative;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-main);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px var(--shadow);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li a {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.2s;
}

.nav-menu li a:hover {
    background: var(--bg-gray);
    color: var(--primary);
}

.nav-menu .btn-login {
    background: var(--primary);
    color: var(--text-white);
    text-align: center;
}

.nav-menu .btn-login:hover {
    background: var(--primary-dark);
    color: var(--text-white);
}

.nav-menu .btn-logout {
    color: var(--text-secondary);
}

/* 데스크톱 네비게이션 */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 4px;
    }

    .nav-menu li a {
        padding: 8px 16px;
    }
}

/* ===================================
   메인 컨텐츠
   =================================== */
.site-main {
    flex: 1;
    padding: 20px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===================================
   카드 스타일
   =================================== */
.card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px var(--shadow);
    overflow: hidden;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-gray);
}

/* ===================================
   물때표 대시보드
   =================================== */
.tide-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 날짜 선택기 */
.date-picker {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 2px 12px var(--shadow);
}

.date-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.date-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: all 0.2s;
}

.date-nav-btn:hover {
    background: var(--primary);
    color: var(--text-white);
}

.current-date {
    text-align: center;
    flex: 1;
}

.current-date-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.current-date-sub {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.today-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 8px;
}

/* 지역 선택기 */
.location-picker {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 2px 12px var(--shadow);
}

.location-picker label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.location-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-main);
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23546E7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 44px;
}

.location-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* 물때 정보 카드 */
.tide-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    color: var(--text-white);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.3);
}

.tide-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.tide-location {
    font-size: 1.25rem;
    font-weight: 700;
}

.tide-date-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
}

.tide-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tide-time-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.tide-time-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.tide-time-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.tide-level {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 4px;
}

.tide-time-item.high {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tide-time-item.low {
    border: 2px solid rgba(38, 198, 218, 0.5);
    background: rgba(38, 198, 218, 0.2);
}

/* 부가 정보 */
.tide-extra {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
}

.tide-extra-item {
    text-align: center;
}

.tide-extra-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.tide-extra-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

.tide-extra-value {
    font-size: 1rem;
    font-weight: 600;
}

/* 주간 미니 캘린더 */
.week-calendar {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: 0 2px 12px var(--shadow);
}

.week-calendar-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.week-day {
    text-align: center;
    padding: 12px 4px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.week-day:hover {
    background: var(--bg-gray);
}

.week-day.active {
    background: var(--primary);
    color: var(--text-white);
}

.week-day.today {
    border: 2px solid var(--accent);
}

.week-day-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.week-day.active .week-day-name {
    color: rgba(255, 255, 255, 0.8);
}

.week-day-num {
    font-size: 1.125rem;
    font-weight: 600;
}

/* 즐겨찾기 버튼 */
.favorite-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.favorite-btn.active {
    background: var(--accent);
}

/* ===================================
   폼 스타일
   =================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input.error {
    border-color: #F44336;
}

.form-error {
    color: #F44336;
    font-size: 0.875rem;
    margin-top: 8px;
}

.form-help {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 8px;
}

/* ===================================
   버튼 스타일
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-gray);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-white);
}

.btn-accent:hover {
    background: var(--accent-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-danger {
    background: #F44336;
    color: var(--text-white);
}

.btn-danger:hover {
    background: #D32F2F;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* ===================================
   인증 페이지
   =================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.auth-logo .logo-icon {
    font-size: 2rem;
}

.auth-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.auth-links {
    margin-top: 24px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.auth-links a {
    color: var(--primary);
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ===================================
   마이페이지
   =================================== */
.profile-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 32px 24px;
    color: var(--text-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 16px;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-email {
    opacity: 0.8;
    font-size: 0.875rem;
}

.profile-content {
    background: var(--bg-main);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 24px;
}

.profile-section {
    margin-bottom: 24px;
}

.profile-section:last-child {
    margin-bottom: 0;
}

.profile-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.profile-info-item:last-child {
    border-bottom: none;
}

.profile-info-label {
    color: var(--text-secondary);
}

.profile-info-value {
    font-weight: 500;
    color: var(--text-primary);
}

.withdraw-link {
    color: var(--text-light);
    font-size: 0.75rem;
    text-align: right;
    display: block;
    margin-top: 32px;
    opacity: 0.6;
}

.withdraw-link:hover {
    opacity: 1;
    color: #F44336;
}

/* ===================================
   지역 목록
   =================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.location-card {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 2px 12px var(--shadow);
    cursor: pointer;
    transition: all 0.2s;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.location-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.location-region {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-gray);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.location-tide-preview {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.location-tide-item {
    text-align: center;
}

.location-tide-label {
    color: var(--text-light);
    margin-bottom: 4px;
}

.location-tide-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* ===================================
   알림 메시지
   =================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.alert-warning {
    background: #FFF3E0;
    color: #E65100;
    border: 1px solid #FFCC80;
}

.alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #90CAF9;
}

/* ===================================
   푸터
   =================================== */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.footer-top {
    padding: 48px 0 32px;
    display: grid;
    gap: 32px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-white);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--text-light);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
    }
}

/* ===================================
   사이트맵 페이지
   =================================== */
.sitemap-section {
    margin-bottom: 32px;
}

.sitemap-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.sitemap-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.sitemap-list li a {
    display: block;
    padding: 12px 16px;
    background: var(--bg-main);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    transition: all 0.2s;
}

.sitemap-list li a:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ===================================
   약관 페이지
   =================================== */
.legal-content {
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px var(--shadow);
}

.legal-content h2 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

/* ===================================
   빈 상태
   =================================== */
.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.empty-state-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* ===================================
   로딩 스피너
   =================================== */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   반응형
   =================================== */
@media (max-width: 767px) {
    .tide-times {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .profile-header {
        padding: 24px 20px;
    }

    .legal-content {
        padding: 24px 20px;
    }
}

@media (min-width: 768px) {
    .site-main {
        padding: 32px 24px;
    }

    .tide-dashboard {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .tide-info-card {
        grid-column: span 2;
    }

    .week-calendar {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .tide-dashboard {
        grid-template-columns: repeat(3, 1fr);
    }

    .tide-info-card {
        grid-column: span 2;
    }

    .week-calendar {
        grid-column: span 3;
    }
}

/* ===================================
   유틸리티
   =================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-light { color: var(--text-light); }
.text-danger { color: #F44336; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden { display: none !important; }

/* ===================================
   페이지 타이틀
   =================================== */
.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.page-subtitle {
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 400;
    font-size: 1rem;
}

/* 탈퇴 확인 페이지 */
.withdraw-warning {
    background: #FFF3E0;
    border: 2px solid #FF9800;
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.withdraw-warning-title {
    color: #E65100;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.withdraw-warning ul {
    color: #E65100;
    padding-left: 20px;
}

.withdraw-warning li {
    margin-bottom: 4px;
    list-style: disc;
}
