:root {
    --pure-pink: #FF2E63;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    /* Prevent scrollbars from marquee */
}

/* --- Typography --- */
.font-serif-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.font-mono {
    font-family: 'Roboto Mono', monospace;
}

/* --- Animations --- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    animation: fadeSlideUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    display: flex;
    width: 300%;
    /* Double width for seamless loop */
    animation: marquee 20s linear infinite;
}

.marquee-content {
    width: 50%;
    display: flex;
    justify-content: space-around;
}

/* Hover Effects */
.hover-outline:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    transition: all 0.3s ease;
}

/* Big chunky name font (like themonolithproject.net) */
.hover-outline {
    font-family: 'Bungee', cursive;
}

/* Button Glow */
.btn-wild {
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 46, 99, 0.7);
}

.btn-wild:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px -10px rgba(255, 46, 99, 0.6);
    background-color: #fff;
    color: var(--pure-pink);
}

/* Sticker Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.sticker {
    animation: float 6s ease-in-out infinite;
}

/* Selection */
::selection {
    background-color: var(--pure-pink);
    color: white;
}