@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

/* ========================================
   现代化婚恋平台设计 - 受 Pairs 启发
   ======================================== */

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

:root {
    --primary-color: #d4a574;
    --primary-dark: #c4955f;
    --secondary-color: #e8c9a0;
    --accent-color: #e0b889;
    --text-dark: #2d2d2d;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --gradient: linear-gradient(135deg, #d4a574 0%, #e8c9a0 100%);
    --stories-gap: 24px;
    --visible-cards: 3;
}

@media (max-width: 1100px) {
    :root {
        --visible-cards: 2;
    }
}

@media (max-width: 768px) {
    :root {
        --visible-cards: 1;
    }
}

body {
    font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* 防止移动端输入框放大和溢出 */
@media screen and (max-width: 600px) {
    select,
    textarea,
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px !important;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .form-container-new {
        margin: 0 12px;
    }
}

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

/* ========================================
   导航栏
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: none;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 16px rgba(212, 165, 116, 0.3));
}

.logo-type {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--gradient);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* ========================================
   Hero 区域
   ======================================== */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
    margin-top: 60px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, #d4a574 0%, #c4955f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.cta-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-number .counter {
    display: inline-block;
    font-size: 2.2rem;
    min-width: 4.5ch;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

/* ========================================
   通用区域样式
   ======================================== */

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ========================================
   使用方式区域
   ======================================== */

.how-it-works {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    z-index: 1;
}

.step-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.1);
}

.step-content {
    padding: 30px 25px;
    text-align: center;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    font-weight: 300;
}

/* ========================================
   幸福見證輪播
   ======================================== */

.success-stories {
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.stories-slider {
    position: relative;
    margin-top: 40px;
}

.stories-window {
    overflow: hidden;
}

.stories-track {
    display: flex;
    gap: var(--stories-gap);
    transition: transform 0.6s ease;
}

.story-card {
    flex: 0 0 calc((100% - (var(--visible-cards) - 1) * var(--stories-gap)) / var(--visible-cards));
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.story-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(212, 165, 116, 0.3);
}

.story-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.story-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.story-content {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tag-married { background: linear-gradient(135deg, #f0e8dc 0%, #e8dcc8 100%); }
.tag-dating { background: linear-gradient(135deg, #f5ede0 0%, #f0e5d4 100%); }
.tag-engaged { background: linear-gradient(135deg, #f0e8dc 0%, #e8dcc8 100%); }
.tag-steady { background: linear-gradient(135deg, #f5f0e8 0%, #f0e8dc 100%); }

/* 移除轮播箭头按钮 */
.slider-btn {
    display: none;
}

.slider-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #e6e6f2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--primary-color);
}

@media (max-width: 600px) {
    .male-notice {
        padding: 20px;
        margin-top: 24px;
    }
    
    .male-notice-title {
        font-size: 1rem;
    }
    
    .male-notice-text {
        font-size: 0.9rem;
    }
    
    .male-contact-link {
        font-size: 0.9rem;
        padding: 6px 14px;
    }
}

/* ========================================
   优势特点
   ======================================== */

.features-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.25;
    z-index: 0;
}

.features-section::before {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0) 65%);
    top: -160px;
    left: -140px;
}

.features-section::after {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(232, 201, 160, 0.15) 0%, rgba(232, 201, 160, 0) 65%);
    bottom: -200px;
    right: -120px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(212, 165, 116, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 165, 116, 0.12);
    line-height: 1;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 16px 0;
}

.feature-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(232, 201, 160, 0.08));
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
}

/* ========================================
   表单区域 - 全新相亲主题设计
   ======================================== */

.form-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 50%, #faf8f5 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 背景装饰 */
.form-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.heart-float {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatHeart 20s infinite ease-in-out;
}

.heart-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    font-size: 2.5rem;
}

.heart-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    font-size: 2rem;
}

.heart-4 {
    top: 30%;
    right: 25%;
    animation-delay: 15s;
    font-size: 3.5rem;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
    75% {
        transform: translateY(-40px) rotate(3deg);
    }
}

/* 新表单布局 */
.form-wrapper-new {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-container-new {
    background: white;
    padding: 52px 60px 48px;
    border-radius: 35px;
    box-shadow: 0 30px 90px rgba(212, 165, 116, 0.15);
    position: relative;
    border: 2px solid rgba(212, 165, 116, 0.1);
}

.form-container-new::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4a574, #e8c9a0, #e0b889);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(10px);
}

.form-header-new {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon-badge {
    margin-bottom: 20px;
}

.icon-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
    border-radius: 50%;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
    animation: ringPulse 3s infinite ease-in-out;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(212, 165, 116, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(212, 165, 116, 0.25);
    }
}

.form-badge-new {
    display: inline-block;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 18px;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.form-header-new h2 {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a574 0%, #c4955f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header-new p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.form-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid rgba(212, 165, 116, 0.15);
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* 参与按钮界面 */
.join-button-section {
    text-align: center;
    padding: 40px 20px;
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.join-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.join-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.join-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

.join-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    margin-top: 10px;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.join-btn:active {
    transform: translateY(0);
}

/* 性别选择界面 */
.gender-selection-section {
    text-align: center;
    padding: 40px 20px;
}

.gender-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.gender-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.gender-content > p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.gender-options {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.gender-btn {
    flex: 1;
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 180px;
}

.gender-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gender-btn.gender-female:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(232, 201, 160, 0.05) 100%);
}

.gender-btn.gender-male:hover {
    border-color: #6b7280;
    background: rgba(107, 114, 128, 0.05);
}

.gender-icon {
    font-size: 3.5rem;
}

.gender-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.back-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-gray);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.back-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.05);
}

