
.foxco-tag-cloud-container {
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.foxco-tag-cloud {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.foxco-tag-cloud .tag-item {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.foxco-tag-cloud .tag-item:hover {
    transform: scale(1.05) !important;
    text-shadow: 0 0 8px currentColor;
    z-index: 1000 !important;
}

/* Color Scheme Variations */
.foxco-tag-cloud[data-color-scheme="gradient"] .tag-item {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white !important;
}

.foxco-tag-cloud[data-color-scheme="neon"] .tag-item {
    background: rgba(0, 0, 0, 0.8);
    color: #00ff88;
    border: 1px solid #00ff88;
    box-shadow: 0 0 5px #00ff88;
}

.foxco-tag-cloud[data-color-scheme="minimal"] .tag-item {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: 1px solid #ddd;
}

/* Hover Effects */
.foxco-tag-cloud[data-hover-effect="pulse"] .tag-item:hover {
    animation: pulse 0.6s infinite;
}

.foxco-tag-cloud[data-hover-effect="rotate"] .tag-item:hover {
    transform: scale(1.05) rotate(5deg) !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.15); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .foxco-tag-cloud-container {
        height: 300px !important;
    }
    
    .foxco-tag-cloud .tag-item {
        font-size: 14px !important;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .foxco-tag-cloud-container {
        height: 250px !important;
    }
    
    .foxco-tag-cloud .tag-item {
        font-size: 12px !important;
        padding: 2px 4px;
    }
}
