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

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 800px;
    width: 90%;
    margin: 20px;
}

.title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #64b5f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.status {
    font-size: 1.8rem;
    font-weight: 500;
    color: #64b5f6;
    margin: 0 0 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #64b5f6;
    margin: 0;
}

.loading-animation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.circle {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 0.5s ease-in-out infinite;
}

.circle:nth-child(2) {
    animation-delay: 0.1s;
}

.circle:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-bar {
    margin: 2rem 0;
    padding: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.progress-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #64b5f6 0%,
        #1976d2 50%,
        #64b5f6 100%
    );
    background-size: 200% 100%;
    border-radius: 10px;
    animation: flowingGradient 2s linear infinite;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.notify-section {
    margin-bottom: 2rem;
}

.email-input {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    margin-right: 1rem;
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.notify-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    background: #764ba2;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.notify-btn:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes flowingGradient {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
}

.spark-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 2rem 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.spark-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #64b5f6, #0d47a1);
}

.spark-button i {
    font-size: 1.2rem;
}