
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.reflection-text {
    -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}

.floating-title {
    animation: float 3s ease-in-out infinite;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

nav a.active {
    color: rgb(37, 99, 235);
    font-weight: 600;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.bg-gradient-to-r {
    background-size: 200%;
    animation: gradient 3s ease infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes gradient {
    0% { background-position-x: 0%; background-position-y: 50%; }
    50% { background-position-x: 100%; background-position-y: 50%; }
    100% { background-position-x: 0%; background-position-y: 50%; }
}

@media (max-width: 768px) {
    .reflection-text {
        font-size: 3rem !important;
    }
    
    .floating-title {
        animation: float 2s ease-in-out infinite;
    }
}
        