/* Custom styles that complement Tailwind */

/* Text glowing effects for titles */
.text-shadow-glow {
    text-shadow: 0 0 20px rgba(79, 209, 197, 0.5), 0 0 40px rgba(79, 209, 197, 0.3);
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111827; 
}
::-webkit-scrollbar-thumb {
    background: #374151; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4B5563; 
}

/* Animations for scroll reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Twinkling stars effect created dynamically in JS, but here are some base styles if needed */
.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle linear infinite;
}

@keyframes twinkle {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* Aspect ratio utility (since we didn't include the tailwind plugin explicitly) */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}
.aspect-w-16 > img, .aspect-w-16 > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
