@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;
    }
}

.message-trigger {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.message-trigger:hover {
    transform: translateX(-50%) scale(1.4);
    text-shadow: 0 0 25px rgb(255, 0, 106);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid rgba(255, 126, 179, 0.3);
    width: 85%;
    max-width: 500px;
    border-radius: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 126, 179, 0.1);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-button {
    position: absolute;
    right: 25px;
    top: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #ff7eb3;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #ff7eb3;
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    margin-top: 0;
    opacity: 1;
    animation: none;
}