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

body {
    background: radial-gradient(circle at center, #111 0%, #000 90%);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 55%;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #aaa;
}

footer {
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px 2px rgba(46, 204, 113, 0.5);
}
