#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #141824;
    border-top: 2px solid rgba(147, 51, 234, 0.4);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
}

#cookie-banner p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#cookie-banner p a {
    color: #9333ea;
    text-decoration: none;
}

#cookie-banner p a:hover { text-decoration: underline; }

.cookie-btns {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #9333ea, #a855f7);
    color: white;
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

.btn-cookie-refuse {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-cookie-refuse:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; padding: 1rem 1.2rem; }
    .cookie-btns { width: 100%; justify-content: flex-end; }
}