/* 男性联系客服界面 */
.male-contact-section {
    text-align: center;
    padding: 50px 20px;
}

.male-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.male-contact-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.male-contact-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.male-contact-content > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
    max-width: 500px;
}

.male-contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #06C755;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.3);
    margin-top: 10px;
}

.male-contact-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(6, 199, 85, 0.4);
    background: #05b84a;
}

.male-contact-link-btn:active {
    transform: translateY(0);
}

.male-contact-link-btn:visited {
    color: white !important;
}

.match-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafafa;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group.select-field {
    position: relative;
}

.form-group.select-field select {
    background: #ffffff;
    padding-right: 48px;
}

.form-group.select-field::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23718096' d='M1.41 0L6 4.59L10.59 0L12 1.41l-6 6l-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    pointer-events: none;
    transition: filter 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.08);
    background: white;
}

.form-group.select-field:focus-within::after {
    filter: hue-rotate(-20deg) saturate(1.4);
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
}

.field-required-hint {
    font-size: 0.85em;
    font-weight: normal;
    color: var(--primary-color);
    margin-left: 4px;
}

/* 文件上传样式 */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #d0d7de;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

.file-upload-label:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.file-upload-label svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.file-upload-label:hover svg {
    transform: translateY(-2px);
}

.file-upload-text {
    user-select: none;
}

.qr-preview {
    margin-top: 16px;
    position: relative;
    display: inline-block;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.qr-preview img {
    display: block;
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.remove-qr-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.95);
    color: white;
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    padding: 0;
    z-index: 10;
}

.remove-qr-btn:hover {
    background: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.5);
}

.remove-qr-btn:active {
    transform: scale(1.05);
}

.remove-qr-btn svg {
    display: block;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .file-upload-label {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .qr-preview img {
        max-width: 150px;
        max-height: 150px;
    }
}

.age-range-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range-input input {
    flex: 1;
}

.age-range-input span {
    color: var(--text-gray);
    font-weight: 500;
}

.age-range-group {
    grid-column: 1 / -1;
}

.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.privacy-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.lock-icon {
    font-size: 1rem;
}

/* 男性提示框样式 */
.male-notice {
    margin-top: 30px;
    padding: 24px;
    background: linear-gradient(135deg, #f5f0e8 0%, #faf8f5 100%);
    border-radius: 16px;
    border: 2px solid rgba(212, 165, 116, 0.2);
    text-align: center;
}

.male-notice-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.male-notice-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.male-contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(212, 165, 116, 0.1);
}

.male-contact-link:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateY(-2px);
}

/* ========================================
   Loading & Status 遮罩
   ======================================== */

.loading-overlay,
.status-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.loading-overlay.active,
.status-overlay.active {
    display: flex;
}

.loading-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 400px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

/* 更新所有使用旧颜色的地方 */
.step-card:hover {
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.2);
}

.step-number {
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.35);
}

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

.loading-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.loading-card p {
    color: var(--text-gray);
}

