/* ===================================
   2028体育页面移动端特殊样式
   2028sports.html 专用移动端优化
   =================================== */

@media screen and (max-width: 768px) {
    
    /* === 2028体育页面Hero区域优化 === */
    
    .hero {
        background: linear-gradient(135deg, rgba(224, 184, 160, 0.1) 0%, rgba(0,0,0,0.8) 100%);
        position: relative;
    }
    
    .hero-title {
        background: linear-gradient(135deg, #E0B8A0, #C09A82);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 1.5rem;
        text-shadow: none;
    }
    
    /* === 官方指定合作伙伴区域优化 === */
    
    .sponsorship-logos {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .sponsorship-logos img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        background: linear-gradient(145deg, #1c1c1c, #111);
        border: 1px solid rgba(224, 184, 160, 0.2);
        padding: 1rem;
    }
    
    .sponsorship-logos img:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        border-color: rgba(224, 184, 160, 0.4);
    }
    
    /* === APP下载区域布局调整 === */
    
    #app-download .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .app-info {
        order: 1;
        text-align: center;
    }
    
    .app-preview {
        order: 2;
        text-align: center;
        margin: 2rem 0;
    }
    
    .app-preview img {
        width: 100%;
        max-width: 480px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .app-preview img:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .download-buttons {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
        justify-content: center;
        align-items: center;
    }
    
    .download-button {
        background: linear-gradient(145deg, #1c1c1c, #111);
        border: 2px solid rgba(224, 184, 160, 0.3);
        border-radius: 15px;
        padding: 1.5rem;
        text-align: center;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .download-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(224, 184, 160, 0.05) 0%, transparent 60%);
        pointer-events: none;
    }
    
    .download-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
        border-color: rgba(224, 184, 160, 0.6);
    }
    
    .download-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color, #E0B8A0);
        position: relative;
        z-index: 2;
    }
    
    .download-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }
    
    .download-button .cta-button {
        background: linear-gradient(135deg, var(--primary-color, #E0B8A0), #C09A82);
        color: #000;
        padding: 0.8rem 2rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .download-button .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(224, 184, 160, 0.3);
    }
}

/* === 小屏手机特殊优化 (480px以下) === */
@media screen and (max-width: 480px) {
    
    .app-preview img {
        max-width: 320px;
    }
    
    .download-button {
        padding: 1.2rem;
        max-width: 280px;
    }
    
    .download-icon {
        font-size: 1.8rem;
    }
    
    .download-text {
        font-size: 0.85rem;
    }
    
    .sponsorship-logos img {
        padding: 0.8rem;
        border-radius: 10px;
    }
}

/* === 横屏模式特殊优化 === */
@media screen and (max-width: 768px) and (orientation: landscape) {
    
    #app-download .container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .app-info {
        order: 1;
        flex: 1;
        text-align: left;
    }
    
    .app-preview {
        order: 2;
        flex: 0 0 auto;
    }
    
    .download-buttons {
        order: 3;
        flex: 0 0 auto;
        margin: 1rem 0;
    }
    
    .app-preview img {
        max-width: 480px;
    }
    
    .download-button {
        max-width: 200px;
        padding: 1rem;
    }
}
