.gradient-text {
    background: linear-gradient(to right, #FF4D80, #FF2E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-bg {
    background: radial-gradient(circle at 50% 0%, #FFF0F5 0%, #ffffff 70%);
}
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg) translate(-100%, -100%);
    animation: shine 3s infinite;
}
@keyframes shine {
    100% { transform: rotate(45deg) translate(100%, 100%); }
}
/* Hide scrollbar for clean horizontal scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
html {
    scroll-behavior: smooth;
}