body {
    background: linear-gradient(135deg, #000000, #7f1d1d, #be185d);
}

.gradient-text {
    background: linear-gradient(45deg, #ff1744, #e91e63, #ff6b9d, #ff1744);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
}

.sexy-glow {
    filter: drop-shadow(0 0 15px rgba(255, 23, 68, 0.5));
}

.rounded-full.inline-block,
.rounded-full.inline-flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.rounded-full > br {
    display: none;
}
