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

body {
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.app-container {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* 动态背景粒子效果 */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* 玻璃拟态卡片 */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

/* 首页样式 */
.home-page {
    z-index: 2;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 40px;
}

.logo {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.subtitle {
    color: #ee5a24;
    /* color: linear-gradient(45deg, #ff6b6b, #ee5a24); */
    font-size: 30px;
    letter-spacing: 2px;
}

.subtitle2 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    letter-spacing: 2px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.photo-item {
    position: relative;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-item:nth-child(1) {
    grid-column: 1 / -1;
    height: 180px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.main-button {
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

.main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.secondary-button {
    height: 60px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-left: 0 !important;
}

/* 登录页面 */
.login-page {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.login-card {
    width: 100%;
    max-width: 350px;
    padding: 40px 30px;
}

.login-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.member-tip {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 30px;
    color: #ffc107;
    font-size: 14px;
    text-align: center;
}

/* 预约表单 */
.booking-page {
    position: relative;
    z-index: 2;
    padding: 20px;
    min-height: 100vh;
}

.page-header {
    display: flex;
    align-items: center;
    padding: 20px 0;
    color: white;
}

.back-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
}

.page-title {
    font-size: 20px;
    font-weight: bold;
}

.booking-form {
    margin-top: 20px;
}

.form-section {
    margin-bottom: 25px;
}

.section-title {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.seat-item {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seat-item.available:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: #4caf50;
}

.seat-item.selected {
    background: #4caf50;
    border-color: #4caf50;
}

.seat-item.occupied {
    background: rgba(244, 67, 54, 0.3);
    border-color: #f44336;
    cursor: not-allowed;
}

.gender-selector {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.gender-input {
    flex: 1;
}

/* 我的页面 */
.profile-page {
    position: relative;
    z-index: 2;
    padding: 20px;
    min-height: 100vh;
}

.profile-header {
    text-align: center;
    padding: 40px 0;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.username {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.balance {
    color: #4caf50;
    font-size: 16px;
}

.profile-menu {
    margin-top: 30px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    color: white;
    cursor: pointer;
}

.menu-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 预约历史 */
.history-page {
    position: relative;
    z-index: 2;
    padding: 20px;
    min-height: 100vh;
}

.history-list {
    margin-top: 20px;
}

.history-item {
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 15px;
    color: white;
}

.history-date {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.history-details {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.status-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    margin-top: 10px;
}

.status-completed {
    background: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.status-cancelled {
    background: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* Element UI 样式覆盖 */
.el-input__inner {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    border-radius: 10px !important;
}

.el-input__inner::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.el-button--primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    border: none !important;
    border-radius: 25px !important;
}

.el-date-editor.el-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
}

.el-time-select {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .seat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sms {
    display: flex;
    column-gap: 5px;
}

.seat-info{
    color:#ee5a24;
    font-weight: 400;
    font-size: 30px;
}

.warning-text {
    color: #ee5a24;
}