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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(100, 100, 255, 0.5);
}

.image-wrapper {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#spinning-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    animation: spin 4s linear infinite;
    box-shadow: 0 0 30px rgba(100, 100, 255, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.description {
    font-size: 1.1rem;
    color: #b0b0d0;
    margin-bottom: 1rem;
}

.status {
    font-size: 0.85rem;
    color: #666;
}

.status.connected {
    color: #4caf50;
}

.status.error {
    color: #f44336;
}
