/* Cookie Consent Banner - Age of Khans */
.aok-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    max-width: 900px;
    width: calc(100% - 40px);
    background: rgba(22, 13, 10, 0.95);
    border: 1px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 999999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.aok-cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.aok-cookie-text {
    color: #e2d9cb;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.aok-cookie-text a {
    color: #f59e0b;
    text-decoration: underline;
    font-weight: 600;
}

.aok-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.aok-cookie-btn {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    border: 1px solid #f59e0b;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aok-cookie-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.aok-cookie-btn-secondary {
    background: transparent;
    color: #f6e6be;
    border: 1px solid rgba(217, 173, 79, 0.55);
    box-shadow: none;
}

.aok-cookie-btn-secondary:hover {
    background: rgba(217, 173, 79, 0.12);
}

.aok-cookie-preferences-btn {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 9998;
    border: 1px solid rgba(217, 173, 79, 0.45);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(20, 10, 7, 0.92);
    color: #ead8ae;
    font: 500 12px/1.2 Arial, sans-serif;
    cursor: pointer;
}

.aok-cookie-preferences-btn:focus-visible {
    outline: 2px solid #f1c75b;
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .aok-cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 14px 18px;
    }
    .aok-cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
