/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4A90D9;
    --secondary: #1B3A5C;
    --background: #E8F0FE;
    --text: #1A1A1A;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, var(--background) 0%, var(--primary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.content {
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.icon {
    width: 80px;
    height: 80px;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

p {
    font-size: 1.25rem;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .icon {
        width: 60px;
        height: 60px;
    }
}