﻿/* LuckySchedule Text Banner Advertisement */
.english-only-ad {
    display: none;
    width: 100%;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(108, 92, 231, 0.25);
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-icon {
    flex-shrink: 0;
}

.banner-icon svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.banner-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.banner-text strong {
    font-weight: 700;
    color: #ffffff;
}

.banner-btn {
    background: white;
    color: #6c5ce7;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.banner-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: #5849be;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .english-only-ad {
        padding: 0.8rem 0;
    }

    .banner-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .banner-icon {
        display: none;
    }

    .banner-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .banner-btn {
        padding: 0.6rem 1.8rem;
        font-size: 0.95rem;
    }
}