/* * Consai Super SEO & AI Optimizer
 * Premium Dark Mode Styling mit Dubai Gold Akzenten
 */

.consai-ai-summary-wrapper {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-family: 'Inter', 'Roboto', -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt für die Box */
.consai-ai-summary-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Der goldene Dubai-Akzent oben */
.consai-ai-summary-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #fdf6d3, #d4af37);
}

.consai-ai-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #d4af37; /* Gold accent */
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Wirkt moderner */
}

.consai-ai-icon {
    color: #d4af37;
    flex-shrink: 0;
}

.consai-ai-summary-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.consai-ai-summary-content ul {
    margin: 15px 0;
    padding-left: 5px;
    list-style: none; /* Custom Bullets */
}

.consai-ai-summary-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

/* Goldene Bullets für die Liste */
.consai-ai-summary-content li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 0.8rem;
}

.consai-ai-summary-content p:last-child {
    margin-bottom: 0;
}

/* Auto-Linked Subdomain Stylings */
a.consai-internal-link {
    color: #d4af37;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.3);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: all 0.2s ease-in-out;
}

a.consai-internal-link:hover {
    color: #fdf6d3;
    text-decoration-color: #d4af37;
    text-decoration-thickness: 2px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 4px;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .consai-ai-summary-wrapper {
        padding: 18px;
        margin: 24px 0;
    }
    .consai-ai-summary-header {
        font-size: 1.1rem;
    }
}