/* ===== Click-to-Tweet + Copy Buttons ===== */
.awgt-tweet-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.awgt-tweet-btn,
.awgt-copy-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    line-height: 1;
}
.awgt-tweet-btn {
    background: #1DA1F2;
    color: #fff !important;
}
.awgt-tweet-btn:hover {
    background: #1a8cd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}
.awgt-copy-quote-btn {
    background: #f0f2f5;
    color: #555;
    border: 1px solid #e0e0e0;
}
.awgt-copy-quote-btn:hover {
    background: #e8eaed;
    color: #222;
}
.awgt-copy-quote-btn.awgt-copied {
    background: #E8F5E9;
    color: #2E7D32;
    border-color: #4CAF50;
}

/* ===== Dismissible Alert Box ===== */
.awgt-dismiss-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: all 0.2s ease;
    padding: 0;
    z-index: 5;
}
.awgt-dismiss-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(90deg);
}
.awgt-alert-content {
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}
.awgt-alert-content.awgt-dismissing {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
}

/* ===== Scroll-Triggered Fade-In on Fancy Quote ===== */
.awgt-content-wrapper.awgt-anim-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.awgt-content-wrapper.awgt-anim-in {
    opacity: 1;
    transform: translateY(0);
}