/* Cosmic Tag Cloud Styles */
.cosmic-tag-cloud {
    margin-top: 2rem;
    position: relative;
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tag-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.cosmic-tag {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    animation: tagBreathe 4s ease-in-out infinite;
}

.cosmic-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.5);
}

.tag-games {
    background: linear-gradient(45deg, #00f7ff, #0077ff);
    color: black;
    animation-delay: 0s;
}

.tag-tools {
    background: linear-gradient(45deg, #ff00f7, #ff0077);
    color: black;
    animation-delay: 1s;
}

.tag-web {
    background: linear-gradient(45deg, #00f7ff, #ff00f7);
    color: black;
    animation-delay: 2s;
}

@keyframes tagBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(0, 247, 255, 0.6);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cosmic-tag-cloud {
        height: auto;
        margin-top: 1.5rem;
    }
    
    .tag-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cosmic-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}