/* Premium Upgrade Section */
.premium-upgrade-section {
    margin-top: 14px;
}

.premium-banner {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(247, 147, 30, 0.25) 100%);
    border: 2px solid #ff6b35;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
}

.premium-banner:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.premium-icon {
    font-size: 0;
    color: #FFD700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.premium-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

@media (max-width: 1024px) {
    .premium-icon {
        display: none;
    }
}

.premium-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.premium-content h3 {
    color: #ff6b35;
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    font-weight: 600;
    line-height: 1.3;
}

.premium-content p {
    color: #ffaa00;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.premium-btn-small {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.premium-btn-small:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    transform: translateY(-2px);
}

.premium-btn-small:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.premium-btn-small svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

