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

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

.container {
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.logo-container {
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.logo {
    width: 80px;
    height: auto;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-left: auto;
    margin-right: auto;
}

.description p {
    margin-bottom: 0.8rem;
}

.description ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 450px;
    margin: 0 auto;
}

.description li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
}

.description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #64b5f6;
    font-size: 1.2rem;
    line-height: 1;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #2196f3, #1976d2);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
    background: linear-gradient(45deg, #1976d2, #2196f3);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.slide-in {
    opacity: 0;
    transform: translateY(-15px);
    animation: slideIn 0.6s ease forwards 0.2s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.button-appear {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .logo {
        width: 70px;
    }
    
    .cta-button {
        padding: 0.7rem 1.8rem;
        font-size: 1rem;
    }
}
