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

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

.container {
    text-align: center;
    padding: 40px;
    max-width: 600px;
}

.icon {
    margin-bottom: 30px;
}

.icon svg {
    width: 80px;
    height: 80px;
    stroke-width: 1.5;
}

h1 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.feature span {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }
    
    p {
        font-size: 20px;
    }
    
    .features {
        gap: 30px;
    }
}