@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.seo-promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: linear-gradient(135deg, #33ccff 0%, #e948c5 100%);
    box-shadow: 0 -10px 40px rgba(233, 72, 197, 0.3);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.seo-promo-banner * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.seo-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 767px) {
    .seo-promo-subtitle, .seo-promo-button.desktop {
        display: none;
    }
}

@media (min-width: 768px) {
    .seo-promo-container {
        padding: 16px 24px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .seo-promo-button.mobile {
        display: none;
    }
}

.seo-promo-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    font-size: 20px;
    transition: color 0.2s;
}

.seo-promo-close:hover {
    color: #fff;
}

.seo-promo-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-promo-timer-blocks {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (min-width: 640px) {
    .seo-promo-timer-blocks {
        gap: 8px;
    }
}

.seo-promo-time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seo-promo-time-value {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 4px 8px;
    min-width: 40px;
    text-align: center;
}

@media (min-width: 640px) {
    .seo-promo-time-value {
        padding: 8px 12px;
        min-width: 56px;
    }
}

.seo-promo-time-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
    .seo-promo-time-number {
        font-size: 24px;
    }
}

.seo-promo-time-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 640px) {
    .seo-promo-time-label {
        font-size: 11px;
    }
}

.seo-promo-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-weight: 300;
}

.seo-promo-seconds {
    display: none;
}

@media (min-width: 640px) {
    .seo-promo-seconds {
        display: flex;
    }
}

.seo-promo-text {
    text-align: center;
    flex: 1;
}

@media (min-width: 768px) {
    .seo-promo-text {
        text-align: left;
    }
}

.seo-promo-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .seo-promo-title {
        font-size: 16px;
    }
}

.seo-promo-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

@media (min-width: 640px) {
    .seo-promo-subtitle {
        font-size: 14px;
    }
}

.seo-promo-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #e948c5;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .seo-promo-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

.seo-promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.seo-promo-button svg {
    transition: transform 0.3s;
}

.seo-promo-button:hover svg {
    transform: translateX(4px);
}

.seo-promo-hidden {
    display: none !important;
}
