* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff90d9;
}

.container {
    width: 100%;
    padding: 20px;
}

.content {
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

h1 {
    font-size: 48px;
    color: #ff90d9;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 18px;
    color: white;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .content {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 36px;
    }
}
