/* styles.css */
.pattern-dots {
    background-image: radial-gradient(currentColor 2px, transparent 2px);
    background-size: 30px 30px;
}

/* Base custom selection and smooth scroll already in tailwind config inside HTML */
html {
    scroll-behavior: smooth;
}

/* Animations that tailwind CSS arbitrary values can't easily capture cleanly if reused often */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* aspect ratio helpers since we don't have the tailwind plugin explicitly loaded */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
}

.aspect-w-16 iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0.75rem; /* rounded-xl to match design */
}
