:root {
    --bg: #f2f3f7;
    --card: #ffffff;
    --primary: #1B7D4F;
    --primary-light: #e8f5ee;
    --primary-dark: #145f3b;
    --accent-gold: #C8956C;
    --accent-rose: #C47D8B;
    --text-primary: #1a1a1c;
    --text-secondary: #5c5c63;
    --text-tertiary: #9999a3;
    --border: #eaeaef;
    --booked-bg: #f0f0f3;
    --booked-text: #b8b8c0;
    --price-bg: #fafafc;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'PingFang SC', 'Helvetica Neue', sans-serif;
    background: #e8e9ef;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Phone Frame */
.phone-frame {
    width: 390px;
    height: 844px;
    background: #fafafc;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 0 0 3px #1a1a1e,
        0 0 0 6px #2d2d33,
        0 0 0 8px #1a1a1e,
        0 20px 60px rgba(0, 0, 0, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    background: #fafafc;
    padding: 14px 28px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1c;
    letter-spacing: -0.2px;
    z-index: 10;
    flex-shrink: 0;
}
.status-bar .time-display {
    font-weight: 640;
    letter-spacing: -0.3px;
}
.status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.status-icons .signal-bars {
    display: flex;
    gap: 1.5px;
    align-items: flex-end;
    height: 12px;
}
.status-icons .signal-bars span {
    display: block;
    width: 3px;
    background: #1a1a1c;
    border-radius: 1px;
}
.status-icons .signal-bars span:nth-child(1) { height: 4px; }
.status-icons .signal-bars span:nth-child(2) { height: 6px; }
.status-icons .signal-bars span:nth-child(3) { height: 9px; }
.status-icons .signal-bars span:nth-child(4) { height: 12px; }
.battery-icon {
    width: 22px;
    height: 11px;
    border: 1.8px solid #1a1a1c;
    border-radius: 3px;
    padding: 2px;
    position: relative;
    display: flex;
    align-items: center;
}
.battery-icon::after {
    content: '';
    position: absolute;
    right: -3.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5px;
    height: 5px;
    background: #1a1a1c;
    border-radius: 0 1.5px 1.5px 0;
}
.battery-fill {
    width: 100%;
    height: 100%;
    background: #1a1a1c;
    border-radius: 1px;
}

/* Navigation Header */
.nav-header {
    background: #fafafc;
    padding: 10px 20px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}
.nav-back {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-back:hover {
    background: #e4e4ea;
    transform: scale(1.04);
}
.nav-back:active {
    transform: scale(0.94);
    background: #dddde4;
}
.nav-back svg {
    width: 18px;
    height: 18px;
    color: #3a3a40;
}
.nav-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.nav-club-name {
    font-size: 16px;
    font-weight: 680;
    color: #1a1a1c;
    letter-spacing: -0.2px;
    line-height: 1.2;
}
.nav-subtitle {
    font-size: 11px;
    color: #8e8e98;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.nav-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    flex-shrink: 0;
}
.nav-action:hover { background: #e4e4ea; }
.nav-action:active { transform: scale(0.94); }
.nav-action svg {
    width: 17px;
    height: 17px;
    color: #3a3a40;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 16px 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    background: #f2f3f7;
}
.main-content::-webkit-scrollbar { display: none; }

/* Date Selector */
.date-selector-wrapper {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 14px 6px 14px 14px;
    box-shadow: var(--shadow-sm);
    position: relative;
    flex-shrink: 0;
}
.date-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-right: 8px;
}
.date-month-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.date-nav-arrows {
    display: flex;
    gap: 4px;
}
.date-arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f5f5f8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: #5c5c63;
}
.date-arrow-btn:hover { background: #eaeaef; }
.date-arrow-btn:active {
    transform: scale(0.9);
    background: #dddde4;
}
.date-arrow-btn svg {
    width: 14px;
    height: 14px;
}
.date-scroll-container {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 4px 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.date-scroll-container::-webkit-scrollbar { display: none; }
.date-item {
    flex-shrink: 0;
    width: 52px;
    height: 68px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    background: #f8f8fb;
    border: 2px solid transparent;
    gap: 3px;
    position: relative;
}
.date-item:hover {
    background: #eef0f5;
    transform: translateY(-1px);
}
.date-item:active { transform: scale(0.94); }
.date-item.selected {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(27, 125, 79, 0.3);
    transform: translateY(-2px);
}
.date-item.selected .date-day {
    color: #ffffff;
    font-weight: 680;
}
.date-item.selected .date-weekday {
    color: rgba(255, 255, 255, 0.85);
}
.date-item.selected .date-dot {
    background: rgba(255, 255, 255, 0.7);
}
.date-item.today {
    border-color: #d0d5dd;
    
}
.date-item.today.selected { border-color: var(--primary); }
.date-day {
    font-size: 19px;
    font-weight: 620;
    color: #1a1a1c;
    letter-spacing: -0.3px;
    line-height: 1;
    transition: color var(--transition-smooth);
}
.date-weekday {
    font-size: 11px;
    font-weight: 500;
    color: #8e8e98;
    letter-spacing: 0.2px;
    transition: color var(--transition-smooth);
}
.date-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d0d5dd;
    transition: background var(--transition-smooth);
}
.date-dot.available {
    background: var(--primary);
    opacity: 0.7;
}

/* Venue Tabs */
.venue-tabs-wrapper {
    flex-shrink: 0;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 12px 10px;
    box-shadow: var(--shadow-sm);
}
.venue-tabs-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 4px;
}
.venue-tabs-scroll::-webkit-scrollbar { display: none; }
.venue-tab {
    flex-shrink: 0;
    padding: 10px 17px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 580;
    cursor: pointer;
    transition: all var(--transition-smooth);
    background: #f5f5f9;
    color: #5c5c63;
    border: 1.5px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.1px;
    position: relative;
    overflow: hidden;
}
.venue-tab:hover {
    background: #eeeef3;
    color: #3a3a40;
}
.venue-tab:active { transform: scale(0.95); }
.venue-tab.active {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 640;
    border-color: rgba(27, 125, 79, 0.25);
    box-shadow: 0 2px 8px rgba(27, 125, 79, 0.1);
}
.venue-tab .tab-icon-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.dot-gold { background: #C8956C; }
.dot-rose { background: #C47D8B; }
.dot-pickle { background: #5B9E8A; }
.dot-machine { background: #6B8DBF; }

/* Time Slots */
.timeslot-section {
    flex-shrink: 0;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 16px 14px;
    box-shadow: var(--shadow-sm);
}
.timeslot-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.timeslot-venue-label {
    font-size: 15px;
    font-weight: 650;
    color: #1a1a1c;
    letter-spacing: -0.2px;
}
.timeslot-venue-label .venue-color-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 7px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.timeslot-legend {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #8e8e98;
    font-weight: 500;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
}
.legend-dot.available-dot {
    background: #e8f5ee;
    border: 1.5px solid var(--primary);
}
.legend-dot.booked-dot {
    background: #eaeaef;
    border: 1.5px solid #c8c8d0;
}
.timeslot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.timeslot-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-smooth);
    background: #fafafd;
    border: 1.5px solid #eeeef2;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}
.timeslot-item:hover:not(.booked) {
    border-color: #d0d8d4;
    background: #fcfdfc;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.timeslot-item:active:not(.booked) {
    transform: scale(0.97);
    transition: all 0.1s ease;
}
.timeslot-item.booked {
    background: var(--booked-bg);
    border-color: transparent;
    cursor: not-allowed;
    opacity: 0.7;
}
.timeslot-item.selected-slot {
    background: #e8f5ee !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(27, 125, 79, 0.08) !important;
    animation: pulseSelect 0.4s ease;
}
@keyframes pulseSelect {
    0% { box-shadow: 0 0 0 0px rgba(27, 125, 79, 0.3); }
    100% { box-shadow: 0 0 0 3px rgba(27, 125, 79, 0.08); }
}
.timeslot-time {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    color: #1a1a1c;
}
.timeslot-item.booked .timeslot-time { color: #b8b8c0; }
.timeslot-status {
    font-size: 13px;
    font-weight: 580;
    letter-spacing: 0.1px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.timeslot-status.price {
    color: var(--primary-dark);
    background: #e8f5ee;
    padding: 5px 11px;
    border-radius: 16px;
    font-weight: 650;
}
.timeslot-item.selected-slot .timeslot-status.price {
    background: var(--primary);
    color: #fff;
}
.timeslot-status.booked-text {
    color: #b8b8c0;
    font-weight: 500;
}
.timeslot-booked-icon {
    width: 16px;
    height: 16px;
}

/* Info Banner */
.info-banner {
    flex-shrink: 0;
    background: linear-gradient(135deg, #fefaf6 0%, #fdf7f2 100%);
    border-radius: var(--radius-lg);
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #f0e6db;
    box-shadow: var(--shadow-sm);
}
.info-banner-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fae8d5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.info-banner-text {
    font-size: 12px;
    color: #8B6F4E;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1px;
}
.info-banner-text strong {
    color: #5c3d1e;
    font-weight: 650;
}

/* Bottom Sheet */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    border-radius: 36px;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    z-index: 50;
    transform: translateY(100%);
    transition: transform var(--transition-spring);
    padding: 20px 20px 30px;
    box-shadow: var(--shadow-lg);
    max-height: 55%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bottom-sheet.active { transform: translateY(0); }
.sheet-handle {
    width: 36px;
    height: 5px;
    background: #d5d5dd;
    border-radius: 3px;
    margin: 0 auto 8px;
    flex-shrink: 0;
}
.sheet-title {
    font-size: 17px;
    font-weight: 680;
    color: #1a1a1c;
    text-align: center;
    letter-spacing: -0.2px;
}
.sheet-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8f8fb;
    border-radius: var(--radius-md);
    padding: 14px 16px;
}
.sheet-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.sheet-detail-label {
    color: #8e8e98;
    font-weight: 500;
}
.sheet-detail-value {
    color: #1a1a1c;
    font-weight: 600;
}
.sheet-price-highlight {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}
.sheet-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.sheet-btn {
    flex: 1;
    padding: 14px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 620;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    letter-spacing: 0.2px;
    text-align: center;
}
.sheet-btn:active { transform: scale(0.96); }
.sheet-btn-cancel {
    background: #f0f0f4;
    color: #5c5c63;
}
.sheet-btn-cancel:hover { background: #e4e4ea; }
.sheet-btn-confirm {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(27, 125, 79, 0.3);
}
.sheet-btn-confirm:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(27, 125, 79, 0.35);
}

/* Toast */
.toast {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #1a1a1c;
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 580;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.toast.success { background: #1B7D4F; }

/* Bottom Navigation */
.bottom-nav {
    background: #fafafc;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 12px 20px;
    border-top: 1px solid #eeeef2;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 6px 14px;
    border-radius: 16px;
    position: relative;
    border: none;
    background: transparent;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: #9999a3;
}
.nav-item:active { transform: scale(0.92); }
.nav-item .nav-icon-wrapper {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    position: relative;
}
.nav-item .nav-icon {
    width: 24px;
    height: 24px;
    transition: all var(--transition-smooth);
    color: #9999a3;
}
.nav-item .nav-label {
    font-size: 10px;
    font-weight: 500;
    color: #9999a3;
    letter-spacing: 0.3px;
    transition: all var(--transition-smooth);
}
.nav-item.active {
    color: var(--primary);
}
.nav-item.active .nav-icon {
    color: var(--primary);
}
.nav-item.active .nav-label {
    color: var(--primary);
    font-weight: 640;
}
.nav-item.active::before {
    content: '';
    position: absolute;
    top: -8px;
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 0 0 3px 3px;
}

/* Profile Page Styles */
.profile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    background: #f2f3f7;
}
.profile-scroll::-webkit-scrollbar { display: none; }

.profile-header-section {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.profile-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(27, 125, 79, 0.3);
}
.profile-edit-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.profile-edit-badge:hover { transform: scale(1.1); }
.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.profile-phone {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}
.profile-stats-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.profile-stat-box {
    background: linear-gradient(135deg, #f8f8fb 0%, #f2f3f7 100%);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    min-width: 100px;
}
.profile-stat-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.profile-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.profile-stat-text {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Profile Menu */
.profile-menu-section {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}
.profile-menu-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}
.profile-menu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--border);
}
.profile-menu-item:hover { background: #f8f8fb; }
.profile-menu-item:active { background: #f2f3f7; }
.profile-menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 18px;
}
.pm-icon-orders { background: linear-gradient(135deg, #e8f5ee 0%, #d4edda 100%); }
.pm-icon-wallet { background: linear-gradient(135deg, #fef3e6 0%, #fde8cc 100%); }
.pm-icon-coupons { background: linear-gradient(135deg, #fce8ec 0%, #f9d1d8 100%); }
.pm-icon-points { background: linear-gradient(135deg, #e8eaf6 0%, #d1d5f0 100%); }
.pm-icon-settings { background: linear-gradient(135deg, #f0f0f4 0%, #e4e4ea 100%); }
.pm-icon-help { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); }
.pm-icon-about { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); }
.profile-menu-text {
    flex: 1;
    font-size: 14px;
    font-weight: 580;
    color: var(--text-primary);
}
.profile-menu-extra {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-right: 8px;
}
.profile-menu-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-tertiary);
}

.logout-btn {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: none;
    width: 100%;
    font-family: inherit;
}
.logout-btn:hover { background: #fef2f2; }
.logout-btn:active { transform: scale(0.98); }
.logout-btn-text {
    font-size: 14px;
    font-weight: 600;
    color: #dc2626;
}

/* Booking Cards */
.booking-card {
    background: linear-gradient(135deg, #f8f8fb 0%, #f2f3f7 100%);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    border-left: 4px solid var(--primary);
    transition: all var(--transition-smooth);
    cursor: pointer;
}
.booking-card:last-child { margin-bottom: 0; }
.booking-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.booking-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.booking-venue-name {
    font-size: 14px;
    font-weight: 620;
    color: var(--text-primary);
}
.booking-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}
.badge-upcoming {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.badge-cancelled {
    background: #fee;
    color: #dc2626;
}
.booking-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.booking-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}
.booking-info-icon { font-size: 14px; }

.empty-state {
    text-align: center;
    padding: 40px 20px;
}
.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}
.empty-state-text {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 420px) {
    .phone-frame {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }
    .overlay { border-radius: 0; }
    body { padding: 0; }
}
@media (min-width: 421px) and (max-height: 870px) {
    .phone-frame {
        height: 96vh;
        max-height: 820px;
    }
}
