.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--panel, #1f2937);
    color: var(--text, #f9fafb);
    padding: 15px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-banner-text a {
    color: var(--accent, #60a5fa);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: var(--accent, #10b981);
    color: #fff;
}

.cookie-btn-accept:hover {
    filter: brightness(1.1);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text, #f9fafb);
    border: 1px solid var(--line, #6b7280);
}

.cookie-btn-decline:hover {
    background: rgba(128, 128, 128, 0.1);
}

.cookie-banner-icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}