* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #121212 0%, #2d2d2d 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.logo-container {
    position: relative;
    height: 200px;
    width: 200px;
    margin: 0 auto 2rem;
}

.heart-break {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heartbreak-emoji {
    font-size: 14rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    transform-origin: center;
    will-change: transform;
    animation: heartbeat 5s ease-in-out infinite;
    margin: 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.05);
    }
}

/* Smooth cursor following effect is handled in JavaScript */

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ff3366, #ff99cc);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient-shift 8s infinite;
}

@keyframes gradient-shift {
    0% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(-15deg);
    }
    100% {
        filter: hue-rotate(0deg);
    }
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    font-weight: 400;
}

.info {
    margin-top: 4rem;
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .logo-container {
        height: 150px;
        width: 150px;
    }
    
    .heart-svg {
        width: 150px;
        height: 135px;
    }
}
