* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.site-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #ffffff;
}

.divider {
    width: 80px;
    height: 2px;
    background: #ffffff;
    margin: 0 auto 2rem;
    opacity: 0.6;
}

.message {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
    opacity: 0.95;
}

.sub-message {
    font-size: 1rem;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .content {
        padding: 3rem 2rem;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .sub-message {
        font-size: 0.9rem;
    }
}

