/* Anchor AI Boost - Front-end Styles */

.aab-container {
    margin: 2.5rem 0 1rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f8f9fb 0%, #eef1f5 100%);
    border: 1px solid #dde3eb;
    border-radius: 12px;
    text-align: center;
}

.aab-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B3A5C;
    margin-bottom: 0.35rem;
}

.aab-subtext {
    font-size: 0.85rem;
    color: #6b7a8d;
    margin-bottom: 1.25rem;
}

.aab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* Base button */
.aab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.aab-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.aab-btn:active {
    transform: translateY(0);
}

.aab-btn__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.aab-btn__icon svg {
    display: block;
}

/* ChatGPT - dark/green */
.aab-btn--chatgpt {
    background: #10a37f;
    color: #fff !important;
}
.aab-btn--chatgpt:hover {
    background: #0d8c6d;
    color: #fff !important;
}

/* Perplexity - dark teal */
.aab-btn--perplexity {
    background: #1B3A5C;
    color: #fff !important;
}
.aab-btn--perplexity:hover {
    background: #152e4a;
    color: #fff !important;
}

/* Copilot - Microsoft blue/purple */
.aab-btn--copilot {
    background: #7B68EE;
    color: #FFFFFF !important;
}
.aab-btn--copilot:hover {
    background: #6A5ACD;
    color: #FFFFFF !important;
}

/* Responsive */
@media (max-width: 600px) {
    .aab-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .aab-btn {
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    .aab-container {
        padding: 1.25rem;
    }
}
