* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(159, 122, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(72, 187, 120, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    width: 100%;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 60px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.1));
}

h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.subtitle {
    font-size: 24px;
    color: #a0aec0;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4299e1, #9f7aea);
    margin: 30px auto;
    border-radius: 2px;
}

.description {
    font-size: 18px;
    color: #cbd5e0;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.contact-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
    font-size: 16px;
    color: #a0aec0;
}

.contact-info a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #63b3ed;
}

@media (max-width: 768px) {
    .content {
        padding: 60px 40px;
    }
    
    .logo {
        max-width: 350px;
    }
    
    h1 {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 30px;
    }
    
    .logo {
        max-width: 280px;
        margin-bottom: 40px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .description {
        font-size: 15px;
    }
    
    .contact-info p {
        font-size: 14px;
    }
}
