* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --glow-color: rgba(46, 204, 113, 0.6);
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 5px var(--glow-color)); }
    50% { filter: drop-shadow(0 0 25px var(--glow-color)); }
    100% { filter: drop-shadow(0 0 5px var(--glow-color)); }
}

@keyframes textGlow {
    0% { text-shadow: 0 0 5px var(--glow-color); }
    50% { text-shadow: 0 0 20px var(--glow-color), 0 0 30px var(--glow-color); }
    100% { text-shadow: 0 0 5px var(--glow-color); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes progressAnimation {
    from { width: 0; }
    to { width: 60%; }
}

@keyframes progressGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

body {
    background-color: #1f1e1e;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 3.5rem;
    animation: glow 3s infinite ease-in-out;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards 0.5s, textGlow 3s infinite ease-in-out;
}

.progress-wrapper {
    position: relative;
    margin: 2.5rem auto;
    max-width: 500px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards 1s;
}

.progress-container {
    position: relative;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3) inset;
}

.progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 6px;
    animation: progressAnimation 2s ease-out forwards 1.5s;
    position: relative;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: progressGlow 2s linear infinite;
}

.progress-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact {
    margin-top: 3.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards 2s;
}

.contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 300;
}

.contact a:hover {
    color: #ffffff;
    background: rgba(46, 204, 113, 0.1);
    text-shadow: 0 0 10px var(--glow-color);
}

@media (max-width: 768px) {
    .logo {
        max-width: 280px;
        margin-bottom: 2.5rem;
    }

    h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .progress-wrapper {
        max-width: 300px;
        margin: 2rem auto;
    }

    .progress-text {
        font-size: 1.1rem;
    }

    .contact a {
        font-size: 1.1rem;
    }
} 