/* Global Theme Styles */
body {
    background-color: #0A0A0F;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background Grid */
.bg-grid {
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Utilities not covered by Standard Tailwind config unless extended */
.text-glow {
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.gradient-border {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(189, 0, 255, 0.2));
    padding: 1px;
    border-radius: 1rem;
    /* matches rounded-2xl usually, adjust as needed */
}

.glass {
    background: rgba(18, 18, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* WordPress Block Editor Fixes */
.wp-block-post-title {
    color: #fff;
}