/* Base Styles - Reset and Body */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: #000000;
    color: #e5e5e5;
    height: 100vh;
    overflow: hidden;
}

.container { display: flex; height: 100vh; }

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

.spinning {
    animation: spin 2s linear infinite;
    display: inline-block;
}
