body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('background.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
}

.content {
    position: relative;
    z-index: 2;
    padding: 10px;
}

h1 {
    font-size: 5vw;
    font-weight: bold;
    margin: 0;
    letter-spacing: 4px;
}

h2 {
    font-size: 4.75vw;
    margin: 5px 0 25px 0;
    letter-spacing: 6px;
}

.subtitle {
    font-size: 0.9vw;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.progress-container {
    width: 70%;
    max-width: 350px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
    margin: 0 auto;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #7EA8F8;
    border-radius: 4px;
}

.animate-progress {
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes loadBar {
    from { width: 0%; }
    to { width: 70%; }
}

.progress-labels {
    width: 70%;
    max-width: 350px;
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin: 5px auto 20px;
}

.notify-btn {
    background: #7EA8F8;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 14px;
    color: white;
    cursor: pointer;
}

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

.social-icons i {
    border: 2px solid white;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons i:hover {
    transform: scale(1.1);
}

footer {
    margin-top: 45px;
    font-size: 11px;
    opacity: 0.8;
}

/* Fade animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}
.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    footer { font-size: 8px; }
	
	 .progress-container {
        width: 60%;
        height: 5px;
    }

    .progress-labels {
        width: 60%;
        font-size: 8px;
    }

    .notify-btn {
        padding: 2vw 5vw;
        font-size: 3vw;
    }

    .social-icons i {
        width: 9vw;
        height: 9vw;
        font-size: 4vw;
    }

    footer {
        font-size: 2.5vw;
        margin-top: 5vw;
    }
}

