#arp-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(28, 20, 16, 0.98);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 20px 30px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    transform: translateY(100px);
}

#arp-cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.arp-cookie-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 300;
    max-width: 75%;
    line-height: 1.6;
}

.arp-cookie-text a {
    color: #C9A84C;
    text-decoration: none;
    font-weight: 400;
}

.arp-cookie-text a:hover {
    text-decoration: underline;
}

.arp-cookie-buttons {
    display: flex;
    gap: 10px;
}

.arp-cookie-btn {
    padding: 10px 24px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.arp-cookie-btn.accept {
    background: #C9A84C;
    color: #1C1410;
}

.arp-cookie-btn.accept:hover {
    background: #E2C87A;
}

.arp-cookie-btn.decline {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
}

.arp-cookie-btn.decline:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}

@media (max-width: 768px) {
    #arp-cookie-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        left: 10px; right: 10px; bottom: 10px;
        padding: 20px;
    }
    .arp-cookie-text { max-width: 100%; font-size: 0.8rem; }
    .arp-cookie-buttons { width: 100%; justify-content: center; }
}