.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image:
        linear-gradient(to right, rgba(237, 238, 232, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(237, 238, 232, 0.05) 1px, transparent 1px);
    z-index: -1;
}

.coming-soon {
    font-size: clamp(2rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: -2px;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.animate-pulse-slow {
    animation: fadeInOut 4s infinite ease-in-out;
}

.category-tag {
    display: inline-block;
    color: var(--light-cream);
    opacity: 0.6;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(237, 238, 232, 0.2);
    border-radius: 9999px;
    animation: fadeInOut 4s infinite ease-in-out;
}

/* Override background image opacity for creative page */
.background-image {
    opacity: 0.2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon {
        font-size: clamp(2rem, 12vw, 8rem);
    }
    
    .category-tag {
        padding: 0.375rem 0.75rem;
    }
}