/* 移动应用页面样式 */

.mobile-hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.mobile-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #e8f4fd;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #b0c4de;
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 12px;
    color: #00eaff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.download-btn:hover {
    background: rgba(0, 234, 255, 0.2);
    border-color: #00eaff;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 24px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 12px;
    color: #b0c4de;
}

.download-platform {
    font-size: 16px;
    font-weight: 600;
}

/* 手机模拟器 */
.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #2a2f3e, #1a1f2e);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, #00eaff, #0099cc);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-logo {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo i {
    color: white;
    font-size: 16px;
}

.app-title {
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.app-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.contract-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 234, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 234, 255, 0.1);
}

.contract-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contract-icon i {
    color: white;
    font-size: 16px;
}

.contract-info {
    flex: 1;
}

.contract-info h4 {
    color: #e8f4fd;
    font-size: 14px;
    margin-bottom: 4px;
}

.contract-info p {
    color: #b0c4de;
    font-size: 12px;
    margin: 0;
}

.contract-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.contract-status.pending {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.contract-status.completed {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.contract-status.draft {
    background: rgba(149, 165, 166, 0.2);
    color: #95a5a6;
}

.app-nav {
    display: flex;
    background: #1a1f2e;
    border-top: 1px solid rgba(0, 234, 255, 0.1);
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    color: #b0c4de;
    font-size: 10px;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: #00eaff;
}

.nav-item i {
    font-size: 16px;
}

/* 功能特色 */
.mobile-features {
    background: #101522;
    padding: 80px 0;
}

.mobile-features h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #1a1f2e;
    border-radius: 16px;
    border: 1px solid rgba(0, 234, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 234, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 234, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    color: #e8f4fd;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feature-item p {
    color: #b0c4de;
    line-height: 1.6;
}

/* 截图展示 */
.mobile-screenshots {
    background: #0a0e1a;
    padding: 80px 0;
}

.mobile-screenshots h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.screenshots-carousel {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 20px 0;
}

.screenshot-item {
    flex-shrink: 0;
}

.screenshot-frame {
    position: relative;
    width: 200px;
    height: 360px;
    background: #1a1f2e;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screenshot-frame img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.screenshot-label {
    text-align: center;
    color: #e8f4fd;
    margin-top: 16px;
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 50%;
    color: #00eaff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 234, 255, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 234, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00eaff;
}

/* 用户评价 */
.mobile-reviews {
    background: #101522;
    padding: 80px 0;
}

.mobile-reviews h2 {
    text-align: center;
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-item {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 234, 255, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00eaff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar i {
    color: white;
    font-size: 20px;
}

.reviewer-details h4 {
    color: #e8f4fd;
    margin-bottom: 4px;
}

.stars {
    color: #f39c12;
    font-size: 14px;
}

.review-date {
    color: #b0c4de;
    font-size: 14px;
}

.review-text {
    color: #b0c4de;
    line-height: 1.6;
}

/* 下载区域 */
.mobile-download {
    background: #0a0e1a;
    padding: 80px 0;
    text-align: center;
}

.download-content h2 {
    color: #00eaff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.download-content p {
    color: #b0c4de;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: rgba(0, 234, 255, 0.1);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 12px;
    color: #00eaff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-option:hover {
    background: rgba(0, 234, 255, 0.2);
    border-color: #00eaff;
    transform: translateY(-4px);
}

.download-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 234, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon i {
    font-size: 24px;
}

.download-info {
    text-align: left;
}

.download-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.download-desc {
    font-size: 14px;
    color: #b0c4de;
}

.app-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.info-label {
    color: #b0c4de;
    font-size: 14px;
}

.info-value {
    color: #e8f4fd;
    font-weight: 600;
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mobile-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .screenshots-carousel {
        gap: 20px;
    }
    
    .screenshot-frame {
        width: 160px;
        height: 288px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .download-option {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .mobile-hero {
        padding: 60px 0 40px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .review-item {
        padding: 20px;
    }
} 