/* Awardollar — mini cookie consent (homepage) */

.aw-cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 10060;
    width: min(520px, calc(100vw - 24px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
}

.aw-cookie-consent:not([hidden]) {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.aw-cookie-consent__inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(14px);
}

.aw-cookie-consent__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    color: #c4b5fd;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.3);
}

.aw-cookie-consent__text {
    flex: 1;
    min-width: 0;
}

.aw-cookie-consent__title {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.3;
}

.aw-cookie-consent__msg {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.45;
}

.aw-cookie-consent__link {
    color: #a5f3fc;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.aw-cookie-consent__link:hover {
    color: #ecfeff;
    text-decoration: underline;
}

.aw-cookie-consent__actions {
    flex-shrink: 0;
}

.aw-cookie-consent__accept {
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.aw-cookie-consent__accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

@media (max-width: 575px) {
    .aw-cookie-consent {
        bottom: 12px;
        width: calc(100vw - 20px);
    }

    .aw-cookie-consent__inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .aw-cookie-consent__actions {
        width: 100%;
    }

    .aw-cookie-consent__accept {
        width: 100%;
    }
}
