/**
 * ThenAI Plugin TKX0U Styles
 */

.thenai-container {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
}

.thenai-glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.thenai-glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.3); /* Purple accent */
}

.thenai-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

.thenai-content {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.125rem;
}

.thenai-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #9333ea;
    color: #fff;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}