.status-card {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    max-width: 460px;
    position: relative;
    animation: slideUp 0.5s ease-out;
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.status-content h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.status-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.status-subtext {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 模态框中的 LINE 客服按钮样式 */
.status-card .line-contact-btn {
    display: inline-flex;
    justify-content: center;
    margin-top: 10px;
    width: auto;
    min-width: 200px;
}

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

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aec0;
}

.footer-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-section p {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.line-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #06C755 !important;
    color: white !important;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
}

.line-contact-btn:hover {
    background: #05b04c !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.45);
    text-decoration: none !important;
}

.line-contact-btn:visited {
    color: white !important;
    background: #06C755 !important;
}

.line-contact-btn:active {
    color: white !important;
    background: #05b04c !important;
}

.line-contact-btn svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

/* ========================================
   响应式设计
   ======================================== */

@media (max-width: 968px) {
    /* 导航栏 */
    .navbar {
        padding: 12px 0;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        border-radius: 16px;
        padding: 12px 0;
        box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15);
        min-width: 200px;
        display: none;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 24px;
    }

    .btn-nav {
        margin: 8px 20px 0;
        text-align: center;
    }
    
    /* Hero 区域 */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }
    
    /* 三步骤区域 */
    .how-it-works {
        padding: 60px 0;
    }
    
    .steps-grid {
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 10px 20px 30px;
        margin: 0 -10px;
    }
    
    .steps-grid::-webkit-scrollbar {
        display: none;
    }
    
    .step-card {
        flex: 0 0 80%;
        min-width: 80%;
        max-width: 80%;
        scroll-snap-align: center;
    }
    
    .step-image {
        height: 180px;
    }
    
    .step-content {
        padding: 25px 20px;
    }
    
    .step-arrow {
        display: none;
    }
    
    /* 幸福见证 */
    .success-stories {
        padding: 60px 0;
    }
    
    /* 平台优势 */
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .feature-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.88rem;
        margin-bottom: 12px;
    }
    
    .feature-points li {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    /* 表单区域 */
    .form-section {
        padding: 60px 0;
    }
    
    .heart-float {
        font-size: 2.5rem;
    }
    
    .form-wrapper-new {
        max-width: 100%;
    }
    
    .form-container-new {
        padding: 40px 30px 35px;
        border-radius: 25px;
    }
    
    .form-header-new h2 {
        font-size: 2rem;
    }
    
    .form-icon-badge {
        margin-bottom: 15px;
    }
    
    .icon-ring {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .form-badge-new {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    
    .form-stats {
        gap: 15px;
    }
    
    .stat-badge {
        padding: 8px 16px;
    }
    
    .stat-text {
        font-size: 0.85rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-btn {
        padding: 16px 35px;
        font-size: 1.05rem;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        display: block;
    }
    
    .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 1rem;
    }
    
    .line-contact-btn {
        font-size: 1rem;
        padding: 14px 28px;
        gap: 10px;
        background: #06C755 !important;
        color: white !important;
    }
    
    .line-contact-btn:hover,
    .line-contact-btn:visited,
    .line-contact-btn:active {
        color: white !important;
    }
    
    .line-contact-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 600px) {
    /* 基础设置 */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    /* 导航栏 */
    .logo-image {
        width: 38px;
        height: 38px;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    /* Hero 区域 */
    .hero {
        padding: 70px 0 50px;
        margin-top: 60px;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 12px;
        margin-top: 36px;
        justify-content: center;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.85);
        border-radius: 16px;
        padding: 16px 12px;
        box-shadow: 0 10px 25px rgba(212, 165, 116, 0.15);
        border: 1px solid rgba(212, 165, 116, 0.12);
        flex: 1;
        min-width: 0;
    }
    
    .stat-number .counter {
        font-size: 1.6rem;
        min-width: auto;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .image-card {
        border-radius: 15px;
    }
    
    /* 通用区域标题 */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* 三步骤区域 */
    .how-it-works {
        padding: 50px 0;
    }
    
    .steps-grid {
        gap: 30px;
    }
    
    .step-card {
        border-radius: 20px;
    }
    
    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        top: 16px;
        left: 16px;
    }
    
    .step-image {
        height: 180px;
    }
    
    .step-content {
        padding: 25px 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .step-arrow {
        font-size: 1.8rem;
        margin: 5px 0;
    }
    
    /* 幸福见证 */
    .success-stories {
        padding: 50px 0;
    }
    
    .stories-slider {
        margin-top: 24px;
    }
    
    .stories-window {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 16px;
    }
    
    .stories-window::-webkit-scrollbar {
        display: none;
    }
    
    .stories-track {
        gap: 18px;
    }
    
    .story-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
        padding: 22px 18px;
    }
    
    .story-avatar {
        width: 50px;
        height: 50px;
    }
    
    .story-info h4 {
        font-size: 1rem;
    }
    
    .story-info p {
        font-size: 0.8rem;
    }
    
    .story-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .story-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    /* 平台优势 */
    .features-section {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        padding: 18px 14px;
    }
    
    .feature-number {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .feature-points {
        gap: 5px;
        flex-direction: column;
    }
    
    .feature-points li {
        font-size: 0.7rem;
        padding: 4px 8px;
        text-align: center;
    }
    
    .feature-decoration {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    /* 表单区域 */
    .form-section {
        padding: 40px 0;
    }
    
    .heart-float {
        font-size: 1.8rem;
    }
    
    .heart-1, .heart-2, .heart-3, .heart-4 {
        font-size: 1.8rem !important;
    }
    
    .form-wrapper-new {
        max-width: 100%;
        padding: 0;
    }
    
    .form-container-new {
        padding: 30px 20px 25px;
        border-radius: 20px;
        border-width: 2px;
        margin: 0 15px;
    }
    
    .form-container-new::before {
        border-radius: 20px;
    }
    
    .form-header-new {
        margin-bottom: 30px;
    }
    
    .form-icon-badge {
        margin-bottom: 12px;
    }
    
    .icon-ring {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .form-badge-new {
        font-size: 0.85rem;
        padding: 8px 18px;
        margin-bottom: 15px;
    }
    
    .form-header-new h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .form-header-new p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .form-stats {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-badge {
        padding: 8px 16px;
        width: 100%;
        max-width: 100%;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .match-form {
        gap: 16px;
    }
    
    .form-grid {
        gap: 14px;
    }
    
    .form-group {
        width: 100%;
    }
    
    /* 参与按钮和性别选择移动端样式 */
    .join-button-section {
        padding: 30px 15px;
    }
    
    .join-icon {
        font-size: 3rem;
    }
    
    .join-content h3 {
        font-size: 1.5rem;
    }
    
    .join-content p {
        font-size: 1rem;
    }
    
    .join-btn {
        padding: 16px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .gender-selection-section {
        padding: 30px 15px;
    }
    
    .gender-content h3 {
        font-size: 1.5rem;
    }
    
    .gender-options {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .gender-btn {
        min-width: auto;
        padding: 25px 20px;
    }
    
    .gender-icon {
        font-size: 3rem;
    }
    
    .gender-label {
        font-size: 1rem;
    }
    
    .male-contact-section {
        padding: 40px 15px;
    }
    
    .male-contact-icon {
        font-size: 3rem;
    }
    
    .male-contact-content h3 {
        font-size: 1.5rem;
    }
    
    .male-contact-content > p {
        font-size: 0.95rem;
    }
    
    .male-contact-link-btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .back-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 14px;
        font-size: 16px;
        border-radius: 12px;
        border-width: 2px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group select {
        background-position: right 14px center;
        padding-right: 38px;
    }
    
    .form-group textarea {
        min-height: 90px;
        resize: vertical;
    }
    
    .age-range-input {
        gap: 6px;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .age-range-input input {
        min-width: 0;
        flex: 1;
        padding: 13px 10px;
    }
    
    .age-range-input span {
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 25px;
        margin-top: 12px;
        width: 100%;
        font-weight: 600;
    }
    
    .privacy-text {
        font-size: 0.8rem;
        margin-top: 12px;
        line-height: 1.6;
    }
    
    /* Loading & Status */
    .loading-card {
        padding: 40px 25px;
        border-radius: 20px;
        max-width: 90%;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }
    
    .loading-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .loading-card p {
        font-size: 0.9rem;
    }
    
    .status-card {
        padding: 35px 25px;
        border-radius: 20px;
        max-width: 90%;
    }
    
    .status-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .status-content h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .status-content p {
        font-size: 0.95rem;
    }
    
    .status-subtext {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .secondary-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .close-btn {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 25px;
        font-size: 0.85rem;
    }
}

