/* CC-02b Wave 1 - extracted from FRONTEND/12_legal/terms.html */
body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
            color: white;
        }
        .container {
            text-align: center;
            padding: 2rem;
        }
        .spinner {
            width: 2.5rem;
            height: 2.5rem;
            border: 0.1875rem solid rgba(255, 107, 157, 0.3);
            border-top-color: #ff6b9d;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }
        a {
            color: #ff6b9d;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
