/* Accessibility Showcase (Login Page) */
.accessibility-showcase {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
    animation: fadeIn 1s ease-out;
}

.a11y-title {
    background: linear-gradient(135deg, #bd00ff, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
}

.a11y-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.a11y-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.a11y-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.2s, border-color 0.2s;
}

.a11y-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem auto;
    color: var(--accent-blue);
}

.a11y-card h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-highlight);
}

.a11y-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Accessibility Spotlight (Dashboard) */
.card.a11y-spotlight {
    margin-top: 20px;
    border: 1px solid var(--secondary-color);
    background: linear-gradient(90deg, rgba(0,255,136,0.05) 0%, rgba(10,15,28,0) 100%);
}

.a11y-spotlight-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.a11y-spotlight-icon {
    background: rgba(0,255,136,0.1);
    padding: 12px;
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.a11y-spotlight-text {
    flex: 1;
    min-width: 250px;
}

.a11y-spotlight-text h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.a11y-spotlight-text p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.a11y-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    white-space: nowrap;
}
