.footer-apple-style {
    margin-top: 10px;
    margin-bottom: 0 !important; /* 移除底部边距，由body统一控制40px */
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 18px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.footer-apple-style::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.footer-apple-style:hover::after {
    left: 100%;
}

.footer-apple-style:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.footer-apple-content {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--gray-color);
    position: relative;
    z-index: 1;
    font-weight: 500;
    line-height: 1.4;
    max-width: 100%;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.footer-apple-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    animation: slideInLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-apple-status {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
    justify-content: center;
    flex: 0 0 auto;
}

.footer-apple-info .info-badge,
.footer-apple-status .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-apple-info .info-badge {
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.15);
    color: var(--gray-color);
}

.footer-apple-status .status-badge {
    background: rgba(52, 199, 89, 0.1);
    border: 1px solid rgba(52, 199, 89, 0.2);
    color: var(--gray-color);
}

.footer-apple-info .info-badge::before,
.footer-apple-status .status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
}

.footer-apple-info .info-badge::before {
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
}

.footer-apple-status .status-badge::before {
    background: linear-gradient(90deg, transparent, rgba(52, 199, 89, 0.1), transparent);
}

.footer-apple-info .info-badge:hover::before,
.footer-apple-status .status-badge:hover::before {
    left: 100%;
}

.footer-apple-info .info-badge:hover {
    transform: translateY(-2px);
    background: rgba(0, 122, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.15);
}

.footer-apple-status .status-badge:hover {
    transform: translateY(-2px);
    background: rgba(52, 199, 89, 0.15);
    border-color: rgba(52, 199, 89, 0.3);
    box-shadow: 0 4px 15px rgba(52, 199, 89, 0.2);
}

.footer-apple-info .info-badge a {
    color: #007AFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    margin: 0 2px;
}

.footer-apple-info .info-badge a:hover {
    color: #0051D5;
}

.footer-apple-status .status-badge i {
    margin-right: 6px;
    font-size: 12px;
    color: #34C759;
    animation: pulse-status 2s infinite;
}

.footer-apple-status .status-value {
    color: #34C759;
    font-weight: 600;
    margin-left: 4px;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 超宽屏：两端对齐 */
@media (min-width: 1400px) {
    .footer-apple-content {
        justify-content: space-between;
        text-align: left;
        flex-wrap: wrap;
    }
    
    .footer-apple-info {
        text-align: left;
        justify-content: flex-start;
        max-width: 60%;
        flex-wrap: wrap;
    }
    
    .footer-apple-status {
        text-align: right;
        justify-content: flex-end;
        max-width: 60%;
        flex-wrap: wrap;
    }
}

/* 中等宽屏：居中显示 */
@media (min-width: 1200px) and (max-width: 1399px) {
    .footer-apple-content {
        justify-content: center;
        text-align: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .footer-apple-info,
    .footer-apple-status {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* 平板设备 */
@media (max-width: 768px) {
    .footer-apple-style {
        padding: 20px 25px;
        margin-top: 25px;
        border-radius: 16px;
    }
    
    .footer-apple-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-apple-info,
    .footer-apple-status {
        gap: 10px;
    }
    
    .footer-apple-info .info-badge,
    .footer-apple-status .status-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* 移动设备 */
@media (max-width: 480px) {
    .footer-apple-style {
        padding: 18px 20px;
        margin-top: 20px;
        border-radius: 14px;
    }
    
    .footer-apple-content {
        gap: 12px;
    }
    
    .footer-apple-info,
    .footer-apple-status {
        gap: 8px;
    }
    
    .footer-apple-info .info-badge,
    .footer-apple-status .status-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}