 
        .glitch-preview-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            margin: 1.5rem 0;
        }
        .preview-card {
            flex: 1;
            min-width: 250px;
            background: #fefefe;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 1rem;
            text-align: center;
        }
        .preview-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        canvas {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            background: #1e1e1e;
        }
        .control-group {
            background: var(--light-gray);
            padding: 1.2rem;
            border-radius: 24px;
            margin: 1rem 0;
        }
        .param-slider {
            margin-bottom: 1rem;
        }
        .param-slider label {
            font-weight: 500;
            margin-bottom: 0.3rem;
        }
        .math-equation, .legend-item {
            display: inline-flex;
            align-items: center;
            margin-right: 1.5rem;
        }
        .legend-color {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            margin-right: 6px;
        }
        .btn-accent {
            background: #e74c3c;
            border-color: #e74c3c;
            color: white;
        }
        .btn-accent:hover {
            background: #c0392b;
        }
        .decomposition-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }
        .decomp-item {
            text-align: center;
            background: #f1f3f5;
            border-radius: 12px;
            padding: 0.8rem;
            width: 160px;
        }
        .decomp-item canvas {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            background: #111;
        }
        .decomp-item p {
            margin-top: 8px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .team-member {
            display: inline-block;
            width: 220px;
            margin: 0.5rem;
            background: #ffffff;
            border-radius: 12px;
            padding: 0.8rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        } 
        @media (max-width: 768px) {
            .glitch-preview-container { flex-direction: column; }
        }  .author-bio{display:block}
        .validation-badge {
            background: #e9ecef;
            border-radius: 40px;
            padding: 0.3rem 0.8rem;
            font-size: 0.8rem;
            display: inline-block;
        }