/* ABV2 VN Cookie Consent Banner */
.abv2-cc-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    padding: 16px 20px;
    background: rgba(15, 23, 30, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.28);
    color: #fff;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.abv2-cc-bar.abv2-cc-show {
    transform: translateY(0);
    opacity: 1;
}

.abv2-cc-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.abv2-cc-text {
    flex: 1 1 auto;
    min-width: 0;
}

.abv2-cc-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.abv2-cc-text a {
    color: #07C160;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.abv2-cc-text a:hover {
    color: #2ee07a;
}

.abv2-cc-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.abv2-cc-btn {
    white-space: nowrap;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    line-height: 1;
}

.abv2-cc-btn-primary {
    background: #07C160;
    color: #fff;
}

.abv2-cc-btn-primary:hover {
    background: #06ad56;
}

.abv2-cc-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.35);
}

.abv2-cc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* 移动端：堆叠布局，保证按钮可点 */
@media (max-width: 720px) {
    .abv2-cc-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .abv2-cc-text p {
        font-size: 13px;
    }

    .abv2-cc-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .abv2-cc-btn {
        width: 100%;
        text-align: center;
    }
}
