@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
}

.background {
    background-image: url("https://images.unsplash.com/photo-1618609377864-68609b857e90?q=80&w=1856&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.55;
}

.overlay {
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

h1 {
    font-size: 3.5em;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.3em;
    color: #fdfdfd;
    text-shadow: 2px 2px 20px rgba(0, 255, 255, 0.1);
}

.subtitle {
    font-size: 1.3em;
    color: #cccccc !important;
    margin-bottom: 30px;
    font-weight: 500;
}

.progress-container {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    background-color: #222;
    border-radius: 100px;
    padding: 4px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.1);
}

.progress-bar {
    height: 16px;
    width: 0%;
    background: linear-gradient(90deg, #00d4ff, #0fffc1);
    border-radius: 100px;
    transition: width 0.25s ease-out;
    box-shadow: 0 0 8px #00e1ff;
}

.percent {
    margin-top: 12px;
    font-size: 1em;
    color: #ffffff;
    font-weight: 600;
}

button#notifyBtn {
    margin-top: 25px;
    padding: 12px 24px;
    background: linear-gradient(to right, #00d4ff, #0fffc1);
    border: none;
    border-radius: 30px;
    color: #111;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.25s ease;
}

button#notifyBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
}

.social-icons {
    margin-top: 50px;
}

.social-icons a img {
    width: 30px;
    margin: 0 14px;
    filter: invert(100%);
    transition: transform 0.2s ease;
}

.social-icons a img:hover {
    transform: scale(1.25);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.3em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .progress-container {
        width: 90%;
    }

    button#notifyBtn {
        width: 80%;
        font-size: 0.95em;
    }
}
