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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 600px;
    width: 100%;
}

.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.logo {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-icon {
    font-size: 48px;
    color: #4fc3f7;
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #4fc3f7, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 40px;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    border-radius: 3px;
    animation: progress 2s ease-in-out infinite;
}

.contact {
    margin-top: 30px;
}

.contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.email-link {
    display: inline-block;
    color: #4fc3f7;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 30px;
    border: 2px solid #4fc3f7;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.email-link:hover {
    background: #4fc3f7;
    color: #1a1a2e;
}

footer {
    margin-top: 40px;
}

footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes progress {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 24px;
    }
    
    .logo-icon {
        font-size: 36px;
    }
    
    .logo-text {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .subtitle {
        font-size: 14px;
    }
}
