body {
    margin: 0;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100vw;
    font-family: sans-serif;
    color: white;
    text-align: center;
    background: #0f0f12 url('BgImage.png') no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

h1 {
    font-size: 50px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, 0px 0px 10px rgba(0,0,0,0.8);
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 0.6s;
    user-select: none;
}

h1:hover {
    color: #eea9ee;
    text-shadow: 0px 0px 15px rgba(255, 0, 255, 0.7);
}

#heart-container {
    height: 50px;
    font-size: 30px;
    margin-top: 20px;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 10px #eea9ee);
    opacity: 0;
}

a {
    display: block;
    width: 260px;
    margin: 10px auto;
    padding: 14px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: rgba(15, 15, 18, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

a:hover {
    background: rgba(255, 0, 255, 0.2);
    border-color: #ff00ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
}
