/* 注册页面专用样式 */
.page-container {
  padding-top: 116px;
}

/* Banner区域 */
.register-hero {
    position: relative;
    height: 500px;
    /* background-image: url('../images/banner_reg.jpg'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.8) 0%, rgba(52, 150, 224, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* 注册提醒区域 - 带背景图 */
.register-notice {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border: 1px solid var(--medium-blue);
    position: relative;
    overflow: hidden;
}

.register-notice::before {
    content: '';
    position: absolute;
    top: 90px;
    right: 50px;
    width: 35%;
    height: 70%;
    background-image: url(../images/customer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .5;
}

.notice-content {
    position: relative;
    z-index: 2;
    width: 55%;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
}

.notice-header h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: left;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    margin: 1.5rem 0;
    border-radius: 2px;
}

.notice-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.notice-content li {
    margin-bottom: 0.8rem;
    position: relative;
}

.notice-content .highlight {
    background: linear-gradient(135deg, var(--light-blue), var(--medium-blue));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
    font-weight: 600;
    color: var(--secondary);
    margin-top: 1.5rem;
}

/* 注册类型网格 */
.registration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.registration-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.registration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    /* 移除默认背景图片，让特定类来设置 */
    background-image: none;
}

.registration-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.85) 0%, rgba(52, 150, 224, 0.7) 100%);
}

/* 自定义颜色类 */
.registration-card.type-orange .card-overlay {
  background: #fce38a
}

.registration-card.type-blue .card-overlay {
  background: #ff9867
}

.registration-card.type-purple .card-overlay {
  background: #F0A0AB
}

.registration-card.type-red .card-overlay {
  background: #D2F0E0
}

.registration-card.type-green .card-overlay {
  background: #b9bbdf
}

.registration-card.type-blue2 .card-overlay {
  background: #87CEEB
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.card-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--orange);
}

.card-button {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    font-weight: 600;
}

.registration-card:hover .card-button {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.card-button .iconfont {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.registration-card:hover .card-button .iconfont {
    transform: translateX(3px);
}

/* 门票权益区域 - 简化版 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.flex {
  display: flex;
  justify-content: center;
}

.benefit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-bg {
    transform: scale(1.05);
}

.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.1) 0%, rgba(0, 68, 148, 0.9) 100%);
}

.benefit-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.benefit-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* 通用内容区域样式 */
.content-section {
    padding: 4rem 0;
}

.bg-light {
    background: linear-gradient(135deg, var(--light) 0%, var(--light-blue) 100%);
}

.section-header.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.container-1400 {
    max-width: 1400px;
    margin: 0 auto;
}

.reg-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.reg-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 68, 148, 0.8) 0%, rgba(52, 150, 224, 0.6) 100%);
}

.reg-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.reg-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reg-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* 页面标题和按钮区域 */
.reg-header {
    text-align: center;
    padding: 3rem 0 2rem;
    background: var(--white);
}

.reg-main-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.reg-back-button {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.reg-back-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.reg-back-button .iconfont {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* 富媒体内容区域 */
.reg-content-area {
    background: var(--white);
    margin: 0 auto;
    max-width: 1400px
}

.rich-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.rich-media-placeholder {
    background: linear-gradient(135deg, var(--light-blue), var(--medium-blue));
    border: 2px dashed var(--primary);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--secondary);
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.placeholder-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.placeholder-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .registration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .register-hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .registration-card {
        height: 250px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        height: 250px;
    }
    
    .register-notice {
        padding: 2rem 1.5rem;
    }
    
    .notice-header h2 {
        font-size: 1.8rem;
    }
    
    .benefit-title {
        font-size: 1.8rem;
    }
    .register-notice::before {
        display: none;
    }
    
    .notice-content {
        width: 100%;
    }
    
    .notice-header h2 {
        text-align: center;
    }
    
    .divider {
        margin: 1.5rem auto;
    }
    .reg-hero {
        height: 250px;
    }
    
    .reg-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .reg-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .reg-main-title {
        font-size: 2rem;
    }
    
    .rich-media-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .placeholder-title {
        font-size: 1.5rem;
    }

    .page-container {
        padding-top: 60px;
    }
    .content-section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .register-hero {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.6rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    .reg-hero {
        height: 200px;
    }
    
    .reg-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .reg-main-title {
        font-size: 1.6rem;
    }
    
    .rich-media-placeholder {
        padding: 2rem 1rem;
    }
}