@import url('https://fonts.googleapis.com/css2?family=Product+Sans&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Product Sans', sans-serif;
    background-color: black; 
    -webkit-tap-highlight-color: transparent;
}

.liquid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #ff7e5f, #feb47b);
    animation: liquidAnimation 10s infinite;
    opacity: 0.7;
    backdrop-filter: blur(10px);
}

@keyframes liquidAnimation {
    0%, 100% {
        clip-path: circle(30% at 50% 50%);
        opacity: 0.7;
    }
    50% {
        clip-path: circle(70% at 50% 50%);
        opacity: 1;
    }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: bold; /* Make font thick */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: background 0.3s, color 0.3s;
    text-decoration: none; /* Remove underline */
}

.download-button img {
    width: 24px;
    height: 24px;
}

.download-button:hover {
    background: rgba(255, 255, 255, 0.4);
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    background: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
    animation: bubbleAnimation 0.5s ease-out;
    color: white;
}

@keyframes bubbleAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.popup-content {
    position: relative;
}

.close-button {
    position: absolute;
    top: 30px;
    left: 30px;
    margin-top: -60px;
    font-size: 25px;
    padding: 2px;
    margin-left: -30px;
    cursor: pointer;
}
