* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow-x: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.content {
    width: 100%;
}

.logo {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    margin-bottom: 2rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 300;
}

p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        max-height: 200px;
        margin-bottom: 1.5rem;
    }
}
