@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600&family=Playfair+Display:ital,wght@1,700&display=swap');

body {
    margin: 0;
    overflow: hidden;
    background-color: #050505;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

svg {
    position: absolute;
    display: none;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
    width: 100%;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 2s ease forwards 0.5s;
}

h1 .pink {
    background: linear-gradient(45deg, #ff758c, #ff7eb3, #ee5282);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(238, 82, 130, 0.4);
}

h1 .white {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2);
}

p {
    font-size: clamp(0.7rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    opacity: 0;
    animation: fadeIn 3s ease forwards 1.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: all;
    cursor: pointer;
}

.hint:hover {
    color: #ff7eb3;
    text-shadow: 0 0 15px rgba(255, 126, 179, 0.8);
    transform: translateX(-50%) scale(1.3);
}

.hint a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;  
    font-weight: 600;
}